* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            color: #1e2a3e;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* Typography */
        h1, h2, h3 {
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        h1 {
            font-size: 3.2rem;
            line-height: 1.2;
        }

        h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        .section {
            padding: 80px 0;
        }

        .section-light {
            background-color: #ffffff;
        }

        .section-alt {
            background-color: #f8fafc;
        }

        .section-accent {
            background-color: #0a2b3e;
            color: white;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #c47b2e;
            color: white;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.25s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-outline {
            background-color: transparent;
            border: 1.5px solid #c47b2e;
            color: #c47b2e;
        }

        .btn-outline:hover {
            background-color: #c47b2e;
            color: white;
        }

        .btn-light {
            background-color: white;
            color: #0a2b3e;
        }

        .btn-light:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
        }

        .btn:hover {
            background-color: #a5631f;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        /* Navbar with Logo */
        .navbar {
            padding: 16px 0;
            background: white;
            box-shadow: 0 2px 12px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: rgba(255,255,255,0.98);
        }

        .nav-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-img {
            height: 48px;
            width: auto;
            object-fit: contain;
        }

        .logo-text {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .logo-text span {
            color: #c47b2e;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #2c3e4e;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: #c47b2e;
        }

        /* Hero Section */
        .hero {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
            justify-content: space-between;
        }

        .hero-content {
            flex: 1;
        }

        .hero-badge {
            background: #fef3e2;
            display: inline-block;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #c47b2e;
            margin-bottom: 24px;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #4a5b6b;
            margin: 24px 0 32px 0;
            max-width: 90%;
        }

        .hero-stats {
            display: flex;
            gap: 32px;
            margin-top: 32px;
        }

        .stat {
            text-align: left;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #c47b2e;
        }

        .hero-image {
            flex: 1;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
        }

        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        /* Stats Bar */
        .stats-bar {
            background: #0a2b3e;
            padding: 48px 0;
            color: white;
        }

        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 32px;
            text-align: center;
        }

        .stats-grid .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #c47b2e;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }

        .service-card {
            background: white;
            border-radius: 24px;
            padding: 32px;
            transition: all 0.25s ease;
            border: 1px solid #eef2f8;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
            border-color: #c47b2e30;
        }

        .service-icon {
            font-size: 2.5rem;
            color: #c47b2e;
            margin-bottom: 20px;
        }

        .service-card h3 {
            margin-bottom: 12px;
            font-size: 1.4rem;
        }

        /* About Section with Gallery */
        .about-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            align-items: center;
        }

        .about-content {
            flex: 1;
        }

        .about-image {
            flex: 1;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .feature-list {
            margin-top: 24px;
        }

        .feature-list li {
            list-style: none;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .feature-list i {
            color: #c47b2e;
            font-size: 1.2rem;
        }

        /* Image Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }

        .gallery-item {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 24px -10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.02);
        }

        .gallery-item img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        /* Locations */
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .location-card {
            background: white;
            padding: 24px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid #eef2f8;
            transition: all 0.2s;
        }

        .location-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px -8px rgba(0,0,0,0.1);
        }

        .location-card i {
            font-size: 2rem;
            color: #c47b2e;
            margin-bottom: 12px;
        }

        .location-card img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 12px;
        }

        /* Team */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }

        .team-card {
            background: white;
            border-radius: 24px;
            padding: 28px;
            text-align: center;
            border: 1px solid #eef2f8;
            transition: all 0.2s;
        }

        .team-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
        }

        .team-avatar {
            width: 130px;
            height: 130px;
            margin: 0 auto 20px;
            border-radius: 100%;
            overflow: hidden;
            box-shadow: 0 12px 20px -8px rgba(0,0,0,0.15);
        }

        .team-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Contact Form */
        .contact-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            background: white;
            border-radius: 32px;
            padding: 48px;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
            border: 1px solid #eef2f8;
        }

        .contact-info {
            flex: 1;
        }

        .contact-form {
            flex: 1;
        }

        .form-group {
            margin-bottom: 20px;
        }

        input, textarea, select {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            font-family: inherit;
            font-size: 1rem;
            transition: 0.2s;
        }

        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #c47b2e;
            box-shadow: 0 0 0 3px rgba(196,123,46,0.1);
        }

        .info-line {
            display: flex;
            align-items: center;
            margin: 24px 0;
        }

        .info-line i {
            color: #c47b2e;
            width: 32px;
            font-size: 1.2rem;
        }

        /* Footer - Enhanced Layout */
        footer {
            background: #0a2b3e;
            color: #cddfea;
            padding: 60px 0 24px;
        }

        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-col {
            flex: 1;
            min-width: 180px;
        }

        .footer-col h4 {
            color: white;
            margin-bottom: 24px;
            font-size: 1.1rem;
            font-weight: 600;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: #c47b2e;
        }

        .footer-col a {
            color: #cddfea;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: color 0.2s, transform 0.2s;
        }

        .footer-col a:hover {
            color: #c47b2e;
            transform: translateX(4px);
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .footer-logo-img {
            height: 45px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        .footer-logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
        }

        .footer-logo-text span {
            color: #c47b2e;
        }

        .footer-description {
            margin-top: 16px;
            line-height: 1.6;
            opacity: 0.85;
        }

        .social-icons {
            display: flex;
            gap: 16px;
            margin-top: 24px;
        }

        .social-icons i {
            font-size: 1.3rem;
            cursor: pointer;
            transition: all 0.2s;
            color: #cddfea;
        }

        .social-icons i:hover {
            color: #c47b2e;
            transform: translateY(-3px);
        }

        .newsletter-form {
            display: flex;
            gap: 8px;
            margin-top: 16px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 16px;
            border: none;
            border-radius: 40px;
            background: #1e4a6b;
            color: white;
            font-size: 0.9rem;
        }

        .newsletter-input::placeholder {
            color: #b0c4de;
        }

        .newsletter-btn {
            background: #c47b2e;
            border: none;
            border-radius: 40px;
            padding: 0 20px;
            color: white;
            cursor: pointer;
            transition: background 0.2s;
        }

        .newsletter-btn:hover {
            background: #a5631f;
        }

        .copyright {
            text-align: center;
            padding-top: 32px;
            border-top: 1px solid #255f7a;
            font-size: 0.85rem;
            opacity: 0.8;
        }

        .form-message {
            margin-top: 16px;
            padding: 12px;
            border-radius: 16px;
            display: none;
        }

        .form-message.success {
            background: #e6f7e6;
            color: #2e7d32;
            display: block;
        }

        .form-message.error {
            background: #fee;
            color: #c62828;
            display: block;
        }

        @media (max-width: 800px) {
            .container {
                padding: 0 24px;
            }
            h1 {
                font-size: 2.2rem;
            }
            .nav-links {
                gap: 20px;
                margin-top: 12px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .nav-flex {
                flex-direction: column;
                gap: 12px;
            }
            .section {
                padding: 60px 0;
            }
            .contact-wrapper {
                padding: 28px;
            }
            .footer-grid {
                flex-direction: column;
                gap: 32px;
            }
            .footer-col h4::after {
                left: 0;
                right: auto;
            }
        }