body {
    font-family: 'Inter', sans-serif;
    background-color: #F8F7FF; /* A very light, calming lavender */
}
.gradient-text {
    background: linear-gradient(to right, #cdc5da, #1e1b1d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-button {
    transition: all 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.section-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.section-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
/* Modal Styles */
.modal-overlay {
    transition: opacity 0.3s ease;
}
.modal-content {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Google Form Container for better responsiveness */
.google-form-container {
    position: relative;
    width: 100%;
    max-width: 640px; /* Max width of the form */
    margin-left: auto;
    margin-right: auto;
    height: 850px; /* Default height for mobile */
}

/* Adjust height for larger screens */
@media (min-width: 640px) {
    .google-form-container {
        height: 750px;
    }
}

/* Hero Section Background */
.hero-background {
    /* REPLACE THIS URL WITH THE LINK TO YOUR BACKGROUND IMAGE */
    background-image: url('./Headline_option1.png'); 
    background-size: cover;
    background-position: center;
}

.neutral-card {
    background-color: #f3f4f6; /* A light gray */
}