/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2D1B69;
    --secondary-color: #4A2C8A;
    --text-color: #2D1B69;
    --text-light: #6B5B95;
    --bg-light: #FFF9E6;
    --bg-white: #ffffff;
    --border-color: #E8E0F5;
    --link-color: #FF6B35;
    --link-hover: #FF8C5A;
    --yellow-color: #FFD93D;
    --orange-color: #FF6B35;
    --purple-color: #8B5CF6;
    --purple-light: #A78BFA;
    --orange-light: #FF8C5A;
    --yellow-light: #FFE066;
    --gradient-primary: linear-gradient(135deg, #FFD93D 0%, #FF6B35 50%, #8B5CF6 100%);
    --gradient-yellow: linear-gradient(135deg, #FFD93D 0%, #FFE066 100%);
    --gradient-orange: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    --gradient-purple: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    --box-shadow: 0 4px 20px rgba(45, 27, 105, 0.1);
    --box-shadow-hover: 0 8px 30px rgba(45, 27, 105, 0.15);
    --hero-card-shadow: 0 10px 40px rgba(45, 27, 105, 0.12);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF9E6 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    box-shadow: 0 2px 10px rgba(45, 27, 105, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange-color);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 50%, #F3EDFF 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 217, 61, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
    letter-spacing: -1px;
}

.hero-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 249, 230, 0.8) 100%);
    border-radius: 24px;
    box-shadow: var(--hero-card-shadow);
    padding: var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    border: 2px solid rgba(255, 217, 61, 0.2);
    backdrop-filter: blur(10px);
}

.hero-card-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration {
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-illustration-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    min-height: 400px;
}

.illustration-circle {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background-color: var(--teal-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 163, 163, 0.3);
    z-index: 10;
}

.illustration-lightbulb {
    font-size: 4rem;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.5));
}

.illustration-hands {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 5;
}

.hand {
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hand-1 { animation-delay: 0s; }
.hand-2 { animation-delay: 0.5s; }
.hand-3 { animation-delay: 1s; }
.hand-4 { animation-delay: 1.5s; }
.hand-5 { animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

.illustration-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 2rem;
}

.element {
    font-size: 2.5rem;
    animation: float 2.5s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.element-1 { animation-delay: 0.2s; }
.element-2 { animation-delay: 0.7s; }
.element-3 { animation-delay: 1.2s; }
.element-4 { animation-delay: 1.7s; }

.hero-card-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.hero-cta-button {
    display: inline-block;
    margin-top: var(--spacing-sm);
    padding: 1.25rem 2.5rem;
    background: var(--gradient-orange);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

.hero-cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

.cta-button {
    display: inline-block;
    margin-top: var(--spacing-md);
    padding: 1rem 2.5rem;
    background: var(--gradient-purple);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Announcement Banner */
.announcement-banner {
    background: linear-gradient(135deg, #F3EDFF 0%, #FFF9E6 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
}

.announcement-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.announcement-graphic {
    position: relative;
    width: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.announcement-graphic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.announcement-graphic-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.graphic-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    border-radius: 50% 40% 60% 30%;
    opacity: 0.9;
}

.bg-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-yellow);
    top: -50px;
    left: -50px;
    transform: rotate(45deg);
    opacity: 0.6;
}

.bg-shape-2 {
    width: 250px;
    height: 250px;
    background: var(--gradient-orange);
    bottom: -30px;
    right: -30px;
    transform: rotate(-30deg);
    opacity: 0.6;
}

.bg-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--gradient-purple);
    top: 50%;
    right: 20%;
    transform: rotate(60deg);
    opacity: 0.5;
}

.yellow-banner {
    position: absolute;
    top: 15%;
    left: -10px;
    right: -10px;
    background: var(--gradient-yellow);
    padding: 1.25rem 1.5rem;
    transform: rotate(-2deg);
    z-index: 5;
    box-shadow: 0 6px 20px rgba(255, 217, 61, 0.4);
}

.banner-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bg-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    display: block;
    text-align: center;
}

