    :root {
        --navy: #0A192F;
        --navy-light: #112240;
        --gold: #D4AF37;
        --gold-light: #F3E5AB;
        --white: #ffffff;
        --off-white: #f8f9fa;
        --gray: #8892b0;
        --text-dark: #1a1a1a;
        --transition: all 0.3s ease;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Open Sans', sans-serif;
        color: var(--text-dark);
        background-color: var(--off-white);
        overflow-x: hidden;
        line-height: 1.6;
    }

    h1, h2, h3, h4, .logo, .btn {
        font-family: 'Montserrat', sans-serif;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    ul {
        list-style: none;
    }

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

    .gold-text {
        color: var(--gold);
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 14px 32px;
        font-weight: 600;
        border-radius: 4px;
        transition: var(--transition);
        cursor: pointer;
        font-size: 1rem;
        border: 2px solid transparent;
    }

    .btn-primary {
        background-color: var(--gold);
        color: var(--navy);
    }

    .btn-primary:hover {
        background-color: #b5952f;
        transform: translateY(-2px);
    }

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

    .btn-outline:hover {
        background-color: var(--white);
        color: var(--navy);
    }

    .btn-full {
        width: 100%;
    }

    /* Background Shapes */
    .bg-shape {
        position: fixed;
        z-index: -1;
        opacity: 0.05;
        pointer-events: none;
    }

    .shape-1 {
        top: -100px;
        right: -100px;
        width: 500px;
        height: 500px;
        background: var(--gold);
        border-radius: 50%;
    }

    .shape-2 {
        bottom: 20%;
        left: -150px;
        width: 600px;
        height: 600px;
        background: var(--navy);
        clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    }

    .shape-3 {
        top: 40%;
        right: 10%;
        width: 300px;
        height: 300px;
        background: var(--gold);
        transform: rotate(45deg);
    }

    /* Header */
    header {
        background-color: var(--navy);
        padding: 20px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

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

    .logo {
        color: var(--white);
        font-size: 1.5rem;
        font-weight: 800;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo-icon {
        color: var(--gold);
    }

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

    .nav-links a:not(.btn) {
        color: var(--white);
        font-weight: 600;
        font-size: 0.95rem;
        transition: var(--transition);
    }

    .nav-links a:not(.btn):hover {
        color: var(--gold);
    }

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 6px;
    }

    .mobile-menu-btn span {
        display: block;
        width: 30px;
        height: 3px;
        background-color: var(--white);
        transition: var(--transition);
    }

    /* Hero Section */
    .hero {
        background-color: var(--navy);
        color: var(--white);
        padding: 80px 0;
        min-height: 85vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 4rem;
        line-height: 1.1;
        margin-bottom: 24px;
        font-weight: 800;
    }

    .hero-sub {
        font-size: 1.2rem;
        color: var(--gray);
        margin-bottom: 40px;
        max-width: 500px;
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
    }

    .hero-visual {
        position: relative;
        height: 500px;
    }

    .visual-card {
        position: absolute;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .card-1 {
        width: 320px;
        height: 420px;
        top: 0;
        right: 0;
        z-index: 1;
    }

    .card-2 {
        width: 200px;
        height: 140px;
        bottom: 40px;
        left: 0;
        z-index: 2;
        background-color: var(--gold);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy);
        flex-direction: column;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        font-family: 'Montserrat', sans-serif;
    }

    .stat-label {
        font-size: 0.9rem;
        font-weight: 600;
        text-align: center;
    }

    /* Section Styles */
    .section {
        padding: 100px 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-tag {
        display: block;
        color: var(--gold);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 2.5rem;
        color: var(--navy);
        margin-bottom: 20px;
        font-weight: 800;
    }

    /* About Section */
    .about-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .about-image {
        position: relative;
    }

    .about-image img {
        width: 100%;
        border-radius: 8px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .accent-box {
        position: absolute;
        bottom: -30px;
        right: -30px;
        width: 200px;
        height: 200px;
        background-color: var(--navy);
        z-index: -1;
        border-radius: 8px;
    }

    .about-text p {
        margin-bottom: 20px;
        color: #555;
    }

    .check-list {
        margin-top: 30px;
    }

    .check-list li {
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        color: var(--navy);
    }

    .check-list li::before {
        content: '';
        width: 12px;
        height: 12px;
        background-color: var(--gold);
        display: inline-block;
        border-radius: 50%;
    }

    /* Services Section */
    .services {
        background-color: var(--off-white);
    }

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

    .service-card {
        background: var(--white);
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: var(--transition);
        border-bottom: 4px solid transparent;
    }

    .service-card:hover {
        transform: translateY(-10px);
        border-bottom-color: var(--gold);
    }

    .highlight-card {
        border-bottom: 4px solid var(--navy);
        background-color: var(--navy);
        color: var(--white);
    }

    .highlight-card h3, .highlight-card p {
        color: var(--white);
    }

    .highlight-card:hover {
        border-bottom-color: var(--gold);
    }

    .icon-box {
        width: 60px;
        height: 60px;
        background-color: rgba(212, 175, 55, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        margin-bottom: 25px;
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--navy);
    }

    .service-card p {
        color: #666;
        line-height: 1.7;
    }

    /* Benefits Section */
    .benefits {
        background-color: var(--navy);
        color: var(--white);
        position: relative;
    }

    .benefits-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .benefits-content h2 {
        color: var(--white);
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .benefits-content p {
        color: var(--gray);
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .benefit-item {
        margin-bottom: 30px;
    }

    .benefit-num {
        font-size: 3rem;
        font-weight: 800;
        color: var(--gold);
        opacity: 0.5;
        line-height: 1;
        margin-bottom: 5px;
        font-family: 'Montserrat', sans-serif;
    }

    .benefit-item h4 {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }

    .benefit-item p {
        margin-bottom: 0;
        font-size: 1rem;
    }

    .benefits-visual img {
        width: 100%;
        border-radius: 8px;
        box-shadow: -20px 20px 0 var(--gold);
    }

    /* Contact Section */
    .contact {
        background-color: var(--off-white);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        background: var(--white);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    }

    .contact-info {
        padding: 60px;
        background-color: var(--navy);
        color: var(--white);
    }

    .contact-info .section-tag {
        text-align: left;
    }

    .contact-info .section-title {
        color: var(--white);
        text-align: left;
    }

    .contact-desc {
        color: var(--gray);
        margin-bottom: 40px;
    }

    .info-item {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
    }

    .info-item .icon {
        width: 50px;
        height: 50px;
        background-color: rgba(212, 175, 55, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        flex-shrink: 0;
    }

    .info-item strong {
        display: block;
        margin-bottom: 5px;
        color: var(--white);
    }

    .info-item p, .info-item a {
        color: var(--gray);
        font-size: 0.95rem;
    }

    .info-item a:hover {
        color: var(--gold);
    }

    .contact-form-wrapper {
        padding: 60px;
    }

    .contact-form h3 {
        font-size: 1.8rem;
        color: var(--navy);
        margin-bottom: 30px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--text-dark);
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 14px;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        font-family: inherit;
        font-size: 1rem;
        transition: var(--transition);
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--gold);
    }

    .form-status {
        margin-top: 15px;
        text-align: center;
        font-weight: 600;
    }

    /* Footer */
    footer {
        background-color: var(--navy-light);
        color: var(--gray);
        padding: 40px 0;
        text-align: center;
    }

    .footer-brand h3 {
        color: var(--white);
        margin-bottom: 10px;
        font-size: 1.5rem;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
        font-size: 0.9rem;
    }

    /* Mobile Responsive */
    @media (max-width: 968px) {
        .hero-container,
        .about-container,
        .benefits-wrapper,
        .contact-grid {
            grid-template-columns: 1fr;
        }

        .hero {
            padding-top: 40px;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 2.8rem;
        }

        .hero-sub {
            margin: 0 auto 30px;
        }

        .hero-buttons {
            justify-content: center;
        }

        .hero-visual {
            display: none;
        }

        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background-color: var(--navy);
            flex-direction: column;
            justify-content: center;
            transition: var(--transition);
            box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        }

        .nav-links.active {
            right: 0;
        }

        .mobile-menu-btn {
            display: flex;
            z-index: 1001;
        }

        .contact-info, .contact-form-wrapper {
            padding: 40px;
        }
        
        .accent-box {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .hero-content h1 {
            font-size: 2.2rem;
        }
        
        .btn {
            width: 100%;
            text-align: center;
        }
        
        .hero-buttons {
            flex-direction: column;
            width: 100%;
        }
    }
