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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: white;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    padding: 5px;
}

.lang-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn.active {
    background: #2c7873;
    color: white;
}

.lang-btn:hover:not(.active) {
    background: #f0f0f0;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 80px;
    border-radius: 8px;
}

.logo-text h1 {
    color: #2c7873;
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 700;
}

.logo-subtitle {
    color: #666;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c7873;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #2c7873;
}

.nav-menu a.active {
    color: #2c7873;
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
}

.donate-btn {
    background: #ff6b6b;
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s;
    font-weight: 600;
}

.donate-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.donate-btn::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #2c7873;
}

/* Hero Section */
.hero {
    background-image: url('images/happy.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0 100px;
    position: relative;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-outline {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #2c7873;
    color: white;
    border-color: #2c7873;
}

.btn-primary:hover {
    background: #235e5a;
    border-color: #235e5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
}

.btn-secondary:hover {
    background: #ff5252;
    border-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
}

/* Sections Common */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c7873;
    margin-bottom: 50px;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ff6b6b;
    margin: 15px auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin: 20px 0 50px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Intro */
.about-intro {
    background: white;
    padding: 80px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Impact Numbers */
.impact-numbers {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.impact-card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.impact-icon {
    font-size: 48px;
    color: #2c7873;
    margin-bottom: 20px;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: #2c7873;
    margin-bottom: 10px;
}

.weekly {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.impact-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Thematic Areas */
.thematic-areas {
    background: white;
    padding: 80px 0;
}

.thematic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.thematic-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.thematic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #2c7873;
}

.thematic-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
}

.thematic-content {
    padding: 30px;
}

.thematic-icon {
    font-size: 36px;
    color: #2c7873;
    margin-bottom: 20px;
}

.thematic-card h3 {
    color: #2c7873;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.thematic-card p {
    color: #666;
    line-height: 1.6;
}

/* Achievements */
.achievements {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.achievement-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.achievement-icon {
    font-size: 36px;
    color: #2c7873;
    margin-bottom: 20px;
}

.achievement-card p {
    color: #666;
    line-height: 1.6;
}

/* Partners */
.partners {
    background: white;
    padding: 80px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #2c7873;
}

.partner-icon {
    font-size: 48px;
    color: #2c7873;
    margin-bottom: 20px;
}

.partner-card h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Call to Action */
.cta {
    background: linear-gradient(135deg, #2c7873 0%, #4a9b8e 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    line-height: 1.3;
    font-weight: 700;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Quick Help Section */
.quick-help-section {
    background: white;
    padding: 80px 0;
}

.whatsapp-container {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.whatsapp-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2c7873;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c7873;
    box-shadow: 0 0 0 3px rgba(44, 120, 115, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.whatsapp-info {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
}

.whatsapp-info i {
    font-size: 60px;
    color: #25D366;
    margin-bottom: 20px;
}

.whatsapp-info p {
    color: #666;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    border-radius: 5px;
}

.footer-logo-text {
    color: #2c7873;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.footer-tagline {
    color: #bbb;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-contact h4,
.footer-legal h4 {
    color: #2c7873;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-contact p,
.footer-legal p {
    margin-bottom: 15px;
    color: #bbb;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: #2c7873;
    width: 20px;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-primary, .btn-secondary, .btn-outline {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

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

    .section {
        padding: 60px 0;
    }

    .language-switcher {
        top: 10px;
        right: 10px;
    }

    .lang-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .whatsapp-container,
    .form-container {
        padding: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-contact p,
    .footer-legal p {
        justify-content: center;
    }

    .footer-logo-container {
        justify-content: center;
    }
}

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

    .hero-subtitle {
        font-size: 0.9rem;
    }

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

    .impact-grid,
    .thematic-grid,
    .achievements-grid,
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .impact-card,
    .thematic-card,
    .achievement-card,
    .partner-card {
        padding: 25px 20px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Form Messages */
.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* About Page Specific Styles (moved from about.html) */
/* Vision / Mission / Values */
.about-hero {
    background-image: url('images/family.png');
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

/* Overlay used by both home and about heroes to control darkness */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent; /* removed tint so background image shows clearly */
    z-index: 1;
}

/* Ensure hero content sits above overlay */
.hero-content { z-index: 2; }

.vmv-section {
    margin-bottom: 80px;
    padding: 60px 0;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vmv-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid;
}

.vmv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.vision-card { border-top-color: #2c7873; }
.mission-card { border-top-color: #0099cc; }
.values-card { border-top-color: #ff6b6b; }

.vmv-icon { font-size: 48px; margin-bottom: 20px; }
.vision-card .vmv-icon { color: #2c7873; }
.mission-card .vmv-icon { color: #0099cc; }
.values-card .vmv-icon { color: #ff6b6b; }

/* VMV icon circle and improved alignment */
.vmv-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.vmv-card .vmv-icon i { font-size: 28px; }

.vmv-content h3 { color: #333; font-size: 1.5rem; margin-bottom: 15px; font-weight: 600; }
.vmv-main { color: #555; font-size: 1rem; line-height: 1.6; margin-bottom: 15px; font-weight: 500; }
.vmv-detail { color: #777; font-size: 0.9rem; line-height: 1.5; font-style: italic; }
.values-list { list-style: none; padding: 0; margin: 20px 0 0 0; text-align: left; }
.values-list li { padding: 8px 0; color: #555; font-size: 0.95rem; }
.values-list i { color: #ff6b6b; margin-right: 10px; }

/* Registration */
.registration-section { margin-bottom: 80px; padding: 60px 40px; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); border-radius: 20px; }
.reg-header { text-align: center; margin-bottom: 50px; }
.reg-header h2 { color: #2c7873; font-size: 2.2rem; margin-bottom: 10px; font-weight: 700; }
.reg-subtitle { color: #666; font-size: 1.1rem; }
.reg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 60px; }
.reg-card { background: white; border-radius: 15px; padding: 30px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: all 0.3s ease; }
.reg-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.reg-icon { font-size: 48px; color: #2c7873; margin-bottom: 20px; height: 80px; display: flex; align-items: center; justify-content: center; }
.reg-number, .reg-year { font-size: 2rem; font-weight: 700; color: #2c7873; display: block; }
.reg-card h3 { color: #333; font-size: 1.2rem; margin-bottom: 15px; font-weight: 600; }
.reg-card p { color: #666; font-size: 0.95rem; line-height: 1.6; }
.office-address { font-weight: 600; color: #2c7873; margin: 15px 0; }
.reg-detail { color: #888; font-size: 0.9rem; font-style: italic; margin-top: 10px; }

/* Map */
.location-section { margin-top: 60px; }
.location-title { text-align: center; color: #2c7873; font-size: 2rem; margin-bottom: 30px; font-weight: 700; }
.map-container { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.map-frame { border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); height: 400px; }
.map-frame iframe { width: 100%; height: 100%; border: none; }
.map-info { background: white; padding: 30px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.map-info h3 { color: #2c7873; font-size: 1.5rem; margin-bottom: 15px; font-weight: 600; }
.map-info p { color: #666; line-height: 1.6; }

/* Make map info visually balanced on small screens */
.map-info { display: flex; flex-direction: column; justify-content: center; }

@media (max-width: 768px) {
    .map-info { padding: 20px; }
}

/* Stories */
.success-stories { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }
.stories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.story-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.3s ease; }
.story-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.story-image { height: 200px; overflow: hidden; }
.story-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.story-card:hover .story-image img { transform: scale(1.1); }
.story-content { padding: 25px; }
.story-content h3 { color: #2c7873; font-size: 1.3rem; margin-bottom: 15px; font-weight: 600; }
.story-content p { color: #666; line-height: 1.6; font-size: 0.95rem; }

/* Team */
.team-section { background: linear-gradient(135deg, #2c7873 0%, #4a9b8e 100%); color: white; }
.team-section .section-title { color: white; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
.team-card { background: rgba(255, 255, 255, 0.1); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-radius: 15px; overflow: hidden; transition: all 0.3s ease; }
.team-card:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.15); }
.team-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    background: rgba(255,255,255,0.03);
}

/* Leader images: fixed circular avatar that adapts to uploaded image size */
.team-photo img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* For images that should show fully (no cropping) */
.team-photo img[data-fit="contain"] {
    object-fit: contain;
    background: #ffffff;
    padding: 8px;
}

@media (min-width: 1025px) {
    .team-photo img { width: 200px; height: 200px; }
}

@media (max-width: 768px) {
    .team-photo img { width: 140px; height: 140px; }
}

@media (max-width: 480px) {
    .team-photo img { width: 110px; height: 110px; }
}
.team-info { padding: 25px; text-align: center; }
.team-info h3 { font-size: 1.2rem; margin-bottom: 5px; font-weight: 600; }
.team-info h4 { font-size: 1rem; color: #ffd700; margin-bottom: 10px; font-weight: 500; }
.team-role { font-size: 0.9rem; opacity: 0.9; }

/* Footer tweaks */
.footer-logo-container { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.footer-logo-img { height: 40px; width: auto; }
.footer-logo-text { color: #2c7873; font-size: 1.5rem; margin: 0; }

/* Responsive for about page */
@media (max-width: 768px) {
    .about-hero { min-height: 300px; }
    .vmv-grid, .reg-grid, .stories-grid, .team-grid { grid-template-columns: 1fr; gap: 20px; }
    .map-container { grid-template-columns: 1fr; gap: 20px; }
    .map-frame { height: 300px; }
    .registration-section { padding: 40px 20px; }
    .vmv-card, .reg-card, .story-card, .team-card { padding: 25px 20px; }
}

@media (max-width: 480px) {
    .about-hero { min-height: 250px; }
    .hero h1 { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
}