        :root {
            --primary: #015f80;
            --secondary: #00829c;
            --accent: #6abcc7;
            --gold: #caad2a;
            --light-gold: #e6c74f;
            --dark-gold: #a98e1f;
            --light: #f8f9fa;
            --dark: #333333;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --highlight: var(--gold);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #f9f9f9;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            background: var(--highlight);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 14px;
        }
        
        .btn:hover {
            background: linear-gradient(135deg, var(--dark-gold), var(--gold));
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(202, 173, 42, 0.5);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--highlight);
            color: var(--highlight);
        }
        
        .btn-outline:hover {
            background: var(--highlight);
            color: white;
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--highlight);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow);
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .logo img {
            height: 80px;
            width: auto;
            transition: all 0.3s ease;
            padding-top: 10px;
        }

        header.scrolled .logo {
            color: var(--primary);
        }

        .logo span {
            color: var(--gold);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--gold);
        }



header.scrolled nav ul li a {
    color: var(--primary);
}

header.scrolled nav ul li a:hover {
    color: var(--gold);
}
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        .mobile-menu-btn i {
            transition: color 0.3s ease;
        }

        header.menu-open .mobile-menu-btn i {
            color: var(--gold);
        }
        
        /* Hero Section */
        .about-hero {
            position: relative;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .about-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(1, 95, 128, 0.7), rgba(0, 130, 156, 0.8));
            z-index: 2;
        }
        
        .about-hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: white;
            margin-top: 50px;
            max-width: 800px;
            width: 90%;
            padding: 0 20px;
        }
        
        .about-hero-content h1 {
            font-size: 3.5rem;
            margin-top: 1rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .about-hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            font-weight: 300;
        }
        
        /* About Content Styles */
        .about-section {
            padding: 80px 0;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-bottom: 60px;
        }
        
        .about-text {
            padding-right: 20px;
        }
        
        .about-text h2 {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            line-height: 1.8;
            color: #555;
        }
        
        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 400px;
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Features Section */
        .features-section {
            background-color: #f0f8fa;
            padding: 80px 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 28px;
        }
        
        .feature-card h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 22px;
        }
        
        .feature-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Facts Section */
        .facts-section {
            padding: 80px 0;
        }
        
        .facts-container {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 15px;
            padding: 50px;
            color: white;
            box-shadow: var(--shadow);
        }
        
        .facts-container h2 {
            text-align: center;
            margin-bottom: 40px;
            font-size: 32px;
            color: white;
        }
        
        .facts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .fact-item {
            text-align: center;
        }
        
        .fact-item i {
            font-size: 40px;
            color: var(--gold);
            margin-bottom: 15px;
        }
        
        .fact-item h3 {
            margin-bottom: 10px;
            font-size: 20px;
        }
        
        .fact-item p {
            opacity: 0.9;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(1, 95, 128, 0.9), rgba(0, 130, 156, 0.9)), url('https://images.unsplash.com/photo-1539367628448-4bc5c9d171c8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 100px 0;
            text-align: center;
            color: white;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        /* Footer Styles */
        footer {
            background: linear-gradient(to bottom, var(--primary), #014a66);
            color: white;
            padding: 2.5rem 0 1rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

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

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--light-gold);
        }

        .footer-description {
            opacity: 0.9;
            line-height: 1.5;
            margin-bottom: 1.25rem;
            font-size: 0.9rem;
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
            margin-top: auto;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .social-links a:hover {
            background: var(--gold);
            transform: translateY(-2px);
        }

        .footer-col h4 {
            font-family: 'Playfair Display', serif;
            color: var(--light-gold);
            font-size: 1.1rem;
            margin-bottom: 1rem;
            font-weight: 600;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--light-gold);
        }

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

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: block;
            padding: 0.25rem 0;
        }

        .footer-links a:hover {
            color: var(--light-gold);
            transform: translateX(5px);
        }

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }

        .contact-info i {
            color: var(--light-gold);
            margin-top: 0.15rem;
            min-width: 16px;
        }

        .contact-info span {
            opacity: 0.9;
            line-height: 1.4;
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.85rem;
            opacity: 0.8;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .footer-logo {
            text-align: left;
            margin-right: 20px;
        }

        .footer-logo-img {
            max-width: 100px;
            height: auto;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-hero-content h1 {
                font-size: 2.8rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .about-text {
                padding-right: 0;
            }
            
            .features-grid,
            .facts-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 0 15px;
            }
            
            .logo img {
                height: 60px;
                padding-top: 5px;
            }
            
            nav {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(1, 95, 128, 0.98);
                z-index: 1000;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }
            
            nav.active {
                display: flex;
            }
            
            nav ul {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            nav ul li a {
                font-size: 18px;
                padding: 12px 25px;
                display: block;
            }
            
            .mobile-menu-btn {
                display: block;
                z-index: 1001;
                font-size: 28px;
            }
            
            .about-hero {
                height: 50vh;
                min-height: 400px;
            }
            
            .about-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .about-hero-content p {
                font-size: 1rem;
            }
            
            .features-grid,
            .facts-grid {
                grid-template-columns: 1fr;
            }
            
            /* Footer */
            footer {
                padding: 40px 0 20px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            
            .footer-logo {
                text-align: center;
                margin-right: 0;
            }

            .footer-col h4 {
                font-size: 1.7rem;
            }

            .footer-col h4::after {
                display: none;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .contact-info li {
                justify-content: center;
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            .about-hero-content h1 {
                font-size: 1.8rem;
            }
            
            .facts-container {
                padding: 30px 20px;
            }
        }