.white-box {
    position: absolute;
    top: 35%;
    left: 5%;
    right: 5%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 249, 230, 0.9) 100%);
    border: 3px solid var(--purple-color);
    border-radius: 16px;
    padding: 1.75rem;
    z-index: 4;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.box-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.megaphone {
    position: absolute;
    font-size: 3rem;
    z-index: 6;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.megaphone-1 {
    bottom: 20%;
    right: 10%;
    transform: rotate(15deg);
}

.megaphone-2 {
    top: 10%;
    left: 8%;
    transform: rotate(-20deg);
    opacity: 0.7;
}

.graphic-footer {
    position: absolute;
    bottom: 10px;
    left: 15px;
    z-index: 7;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-text {
    font-size: 0.75rem;
    color: var(--bg-white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.announcement-content {
    background-color: var(--bg-white);
    padding: var(--spacing-lg);
}

.announcement-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.announcement-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
}

.announcement-cta-button {
    display: inline-block;
    margin-top: var(--spacing-sm);
    padding: 1.25rem 2.5rem;
    background: var(--gradient-orange);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.announcement-cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

/* Main Content */
.main-content {
    padding: var(--spacing-xl) 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-alt {
    background: linear-gradient(180deg, #FFF9E6 0%, #FFFFFF 100%);
    position: relative;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    letter-spacing: -0.5px;
}

/* Quick Links Section */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.quick-link-box {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: var(--spacing-lg);
    box-shadow: var(--box-shadow);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.quick-link-box:hover {
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-2px);
}

.quick-link-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.quick-link-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.quick-link-button {
    display: inline-block;
    color: var(--link-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.quick-link-button:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

/* Programmes Section */
.programmes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.programme-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: var(--spacing-lg);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.programme-card:hover {
    box-shadow: var(--box-shadow-hover);
}

.programme-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.programme-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.programme-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.programme-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.programme-features {
    list-style: none;
    text-align: left;
    margin: var(--spacing-md) 0;
    padding-left: 0;
}

.programme-features li {
    padding: var(--spacing-xs) 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.programme-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--link-color);
    font-weight: bold;
}

.programme-note {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    background-color: var(--bg-light);
    border-radius: 4px;
    font-size: 1rem;
    color: var(--text-color);
}

/* Help Section */
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.help-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 249, 230, 0.5) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 217, 61, 0.2);
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

.help-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--yellow-color);
}

.help-image {
    margin-bottom: var(--spacing-sm);
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--gradient-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.help-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.8) 0%, rgba(255, 107, 53, 0.6) 50%, rgba(139, 92, 246, 0.4) 100%);
    opacity: 0.3;
}

.help-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder-fallback {
    font-size: 4rem;
}

.help-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    margin-top: var(--spacing-sm);
}

.help-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* Resources Section */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.resource-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: var(--spacing-lg);
    box-shadow: var(--box-shadow);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.resource-card:hover {
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-2px);
}

.resource-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.resource-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.resource-link {
    color: var(--link-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: var(--link-hover);
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.partner-logo-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(243, 237, 255, 0.5) 100%);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    transition: all 0.3s ease;
}

.partner-logo-box:hover {
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-5px);
    border-color: var(--purple-color);
}

.partner-logo-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-logo-text {
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    font-size: 0.875rem;
}

/* Testimonials Section */
.testimonial-content {
    padding: var(--spacing-md);
    text-align: center;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    min-height: 100px;
    font-weight: 500;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--orange-color);
    font-weight: 700;
    margin-top: var(--spacing-sm);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2D1B69 0%, #4A2C8A 100%);
    color: var(--bg-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.footer-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--bg-white);
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
}

.subscribe-input {
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    font-size: 0.9375rem;
}

.subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe-button {
    padding: 0.875rem 1.75rem;
    background: var(--gradient-orange);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-card {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .hero-illustration-placeholder {
        min-height: 300px;
    }

    .hero-description {
        text-align: center;
    }

    .hero-cta-button {
        align-self: center;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .announcement-box {
        grid-template-columns: 1fr;
    }

    .announcement-graphic-placeholder {
        min-height: 300px;
    }

    .banner-text {
        font-size: 1.5rem;
    }

    .white-box {
        padding: 1rem;
    }

    .box-text {
        font-size: 0.9rem;
    }

    .quick-links-grid,
    .help-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }
}

/* Additional Visual Enhancements */
.hero-card-right {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.help-card:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.help-card:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.help-card:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
.hero-cta-button:focus,
.announcement-cta-button:focus,
.cta-button:focus,
.subscribe-button:focus {
    outline: 3px solid var(--yellow-color);
    outline-offset: 3px;
}

