* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Lato', sans-serif;
            background: #ffffff;
            color: #1e3a5f;
            line-height: 1.6;
        }
        
        /* Classic Navigation - Blue & White */
        .navbar {
            background: #003d82;
            padding: 0;
            box-shadow: 0 2px 8px rgba(0, 61, 130, 0.3);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid #0059b3;
        }
        
        .navbar-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            color: white;
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
        }
        
        .logo-icon {
            font-size: 36px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            letter-spacing: 0.5px;
        }
        
        .nav-links a:hover {
            border-bottom-color: white;
            color: #e8f4ff;
        }
        
        /* Classic Hero with Coastal Blues */
        .hero {
            background: linear-gradient(rgba(0, 61, 130, 0.85), rgba(0, 89, 179, 0.85)), url('../res/EgIMGBlur.jpg');
            background-size: cover;
            background-position: center;
            margin-top: 77px;
            padding: 100px 40px 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            color: white;
            margin-bottom: 15px;
            font-weight: 800;
            line-height: 1.1;
            text-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .hero .subtitle {
            font-size: 18px;
            color: #e8f4ff;
            margin-bottom: 30px;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        
        .btn-white {
            background: white;
            color: #003d82;
            padding: 12px 35px;
            border: none;
            border-radius: 4px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            font-size: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        
        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.3);
            background: #f0f8ff;
        }
        
        /* Container */
        .container {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 40px;
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            color: #003d82;
            margin-bottom: 10px;
            font-weight: 700;
            text-align: center;
        }
        
        .section-subtitle {
            text-align: center;
            color: #5a6c7d;
            font-size: 16px;
            margin-bottom: 40px;
            font-weight: 400;
        }
        
        /* Classic Chess Cards with Blue Accent */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
            margin-bottom: 60px;
        }
        
        .classic-card {
            background: white;
            border: 2px solid #e0e7ef;
            border-radius: 8px;
            padding: 25px;
            transition: all 0.3s;
            position: relative;
            box-shadow: 0 4px 12px rgba(0, 61, 130, 0.08);
        }
        
        .classic-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, #003d82, #007acc);
            border-radius: 6px 6px 0 0;
        }
        
        .classic-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 61, 130, 0.15);
            border-color: #003d82;
        }
        
        .card-icon {
            font-size: 40px;
            margin-bottom: 12px;
            display: block;
            color: #003d82;
            text-shadow: 0 2px 4px rgba(0, 61, 130, 0.2);
        }
        
        .classic-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            color: #003d82;
            margin-bottom: 12px;
            font-weight: 700;
        }
        
        .card-meta {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .meta-badge {
            background: #f0f8ff;
            color: #003d82;
            padding: 6px 14px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 700;
            border: 1px solid #cce4ff;
        }
        
        .classic-card p {
            color: #5a6c7d;
            line-height: 1.6;
            font-size: 15px;
        }
        
        /* Feature Banner */
        .feature-banner {
            background: #f8fbff;
            border: 2px solid #003d82;
            border-radius: 8px;
            padding: 60px 50px;
            margin: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .feature-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0, 61, 130, 0.02) 20px, rgba(0, 61, 130, 0.02) 40px);
        }
        
        .feature-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .feature-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            color: #003d82;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .feature-content p {
            font-size: 15px;
            color: #5a6c7d;
            line-height: 1.6;
            margin-bottom: 12px;
        }
        
        .feature-highlight {
            background: #003d82;
            color: white;
            padding: 8px 16px;
            display: inline-block;
            margin-top: 20px;
            font-weight: 700;
            border-radius: 4px;
            letter-spacing: 1px;
        }
        
        /* Responsive Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 80px 0;
        }
        
        .stat-card {
            background: white;
            border: 2px solid #e0e7ef;
            border-radius: 8px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .stat-card:hover {
            border-color: #003d82;
            box-shadow: 0 8px 20px rgba(0, 61, 130, 0.1);
        }
        
        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 56px;
            color: #003d82;
            font-weight: 700;
            margin-bottom: 10px;
            display: block;
        }
        
        .stat-label {
            color: #5a6c7d;
            font-size: 18px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Classic Footer */
        .footer {
            background: #003d82;
            color: white;
            padding: 60px 40px 40px;
            border-top: 4px solid #0059b3;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        
        .footer h3 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .footer .tagline {
            color: #cce4ff;
            font-size: 18px;
            margin-bottom: 30px;
            letter-spacing: 1px;
        }
        
        .footer-divider {
            height: 2px;
            background: rgba(255,255,255,0.2);
            max-width: 600px;
            margin: 30px auto;
        }
        
        .style-badge {
            background: white;
            color: #003d82;
            padding: 10px 25px;
            display: inline-block;
            margin-bottom: 25px;
            font-weight: 700;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 13px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .navbar-content {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav-links {
                gap: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero h1 {
                font-size: 48px;
            }
            
            .hero .subtitle {
                font-size: 20px;
            }
            
            .section-title {
                font-size: 38px;
            }
            
            .cards-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .btn-white {
                padding: 14px 35px;
                font-size: 16px;
            }
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.7);
            animation: fadeIn 0.3s;
        }

        .modal.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 0;
            border: 3px solid #003d82;
            border-radius: 8px;
            width: 90%;
            max-width: 800px;
            position: relative;
            animation: slideIn 0.3s;
            box-shadow: 0 15px 50px rgba(0, 61, 130, 0.3);
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-header {
            background: linear-gradient(135deg, #003d82, #0059b3);
            color: white;
            padding: 30px 40px;
            border-radius: 5px 5px 0 0;
            position: relative;
        }

        .modal-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            margin: 0 0 10px 0;
            font-weight: 700;
        }

        .modal-date {
            color: #cce4ff;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .modal-close {
            position: absolute;
            right: 20px;
            top: 20px;
            color: white;
            font-size: 32px;
            font-weight: bold;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
            background: rgba(255, 255, 255, 0.1);
        }

        .modal-close:hover,
        .modal-close:focus {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 40px;
            color: #1e3a5f;
            line-height: 1.8;
            font-size: 16px;
        }

        .modal-body p {
            margin-bottom: 15px;
            white-space: pre-line;
        }

        /* News Article Cards */
        .news-article {
            background: white;
            border: 2px solid #e0e7ef;
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 30px;
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
        }

        .news-article::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, #003d82, #007acc);
            border-radius: 6px 6px 0 0;
        }

        .news-article:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 61, 130, 0.15);
            border-color: #003d82;
        }

        .news-article h3 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            color: #003d82;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .news-article-date {
            color: #5a6c7d;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }

        .news-article p {
            color: #5a6c7d;
            line-height: 1.6;
            font-size: 15px;
        }

        .read-more {
            color: #003d82;
            font-weight: 700;
            margin-top: 15px;
            display: inline-block;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
        }

        .news-article:hover .read-more {
            border-bottom-color: #003d82;
        }

        /* Location Info Bar */
        .location-bar {
            background: #003d82;
            color: white;
            padding: 20px 40px;
            text-align: center;
            border-bottom: 3px solid #0059b3;
        }

        .location-bar-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .location-item {
            font-size: 18px;
            font-weight: 700;
        }

        /* Schedule Box */
        .schedule-box {
            background: white;
            border: 2px solid #003d82;
            border-radius: 8px;
            padding: 40px;
            max-width: 600px;
            margin: 0 auto;
            box-shadow: 0 8px 30px rgba(0, 61, 130, 0.2);
            text-align: center;
        }

        .schedule-box h3 {
            font-family: 'Playfair Display', serif;
            color: #003d82;
            font-size: 28px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .schedule-box .schedule-date {
            color: #5a6c7d;
            font-size: 18px;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .schedule-box .schedule-divider {
            border-top: 2px solid #e0e7ef;
            padding-top: 25px;
        }

        .schedule-box .schedule-note {
            color: #5a6c7d;
            font-size: 16px;
            font-style: italic;
        }

        /* Membership Price */
        .membership-price-box {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px solid #e0e7ef;
        }

        .membership-price {
            font-size: 32px;
            color: #003d82;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
        }

        .membership-label {
            color: #5a6c7d;
            font-size: 14px;
            margin-top: 5px;
        }

        /* Contact Cards */
        .contact-icon {
            font-size: 48px;
            margin-bottom: 15px;
            text-align: center;
        }

        .text-center {
            text-align: center;
        }

        /* Team Cards */
        .team-icon {
            font-size: 60px;
            margin-bottom: 15px;
        }

        .team-name {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            color: #003d82;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .team-description {
            color: #5a6c7d;
            font-size: 15px;
            line-height: 1.6;
        }

        .team-meta {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 2px solid #e0e7ef;
        }

        .team-trait {
            color: #003d82;
            font-weight: 700;
            margin: 5px 0;
        }

        .team-detail {
            color: #5a6c7d;
            font-size: 14px;
        }

        /* Map Container */
        .map-container {
            width: 100%;
            height: 400px;
            border-radius: 8px;
            border: 2px solid #003d82;
        }

        /* Hero Variations */
        .hero-compact {
            padding: 80px 40px;
        }

        /* News Loading Container */
        .news-loading {
            margin: 30px 0;
            text-align: left;
        }

        .loading-text {
            text-align: center;
            padding: 20px;
            color: #5a6c7d;
        }
