    :root {
        --primary: #1e3a8a; /* Deep Navy */
        --primary-light: #3b82f6;
        --accent: #C5A065; /* Warm Gold */
        --accent-hover: #b08d55;
        --text-dark: #1f2937;
        --text-light: #6b7280;
        --bg-light: #f9fafb;
        --bg-white: #ffffff;
        --radius: 16px;
        --shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
        --shadow-hover: 0 20px 40px -10px rgba(0,0,0,0.12);
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Nunito', sans-serif;
        color: var(--text-dark);
        line-height: 1.6;
        background-color: var(--bg-light);
    }

    h1, h2, h3, h4 {
        font-family: 'Playfair Display', serif;
        color: var(--primary);
        line-height: 1.2;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: 0.3s ease;
    }

    ul {
        list-style: none;
    }

    img {
        max-width: 100%;
        display: block;
        border-radius: var(--radius);
    }

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

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 14px 28px;
        border-radius: 50px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .btn-primary {
        background-color: var(--accent);
        color: #fff;
    }

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

    .btn-secondary {
        background-color: transparent;
        border: 2px solid var(--primary);
        color: var(--primary);
    }

    .btn-secondary:hover {
        background-color: var(--primary);
        color: #fff;
    }

    .btn-outline {
        border: 2px solid var(--accent);
        color: var(--accent);
    }

    .btn-outline:hover {
        background-color: var(--accent);
        color: #fff;
    }

    .btn-full {
        width: 100%;
        text-align: center;
    }

    /* Eyebrow Text */
    .eyebrow {
        display: block;
        text-transform: uppercase;
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--accent);
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    /* Navigation */
    .navbar {
        background-color: var(--bg-white);
        padding: 20px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }

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

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 1.2rem;
        color: var(--primary);
    }

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

    .nav-links a:not(.btn) {
        font-weight: 600;
        color: var(--text-dark);
    }

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

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

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--primary);
        border-radius: 2px;
    }

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

    .hero-bg-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(30, 58, 138, 0.8) 100%);
        z-index: 1;
    }

    .hero-container {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        padding: 80px 24px;
    }

    .hero-content h1 {
        color: #fff;
        font-size: 3.5rem;
        margin-bottom: 24px;
    }

    .hero-content p {
        color: rgba(255,255,255,0.9);
        font-size: 1.2rem;
        margin-bottom: 32px;
        max-width: 500px;
    }

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

    .hero-image-wrapper {
        position: relative;
    }

    .hero-image-wrapper img {
        border-radius: 24px;
        box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .floating-card {
        position: absolute;
        bottom: -20px;
        left: -20px;
        background-color: var(--bg-white);
        padding: 16px 24px;
        border-radius: 16px;
        box-shadow: var(--shadow);
        font-weight: 700;
        color: var(--primary);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .floating-card::before {
        content: '';
        display: block;
        width: 12px;
        height: 12px;
        background-color: #10b981;
        border-radius: 50%;
    }

    /* Services Section */
    .services {
        padding: 100px 0;
        background-color: var(--bg-light);
    }

    .section-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 60px;
    }

    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }

    .section-header p {
        color: var(--text-light);
        font-size: 1.1rem;
    }

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

    .service-card {
        background-color: var(--bg-white);
        padding: 40px 30px;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        transition: all 0.3s ease;
        border-bottom: 4px solid transparent;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-hover);
        border-bottom-color: var(--accent);
    }

    .icon-box {
        width: 60px;
        height: 60px;
        background-color: rgba(197, 160, 101, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        margin-bottom: 24px;
    }

    .icon-box.small {
        width: 40px;
        height: 40px;
        background-color: rgba(30, 58, 138, 0.1);
        color: var(--primary);
        margin-bottom: 12px;
    }

    .service-card h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .service-card p {
        color: var(--text-light);
    }

    /* About Section */
    .about {
        padding: 100px 0;
        background-color: var(--bg-white);
    }

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

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 24px;
        box-shadow: var(--shadow);
    }

    .about-content h2 {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }

    .about-content p {
        color: var(--text-light);
        margin-bottom: 20px;
        font-size: 1.05rem;
    }

    .check-list {
        margin: 32px 0;
    }

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

    .check-list li::before {
        content: '';
        display: block;
        width: 20px;
        height: 20px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C5A065'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
    }

    /* Contact Section */
    .contact {
        padding: 100px 0;
        background-color: var(--primary);
        color: #fff;
    }

    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .contact-info h2 {
        color: #fff;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .contact-info > p {
        color: rgba(255,255,255,0.8);
        margin-bottom: 40px;
        font-size: 1.1rem;
    }

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

    .info-item strong {
        display: block;
        font-size: 1.1rem;
        margin-bottom: 4px;
        color: var(--accent);
    }

    .info-item p {
        color: rgba(255,255,255,0.9);
        margin: 0;
    }

    .info-item a {
        color: rgba(255,255,255,0.9);
        text-decoration: underline;
        text-underline-offset: 4px;
    }

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

    .contact-form-wrapper {
        background-color: var(--bg-white);
        padding: 40px;
        border-radius: var(--radius);
        color: var(--text-dark);
        box-shadow: var(--shadow);
    }

    .contact-form h3 {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }

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

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

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        font-family: inherit;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

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

    .success-message {
        text-align: center;
        padding: 40px 20px;
    }

    .success-message svg {
        margin: 0 auto 20px;
    }

    .success-message h4 {
        font-size: 1.5rem;
        margin-bottom: 12px;
        color: var(--primary);
    }

    .success-message p {
        color: var(--text-light);
    }

    /* Footer */
    footer {
        background-color: #111827;
        color: #fff;
        padding: 60px 0 20px;
    }

    .footer-container {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .logo-footer {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    .footer-col h4 {
        color: var(--accent);
        font-family: 'Nunito', sans-serif;
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .footer-col ul li {
        margin-bottom: 10px;
    }

    .footer-col ul li a {
        color: rgba(255,255,255,0.7);
    }

    .footer-col ul li a:hover {
        color: var(--accent);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 20px;
        text-align: center;
        color: rgba(255,255,255,0.5);
        font-size: 0.9rem;
    }

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

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

        .hero {
            min-height: auto;
            padding: 60px 0;
        }

        .nav-links {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background-color: var(--bg-white);
            flex-direction: column;
            padding: 40px 24px;
            box-shadow: var(--shadow);
            transform: translateY(-150%);
            transition: transform 0.3s ease;
            z-index: 999;
        }

        .nav-links.active {
            transform: translateY(0);
        }

        .mobile-menu-btn {
            display: flex;
        }

        .footer-container {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .logo-footer {
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .hero-content h1 {
            font-size: 2rem;
        }

        .hero-buttons {
            flex-direction: column;
        }

        .btn {
            width: 100%;
            text-align: center;
        }
    }
