/* inline-styles extracted from mockups */

/* Base Styles */
        :root {
            --primary: #255d6c; 
            --secondary: #122e36; 
            --accent: #1a2251; 
            --light: #f8f9fa;
            --dark: #343a40;
            --gold: #FFD700;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header & Navigation */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            height: 80px;
            display: flex;
            align-items: center;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            max-width: 300px;
            height: 100%;
        }
        
        .logo-img {
            max-height: 80px;
            width: auto;
            margin-right: 10px;
            object-fit: contain;
            transition: all 0.3s ease;
        }
        
        .logo h1 {
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
            margin: 0;
            padding: 0;
            height: 100%;
        }
        
        nav ul li {
            margin-left: 20px;
            display: flex;
            align-items: center;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
            padding: 8px 12px;
            display: flex;
            align-items: center;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        .active {
            color: var(--primary);
            font-weight: 600;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 12px 30px;
            margin-bottom: 10px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--secondary);
        }
        
        .btn-outline {
            display: inline-block;
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 10px 28px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://famsanet.org/wp-content/uploads/2024/05/WhatsApp-Image-2024-05-07-at-4.56.52-PM-1.jpeg') no-repeat center center/cover;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .live-indicator {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--secondary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            animation: pulse 2s infinite;
        }
        
        .live-indicator:before {
            content: "";
            width: 10px;
            height: 10px;
            background-color: white;
            border-radius: 50%;
            margin-right: 8px;
        }
        
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        
        /* Virtual Meeting Section */
        .virtual-meeting {
                padding: 80px 0;
            background-color: var(--light);
        }
        
            .virtual-meeting .section-title {
                text-align: center;
                margin-bottom: 40px;
        }
        
            .virtual-meeting .section-title h2 {
                font-size: 2.5rem;
            color: var(--primary);
                margin-bottom: 15px;
                position: relative;
                display: inline-block;
        }
        
            .virtual-meeting .section-title h2:after {
                content: '';
                position: absolute;
                width: 50%;
                height: 3px;
                background-color: var(--secondary);
                bottom: -10px;
                left: 25%;
            }

            .virtual-meeting .section-title p {
                color: #666;
                font-size: 1.1rem;
        }
        
        .meeting-details {
            background: white;
                padding: 40px;
            border-radius: 10px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
            .meeting-header {
                text-align: center;
                margin-bottom: 30px;
            }

            .meeting-header h3 {
                color: var(--primary);
                font-size: 1.8rem;
                margin-bottom: 15px;
            }

            .meeting-time {
                color: var(--secondary);
                font-size: 1.1rem;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
            }

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

            .join-option {
                background: var(--light);
                padding: 25px;
                border-radius: 8px;
                border: 1px solid #e2e8f0;
                transition: transform 0.3s ease;
            }

            .join-option:hover {
                transform: translateY(-5px);
            }

            .join-option-header {
                display: flex;
                align-items: center;
                gap: 15px;
                margin-bottom: 20px;
                padding-bottom: 15px;
                border-bottom: 2px solid var(--primary);
            }

            .join-option-header i {
                font-size: 1.5rem;
                color: var(--primary);
            }

            .join-option-header h4 {
                color: var(--primary);
                font-size: 1.2rem;
                margin: 0;
            }

            .join-content {
                padding: 15px;
                background: white;
                border-radius: 6px;
            }

            .zoom-link {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                background: var(--primary);
                color: white;
                padding: 12px 24px;
                border-radius: 6px;
                text-decoration: none;
                font-weight: 600;
                margin-bottom: 15px;
                transition: background-color 0.3s;
            }

            .zoom-link:hover {
                background: var(--secondary);
                text-decoration: none;
                color: white;
            }

            .meeting-id {
                font-size: 1.1rem;
                color: var(--dark);
                margin-top: 15px;
            }

            .dial-numbers, .h323-numbers {
                max-height: 200px;
                overflow-y: auto;
                padding: 15px;
                background: white;
                border-radius: 4px;
                margin-top: 15px;
                font-family: 'Courier New', monospace;
            }

            .dial-numbers p, .h323-numbers p {
                margin: 8px 0;
                color: var(--dark);
            }

            .meeting-support {
                margin-top: 40px;
                padding-top: 30px;
                border-top: 1px solid #e2e8f0;
                text-align: center;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 15px;
            }

            .meeting-support i {
                font-size: 1.5rem;
                color: var(--primary);
            }

            .meeting-support a {
                color: var(--primary);
                text-decoration: none;
                font-weight: 500;
            }

            .meeting-support a:hover {
                text-decoration: underline;
            }

            @media (max-width: 768px) {
                .virtual-meeting {
                    padding: 60px 0;
                }
            
                .meeting-details {
                    padding: 25px;
                }
            
                .join-options {
                    grid-template-columns: 1fr;
                }
            
                .join-option {
                    padding: 20px;
                }

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

                .meeting-header h3 {
                    font-size: 1.5rem;
                }
            }
        .join-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .join-option {
            padding: 25px;
            background: var(--light);
            border-radius: 8px;
            border: 1px solid #e2e8f0;
        }
        
        .join-option h4 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.2rem;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 8px;
        }
        
        .zoom-link {
            color: #2563eb;
            text-decoration: none;
            word-break: break-all;
            font-weight: 500;
        }
        
        .zoom-link:hover {
            text-decoration: underline;
        }
        
        .dial-numbers, .h323-numbers {
            max-height: 200px;
            overflow-y: auto;
            padding: 15px;
            background: white;
            border-radius: 4px;
            margin-top: 10px;
            border: 1px solid #e2e8f0;
        }
        
        .dial-numbers p, .h323-numbers p {
            margin: 8px 0;
            font-family: monospace;
            font-size: 0.95rem;
        }
        
        .meeting-support {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
            text-align: center;
            font-size: 0.95rem;
        }
        
        .meeting-support a {
            color: #2563eb;
            text-decoration: none;
            font-weight: 500;
        }
        
        .meeting-support a:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .virtual-meeting {
                padding: 30px 15px;
            }
            
            .meeting-details {
                padding: 20px;
            }
            
            .join-options {
                grid-template-columns: 1fr;
            }
            
            .join-option {
                padding: 20px;
            }
        }
        
        /* Countdown */
        .countdown {
            background-color: var(--primary);
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        
        .countdown-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        
        .countdown-item {
            background-color: rgba(255,255,255,0.2);
            padding: 15px;
            border-radius: 5px;
            min-width: 100px;
        }
        
        .countdown-number {
            font-size: 2.5rem;
            font-weight: bold;
        }
        
        /* Theme Section */
        .theme-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary) 0%, #004d00 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .theme-section:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            opacity: 0.1;
        }
        
        .theme-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .theme-tag {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .theme-title {
            font-size: 2.5rem;
            margin-bottom: 30px;
            line-height: 1.3;
        }
        
        .theme-description {
            font-size: 1.1rem;
            margin-bottom: 40px;
            line-height: 1.7;
        }
        
        .theme-pillars {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .pillar {
            background-color: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 8px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: transform 0.3s;
        }
        
        .pillar:hover {
            transform: translateY(-10px);
        }
        
        .pillar-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--gold);
        }
        
        .pillar h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        
        /* Live Gallery Section */
        .live-gallery {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: var(--secondary);
            bottom: -10px;
            left: 25%;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: #666;
        }
        
        .gallery-controls {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .filter-btn {
            background-color: white;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }
        
        .filter-btn.active, .filter-btn:hover {
            background-color: var(--primary);
            color: white;
        }
        
        .gallery-grid {
            display: grid;
            /* make gallery items more prominent: prefer larger columns on desktop */
            grid-template-columns: repeat(auto-fill, minmax(560px, 1fr));
            gap: 28px;
            justify-content: center;
        }
        
        .gallery-item {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            position: relative;
            cursor: pointer;
            /* enforce a fixed aspect ratio for thumbnails */
            aspect-ratio: 4 / 3;
            display: block;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
        }
        
        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        /* Make overlay title match site headings (inherit font, clear weight and size) */
        .gallery-overlay h3 {
            font-family: inherit;
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0;
            color: #fff;
            line-height: 1.2;
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        
        .gallery-category {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--primary);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
            font-family: inherit;
            letter-spacing: 0.2px;
        }
        
        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }
        
        .lightbox-img {
            max-width: 100%;
            max-height: 90vh;
            border-radius: 8px;
        }
        
        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }
        
        .lightbox-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }
        
        .lightbox-nav button {
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            font-size: 2rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.3s;
        }

        /* Match lightbox controls to site typography */
        .lightbox-close,
        .lightbox-nav button {
            font-family: inherit;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .lightbox-nav button:hover {
            background: rgba(255,255,255,0.4);
        }
        
        /* Highlights Section */
        .highlights {
            padding: 80px 0;
        }
        
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .card:hover {
            transform: translateY(-10px);
        }
        
        .card-img {
            height: 200px;
            background-color: #ddd;
            background-size: cover;
            background-position: center;
        }
        
        .card-content {
            padding: 20px;
        }
        
        .card h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #ddd;
            padding-bottom: 20px;
        }
        
        .faq-question {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 10px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .faq-question i {
            transition: transform 0.3s;
        }
        
        .faq-answer {
            display: none;
            padding-top: 10px;
            color: #666;
        }
        
        .faq-active .faq-answer {
            display: block;
        }
        
        .faq-active .faq-question i {
            transform: rotate(180deg);
        }
        
        /* Sponsors Section */
        .sponsors-section {
            padding: 80px 0;
        }
        
        .sponsors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 32px;
            margin: 40px 0;
            justify-items: center;
        }
        
        .sponsor-logo {
            width: 100%;
            max-width: 240px;
            aspect-ratio: 16 / 9;
            background-color: white;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .sponsor-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }
        
        .sponsor-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        @media (max-width: 768px) {
            .sponsors-grid {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
                gap: 24px;
            }
            
            .sponsor-logo {
                padding: 16px;
            }
        }
        
        .become-sponsor {
            text-align: center;
            margin-top: 50px;
            padding: 40px;
            background-color: var(--light);
            border-radius: 8px;
        }
        
        /* Footer */
        footer {
            background-color: var(--accent);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 10px;
            text-align: center;
            line-height: 40px;
            color: white;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                max-width: 200px;
                margin: 0 auto;
            }
            
            .logo-img {
                max-height: 60px;
            }
            
            nav ul {
                margin-top: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px 10px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .theme-title {
                font-size: 2rem;
            }
            
            .countdown-container {
                flex-wrap: wrap;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .mobile-nav {
                display: none;
            }
            
            .mobile-nav.active {
                display: block;
            }
            
            .gallery-grid {
                /* responsive: smaller thumbnails on mobile for better fit */
                grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            }

            /* thumbnails remain 4:3 via .gallery-item aspect-ratio on all sizes */
            
            .sponsor-logos {
                gap: 15px;
            }
            
            .sponsor-logo {
                height: 100px;
                width: 150px;
            }
        }

/* Global Styles */
        :root {
            --primary: #255d6c; 
            --secondary: #122e36; 
            --accent: #1a2251; 
            --light: #f8f9fa;
            --dark: #343a40;
            --gold: #FFD700;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header & Navigation */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            max-width: 300px;
            height: 100%;
        }
        
        .logo-img {
            max-height: 80px;
            width: auto;
            margin-right: 10px;
            object-fit: contain;
            transition: all 0.3s ease;
        }
        
        .logo h1 {
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 20px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        .active {
            color: var(--primary);
            font-weight: 600;
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .page-hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://famsanet.org/wp-content/uploads/2024/05/WhatsApp-Image-2024-05-07-at-4.56.52-PM-1.jpeg') no-repeat center center/cover;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .page-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        .breadcrumb li {
            margin: 0 10px;
        }
        
        .breadcrumb li a {
            color: white;
            text-decoration: none;
        }
        
        .breadcrumb li:after {
            content: ">";
            margin-left: 10px;
            color: white;
        }
        
        .breadcrumb li:last-child:after {
            content: "";
        }
        
        /* Section Styles */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: var(--secondary);
            bottom: -10px;
            left: 25%;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: #666;
        }
        
        /* Cards */
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .card:hover {
            transform: translateY(-10px);
        }
        
        .card-img {
            height: 200px;
            background-color: #ddd;
            background-size: cover;
            background-position: center;
        }
        
        .card-content {
            padding: 20px;
        }
        
        .card h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* Footer */
        footer {
            background-color: var(--accent);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 10px;
            text-align: center;
            line-height: 40px;
            color: white;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* About Page Specific Styles */
        .about-intro {
            background-color: var(--light);
            padding: 60px 0;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .about-img {
            height: 400px;
            background-color: #ddd;
            border-radius: 8px;
            background-size: cover;
            background-position: center;
        }
        
        .theme-highlight {
            background-color: var(--primary);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .theme-highlight h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .theme-highlight p {
            max-width: 800px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        
        .plenary-sessions {
            background-color: var(--light);
        }
        
        .session-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .session-item {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .session-item h4 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .speakers {
            text-align: center;
        }
        
        .speaker-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .speaker-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .speaker-img {
            height: 200px;
            background-color: #ddd;
            background-size: cover;
            background-position: center;
        }
        
        .speaker-info {
            padding: 20px;
        }
        
        .speaker-info h4 {
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .speaker-info p {
            color: #666;
            font-size: 0.9rem;
        }
        
        .venue-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .venue-details {
            background-color: var(--light);
            padding: 30px;
            border-radius: 8px;
        }
        
        .venue-details h3 {
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .venue-details ul {
            list-style: none;
        }
        
        .venue-details ul li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        
        .venue-details ul li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
        
        .registration-info {
            background-color: var(--light);
            padding: 60px 0;
        }
        
        .registration-table {
            overflow-x: auto;
            margin-bottom: 40px;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }
        
        th, td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        th {
            background-color: var(--primary);
            color: white;
        }
        
        tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        
        .info-box {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        
        .info-box h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                max-width: 200px;
                margin: 0 auto;
            }
            
            .logo-img {
                max-height: 60px;
            }
            
            nav ul {
                margin-top: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px 10px;
            }
            
            .page-hero h1 {
                font-size: 2rem;
            }
            
            .about-content,
            .venue-info {
                grid-template-columns: 1fr;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .mobile-nav {
                display: none;
            }
            
            .mobile-nav.active {
                display: block;
            }
        }

/* Base Styles */
        :root {
            --primary: #255d6c;
            --secondary: #122e36;
            --accent: #1a2251;
            --light: #f8f9fa;
            --dark: #343a40;
            --gold: #FFD700;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header & Navigation */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            max-width: 300px;
            height: 100%;
        }
        
        .logo-img {
            max-height: 80px;
            width: auto;
            margin-right: 10px;
            object-fit: contain;
            transition: all 0.3s ease;
        }
        
        .logo h1 {
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
            margin: 0;
            padding: 0;
            height: 100%;
        }
        
        nav ul li {
            margin-left: 20px;
            display: flex;
            align-items: center;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
            padding: 8px 12px;
            display: flex;
            align-items: center;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        .active {
            color: var(--primary);
            font-weight: 600;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--secondary);
        }
        
        .btn-outline {
            display: inline-block;
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 10px 28px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Page Hero */
        .page-hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://famsanet.org/wp-content/uploads/2024/05/WhatsApp-Image-2024-05-07-at-4.56.52-PM-1.jpeg') no-repeat center center/cover;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .page-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        .breadcrumb li {
            margin: 0 10px;
        }
        
        .breadcrumb li a {
            color: white;
            text-decoration: none;
        }
        
        .breadcrumb li:after {
            content: ">";
            margin-left: 10px;
            color: white;
        }
        
        .breadcrumb li:last-child:after {
            content: "";
        }
        
        /* Section Styles */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: var(--secondary);
            bottom: -10px;
            left: 25%;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: #666;
        }
        
        /* Contact Form & Info */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .contact-form {
            background-color: var(--light);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .info-card {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .info-card h3 {
            color: var(--primary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .info-card h3 i {
            color: var(--secondary);
        }
        
        .info-item {
            display: flex;
            margin-bottom: 15px;
        }
        
        .info-icon {
            width: 40px;
            height: 40px;
            background-color: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary);
        }
        
        .info-content h4 {
            color: var(--dark);
            margin-bottom: 5px;
        }
        
        .info-content p {
            color: #666;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .social-link:hover {
            background-color: var(--secondary);
        }
        
        /* Map Section */
        .map-section {
            padding: 0;
        }
        
        .map-container {
            height: 450px;
            width: 100%;
            background-color: #eee;
            position: relative;
        }
        
        .map-placeholder {
            height: 100%;
            width: 100%;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            text-align: center;
        }
        
        /* Team Section */
        .team-section {
            background-color: var(--light);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .team-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            text-align: center;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }
        
        .team-img {
            height: 320px;
            background-color: #ddd;
            background-size: cover;
            background-position: top center;
            position: relative;
            overflow: hidden;
        }
        
        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
        }
        
        .team-info {
            padding: 25px;
        }
        
        .team-info h3 {
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .team-info p {
            color: var(--secondary);
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .team-contact {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }
        
        .team-contact a {
            width: 35px;
            height: 35px;
            background-color: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .team-contact a:hover {
            background-color: var(--primary);
            color: white;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #ddd;
            padding-bottom: 20px;
        }
        
        .faq-question {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 10px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .faq-question i {
            transition: transform 0.3s;
        }
        
        .faq-answer {
            display: none;
            padding-top: 10px;
            color: #666;
        }
        
        .faq-active .faq-answer {
            display: block;
        }
        
        .faq-active .faq-question i {
            transform: rotate(180deg);
        }
        
        /* Footer */
        footer {
            background-color: var(--accent);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: white;
        }
        
        .footer-social-links {
            display: flex;
            margin-top: 20px;
        }
        
        .footer-social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 10px;
            text-align: center;
            line-height: 40px;
            color: white;
            transition: background-color 0.3s;
        }
        
        .footer-social-links a:hover {
            background-color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                max-width: 200px;
                margin: 0 auto;
            }
            
            .logo-img {
                max-height: 60px;
            }
            
            nav ul {
                margin-top: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px 10px;
            }
            
            .page-hero h1 {
                font-size: 2rem;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .mobile-nav {
                display: none;
            }
            
            .mobile-nav.active {
                display: block;
            }
            
            .team-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }

/* Base Styles */
        :root {
            --primary: #255d6c; 
            --secondary: #122e36; 
            --accent: #1a2251; 
            --light: #f8f9fa;
            --dark: #343a40;
            --gold: #FFD700;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header & Navigation */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            height: 80px;
            display: flex;
            align-items: center;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            max-width: 300px;
            height: 100%;
        }
        
        .logo-img {
            max-height: 80px;
            width: auto;
            margin-right: 10px;
            object-fit: contain;
            transition: all 0.3s ease;
        }
        
        .logo h1 {
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
            margin: 0;
            padding: 0;
            height: 100%;
        }
        
        nav ul li {
            margin-left: 20px;
            display: flex;
            align-items: center;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
            padding: 8px 12px;
            display: flex;
            align-items: center;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        .active {
            color: var(--primary);
            font-weight: 600;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--secondary);
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Page Hero */
        .page-hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://famsanet.org/wp-content/uploads/2024/05/WhatsApp-Image-2024-05-07-at-4.56.52-PM-1.jpeg') no-repeat center center/cover;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .page-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        .breadcrumb li {
            margin: 0 10px;
        }
        
        .breadcrumb li a {
            color: white;
            text-decoration: none;
        }
        
        .breadcrumb li:after {
            content: ">";
            margin-left: 10px;
            color: white;
        }
        
        .breadcrumb li:last-child:after {
            content: "";
        }
        
        /* Section Styles */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: var(--secondary);
            bottom: -10px;
            left: 25%;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: #666;
        }
        
        /* Team Intro */
        .team-intro {
            background-color: var(--light);
            padding: 60px 0;
            text-align: center;
        }
        
        .team-intro p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        /* Team Categories */
        .team-categories {
            margin-bottom: 40px;
        }
        
        .category-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }
        
        .category-tab {
            background-color: white;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 10px 25px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }
        
        .category-tab.active, .category-tab:hover {
            background-color: var(--primary);
            color: white;
        }
        
        /* Team Grid */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .team-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            text-align: center;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }
        
        .team-img {
            height: 250px;
            background-color: #ddd;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .team-role {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0,0,0,0.7);
            color: white;
            padding: 10px;
            font-weight: 500;
        }
        
        .team-info {
            padding: 25px;
        }
        
        .team-info h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .team-info p {
            color: #666;
            margin-bottom: 15px;
        }
        
        .team-contact {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }
        
        .team-contact a {
            width: 40px;
            height: 40px;
            background-color: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .team-contact a:hover {
            background-color: var(--primary);
            color: white;
        }
        
        /* Leadership Section */
        .leadership-section {
            background-color: var(--light);
        }
        
        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .leadership-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            display: flex;
            transition: transform 0.3s;
        }
        
        .leadership-card:hover {
            transform: translateY(-5px);
        }
        
        .leadership-img {
            width: 150px;
            background-color: #ddd;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .leadership-content {
            padding: 25px;
            flex: 1;
        }
        
        .leadership-content h3 {
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .leadership-content .role {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .leadership-content p {
            color: #666;
            margin-bottom: 15px;
        }
        
        /* Departments Section */
        .departments-section {
            padding: 80px 0;
        }
        
        .department-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }
        
        .department-tab {
            background-color: white;
            border: 2px solid var(--primary);
            color: var(--accent);
            padding: 10px 25px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }
        
        .department-tab.active, .department-tab:hover {
            background-color: var(--primary);
            color: white;
        }
        
        .department-content {
            display: none;
        }
        
        .department-content.active {
            display: block;
        }
        
        /* Join Team Section */
        .join-team {
            background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .join-team h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .join-team p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--accent);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 10px;
            text-align: center;
            line-height: 40px;
            color: white;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                max-width: 200px;
                margin: 0 auto;
            }
            
            .logo-img {
                max-height: 60px;
            }
            
            nav ul {
                margin-top: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px 10px;
            }
            
            .page-hero h1 {
                font-size: 2rem;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .mobile-nav {
                display: none;
            }
            
            .mobile-nav.active {
                display: block;
            }
            
            .team-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .leadership-grid {
                grid-template-columns: 1fr;
            }
            
            .leadership-card {
                flex-direction: column;
            }
            
            .leadership-img {
                width: 100%;
                height: 200px;
            }
        }

/* Base Styles - Matching Homepage */
        :root {
            --primary: #255d6c; 
            --secondary: #122e36; 
            --accent: #1a2251; 
            --light: #f8f9fa;
            --dark: #343a40;
            --gold: #FFD700;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header & Navigation - Matching Homepage */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            height: 80px;
            display: flex;
            align-items: center;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            max-width: 300px;
            height: 100%;
        }
        
        .logo-img {
            max-height: 80px;
            width: auto;
            margin-right: 10px;
            object-fit: contain;
            transition: all 0.3s ease;
        }
        
        .logo h1 {
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
            margin: 0;
            padding: 0;
            height: 100%;
        }
        
        nav ul li {
            margin-left: 20px;
            display: flex;
            align-items: center;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
            padding: 8px 12px;
            display: flex;
            align-items: center;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        .active {
            color: var(--primary);
            font-weight: 600;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--secondary);
        }
        
        .btn-outline {
            display: inline-block;
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 10px 28px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section - Adapted for Registration */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://famsanet.org/wp-content/uploads/2024/05/WhatsApp-Image-2024-05-07-at-4.56.52-PM-1.jpeg') no-repeat center center/cover;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        /* Late Registration Section */
        .late-registration {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: var(--secondary);
            bottom: -10px;
            left: 25%;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: #666;
        }
        
        .deadline-notice {
            background-color: #ffebee;
            border-left: 4px solid #f44336;
            padding: 15px;
            margin-bottom: 30px;
            border-radius: 4px;
        }
        
        .registration-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 40px;
            margin-top: 30px;
        }
        
        .registration-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .registration-card:hover {
            transform: translateY(-5px);
        }
        
        .registration-header {
            background-color: var(--primary);
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .registration-header h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .registration-header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .registration-content {
            padding: 30px;
        }
        
        .registration-details {
            margin-bottom: 30px;
        }
        
        .registration-details h4 {
            color: var(--primary);
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eee;
        }
        
        .fee-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 1px dashed #eee;
        }
        
        .fee-name {
            font-weight: 500;
        }
        
        .fee-amount {
            font-weight: 600;
            color: var(--secondary);
        }
        
        .payment-info {
            background-color: #f5f5f5;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }
        
        .payment-info h4 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .payment-details {
            font-family: monospace;
            background-color: white;
            padding: 15px;
            border-radius: 5px;
            border-left: 3px solid var(--primary);
        }
        
        .payment-details p {
            margin-bottom: 8px;
        }
        
        .contact-info {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        .contact-info p {
            margin-bottom: 5px;
        }
        
        .contact-info a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }
        
        .contact-info a:hover {
            text-decoration: underline;
        }
        
        /* Footer - Matching Homepage */
        footer {
            background-color: var(--accent);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 10px;
            text-align: center;
            line-height: 40px;
            color: white;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                max-width: 200px;
                margin: 0 auto;
            }
            
            .logo-img {
                max-height: 60px;
            }
            
            nav ul {
                margin-top: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px 10px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .registration-container {
                grid-template-columns: 1fr;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .mobile-nav {
                display: none;
            }
            
            .mobile-nav.active {
                display: block;
            }
        }


/* gallery styles added by theme generator */
.live-gallery { padding: 60px 0; text-align: center; }
.live-gallery .gallery-grid { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.live-gallery .gallery-item { width:220px; height:220px; overflow:hidden; border-radius:10px; }
.live-gallery .gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.3s ease; }
.live-gallery .gallery-item img:hover { transform:scale(1.05); }
