/* Custom pastel colors */
.bg-pastel-blue { background-color: #E0F2F7; }
.bg-pastel-green { background-color: #E6F7E0; }
.bg-pastel-pink { background-color: #F7E0E6; }
.bg-pastel-purple { background-color: #EBE0F7; }
.bg-pastel-yellow { background-color: #FFF7E0; }

.text-pastel-blue { color: #87CEEB; }
.text-pastel-green { color: #90EE90; }
.text-pastel-pink { color: #FFB6C1; }
.text-pastel-purple { color: #DDA0DD; }
.text-pastel-yellow { color: #FFD700; }

.section-padding { padding: 4rem 1rem; }
@media (min-width: 768px) { .section-padding { padding: 6rem 2rem; } }
@media (min-width: 1024px) { .section-padding { padding: 8rem 4rem; } }

.max-w-7xl { max-width: 80rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Header styles */
.header { background-color: #ffffff; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); padding: 1rem 1rem; position: sticky; top: 0; z-index: 50; }
.header-content { display: flex; justify-content: space-between; align-items: center; max-width: 80rem; margin-left: auto; margin-right: auto; }
.header-logo { display: flex; align-items: center; gap: 0.5rem; }
.header-logo-text { font-size: 1.5rem; font-weight: 700; }

/* Responsive Nav Logic */
.header-nav { display: none; gap: 1.5rem; }
.header-nav a { color: #4B5563; transition: color 300ms ease-in-out; text-decoration: none; font-weight: 500; }
.header-nav a:hover { color: #87CEEB; }

.header-menu-button { display: block; padding: 0.5rem; border-radius: 0.375rem; background-color: transparent; border: none; cursor: pointer; }
.header-menu-button:hover { background-color: #F3F4F6; }

@media (min-width: 768px) {
    .header-nav { display: flex; }
    .header-menu-button { display: none; }
}

@media (max-width: 767px) {
    .header-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 1.5rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        z-index: 100;
        gap: 1rem;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom right, #ffffff, #E0F2F7);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 75vh;
}
.hero-title { font-size: 2.25rem; font-weight: 800; line-height: 1.25; color: #111827; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
.hero-description { font-size: 1.125rem; color: #374151; margin-bottom: 2.5rem; }
.hero-buttons { display: flex; flex-direction: column; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }
.hero-button { font-weight: 700; padding: 0.75rem 2rem; border-radius: 9999px; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); transition: all 300ms ease-in-out; }
.hero-button-primary { background-color: #E6F7E0; color: black; }
.hero-button-primary:hover { transform: scale(1.05); background-color: #A7F3D0; }

/* Sections */
.section-title { font-size: 2rem; font-weight: 700; color: #111827; margin-bottom: 1.5rem; }
.section-description { font-size: 1rem; color: #374151; line-height: 1.625; }
.section-center-text { text-align: center; }
.section-mb-6 { margin-bottom: 1.5rem; }

/* Footer - FIX FOR "EMPTY" LOOK */
.footer { 
    background-color: #1F2937; 
    color: #ffffff !important; 
    padding: 3rem 1rem; 
    margin-top: 2rem;
}
.footer-content { 
    max-width: 80rem; 
    margin: 0 auto; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    align-items: center; 
    gap: 1rem;
}
@media (min-width: 768px) { 
    .footer-content { flex-direction: row; } 
}
.footer p { margin: 0; color: #ffffff; }
.footer-copyright-text { font-size: 0.875rem; color: #9CA3AF !important; }
.footer-copyright-text a { color: #9CA3AF !important; text-decoration: underline; }