body {
    font-family: 'Poppins', sans-serif;
    /* ... other styles ... */
    h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}
p {
    font-size: clamp(1rem, 2vw, 1.2rem);
}
button {
            background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728); /* Main gradient */
            /* Add more colors for a richer gradient if desired, e.g., #FBF5B7, #AA771C */
            border: none; /* Remove default button border */
            cursor: pointer; /* Indicate it's clickable */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
        }