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

        :root {
            --primary-color: #c9a84c;
            --secondary-color: #0a1628;
            --accent-color: #c9a84c;
            --text-dark: #0a1628;
            --text-light: #4a5568;
            --bg-light: #f7f6f3;
            --bg-white: #ffffff;
            --border-color: #e2e0d8;
            --navy: #0a1628;
            --gold: #c9a84c;
            --gold-light: #d4b85c;
            --gold-dark: #a8893e;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-white);
        }

        /* Navigation */
        nav {
            background-color: #0a1628;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0.75rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 48px;
            height: 48px;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .logo-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: #c9a84c;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }

        .logo-sub {
            font-size: 0.65rem;
            color: rgba(201, 168, 76, 0.7);
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.75);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            letter-spacing: 0.02em;
        }

        .nav-links a:hover {
            color: #c9a84c;
        }

        .nav-cta {
            background-color: #c9a84c !important;
            color: #0a1628 !important;
            padding: 0.5rem 1.25rem;
            border-radius: 0.4rem;
            font-weight: 600 !important;
            transition: all 0.3s ease !important;
        }

        .nav-cta:hover {
            background-color: #d4b85c !important;
            color: #0a1628 !important;
        }

        @media (max-width: 768px) {
            .nav-links {
                gap: 1rem;
                font-size: 0.85rem;
            }

            .logo-name {
                font-size: 0.9rem;
            }

            .logo-sub {
                font-size: 0.55rem;
            }

            .logo-icon {
                width: 38px;
                height: 38px;
            }

            .nav-cta {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                flex-direction: column;
                gap: 0.75rem;
                padding: 0.75rem 1rem;
            }

            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.75rem;
            }
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0a1628 0%, #162544 100%);
            color: white;
            padding: 5rem 2rem;
            min-height: 600px;
            display: flex;
            align-items: center;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--gold);
            color: var(--navy);
            padding: 0.85rem 2rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background-color: var(--gold-light);
            transform: translateY(-2px);
        }

        .cta-button.secondary {
            background-color: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
        }

        .cta-button.secondary:hover {
            background-color: rgba(201, 168, 76, 0.15);
        }

        .hero-image {
            width: 100%;
            height: 500px;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

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

            .hero-image {
                height: 300px;
            }

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

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

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Section Styling */
        section {
            padding: 4rem 2rem;
        }

        section:not(.hero):not(.stats):not(.newsletter) {
            border-bottom: 1px solid var(--border-color);
        }

        section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 3rem;
        }

        /* About Section */
        .about {
            background-color: white;
            padding: 4rem 2rem;
        }

        .about-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content {
            padding: 0;
        }

        .about-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        .about-content h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .about-content p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .about-brands {
            display: flex;
            gap: 2rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .about-brands p {
            margin: 0;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .about-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background-color: var(--navy);
            color: var(--gold);
            text-decoration: none;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--navy);
        }

        .about-cta:hover {
            background-color: var(--gold);
            color: var(--navy);
            border-color: var(--gold);
        }

        .about-image {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .about-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-content h2 {
                font-size: 1.8rem;
            }

            .about-image {
                height: 300px;
            }

            .about-brands {
                gap: 1rem;
            }
        }

        /* Ventures/Services Grid */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .card {
            background-color: white;
            border: 1px solid var(--border-color);
            border-radius: 0.75rem;
            padding: 2rem;
            transition: all 0.3s ease;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .card:hover {
            border-color: var(--gold);
            box-shadow: 0 8px 24px rgba(201, 168, 76, 0.15);
            transform: translateY(-4px);
        }

        .card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
        }

        .card p {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Ventures Section */
        .ventures-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        .ventures-section {
            background-color: #e8e4da;
            padding: 5rem 2rem;
        }

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

        .ventures-container h2 {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 1rem;
        }

        .ventures-intro {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .ventures-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr;
            gap: 1.5rem;
        }

        .venture-card {
            border-radius: 1rem;
            overflow: hidden;
            min-height: 400px;
            position: relative;
            background-size: cover;
            background-position: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .venture-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        }

        .venture-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            transition: opacity 0.3s ease;
        }

        .venture-1::before {
            background: linear-gradient(180deg, rgba(180, 160, 50, 0.7) 0%, rgba(120, 100, 20, 0.85) 100%);
        }

        .venture-2::before {
            background: linear-gradient(180deg, rgba(20, 140, 140, 0.75) 0%, rgba(10, 100, 110, 0.9) 100%);
        }

        .venture-3::before {
            background: linear-gradient(180deg, rgba(160, 120, 70, 0.7) 0%, rgba(100, 70, 40, 0.85) 100%);
        }

        .venture-content {
            position: relative;
            z-index: 2;
            padding: 2rem;
            color: white;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .venture-spacer {
            flex: 1;
        }

        .venture-badge {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(4px);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 0.4rem;
            font-size: 0.8rem;
            font-weight: 600;
            width: fit-content;
        }

        .venture-icon {
            margin-bottom: 0.25rem;
        }

        .venture-card h3 {
            font-size: 1.7rem;
            margin-bottom: 0.75rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .venture-card p {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 1.25rem;
            line-height: 1.5;
        }

        .venture-btns {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .venture-btn-filled {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(4px);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 0.4rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .venture-btn-filled:hover {
            background-color: rgba(255, 255, 255, 0.35);
        }

        .venture-btn-arrow {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .venture-btn-arrow:hover {
            transform: translateX(4px);
            display: inline-block;
        }

        /* Venture Card Backgrounds */
        .venture-1 {
            background-color: #8b7f3e;
            background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=600&h=500&fit=crop');
        }

        .venture-2 {
            background-color: #0d7d7d;
            background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85f82e?w=500&h=500&fit=crop');
        }

        .venture-3 {
            background-color: #8b6f47;
            background-image: url('https://images.unsplash.com/photo-1497032628192-86f99bcd76bc?w=500&h=500&fit=crop');
        }

        @media (max-width: 968px) {
            .ventures-grid {
                grid-template-columns: 1fr;
            }

            .venture-card {
                min-height: 350px;
            }
        }

        @media (max-width: 768px) {
            .ventures-container h2 {
                font-size: 2rem;
            }

            .venture-card {
                min-height: 300px;
            }

            .venture-card h3 {
                font-size: 1.4rem;
            }
        }

        /* Stats Section */
        .stats {
            background-color: white;
            padding: 5rem 2rem;
        }

        .stats-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: flex-start;
        }

        .stats-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        .stats-content h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: var(--text-dark);
        }

        .stats-content p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .stats-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background-color: var(--navy);
            color: var(--gold);
            text-decoration: none;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--navy);
        }

        .stats-cta:hover {
            background-color: var(--gold);
            color: var(--navy);
            border-color: var(--gold);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .stat-item {
            background-color: white;
            border: 1px solid var(--border-color);
            border-radius: 0.75rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            border-color: var(--gold);
            box-shadow: 0 4px 12px rgba(201, 168, 76, 0.2);
        }

        .stat-label {
            font-size: 0.95rem;
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .stat-item h4 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .stat-item p {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .stats-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .stats-content h2 {
                font-size: 2rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

/* Newsletter Section */
        .newsletter {
            background: linear-gradient(135deg, #0a1628 0%, #162544 100%);
            color: white;
            padding: 5rem 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 500px;
        }

        .newsletter-container {
            max-width: 700px;
            width: 100%;
            text-align: center;
            border: 1px solid rgba(201, 168, 76, 0.3);
            border-radius: 1rem;
            padding: 4rem 3rem;
        }

        .newsletter-container h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .newsletter-container > p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .newsletter-form input {
            flex: 1;
            min-width: 250px;
            padding: 0.85rem 1.2rem;
            border: none;
            border-radius: 0.5rem;
            font-size: 1rem;
            background-color: rgba(255, 255, 255, 0.95);
            color: var(--text-dark);
        }

        .newsletter-form input::placeholder {
            color: #9ca3af;
        }

        .newsletter-form input:focus {
            outline: none;
            background-color: white;
            box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.3);
        }

        .newsletter-form button {
            padding: 0.85rem 2rem;
            background-color: var(--gold);
            color: var(--navy);
            border: none;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .newsletter-form button:hover {
            background-color: var(--gold-light);
            transform: translateY(-2px);
        }

        .newsletter-disclaimer {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .newsletter {
                padding: 3rem 1.5rem;
                min-height: auto;
            }

            .newsletter-container {
                padding: 2rem 1.5rem;
            }

            .newsletter-container h2 {
                font-size: 1.8rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input,
            .newsletter-form button {
                width: 100%;
            }
        }

        /* Contact Section */
        .contact {
            background-color: white;
            padding: 5rem 2rem 4rem;
            border-bottom: 3px solid var(--gold);
        }

        .contact-label {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }

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

        .contact-container h2 {
            font-size: 2.8rem;
            margin-bottom: 1.25rem;
            line-height: 1.15;
            color: var(--text-dark);
        }

        .contact-intro {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 0;
            line-height: 1.7;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 3.5rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
        }

        .contact-method {
            text-align: left;
        }

        .contact-icon-svg {
            margin-bottom: 1.25rem;
            color: var(--text-dark);
        }

        .contact-method h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
            font-weight: 700;
        }

        .contact-method p {
            color: var(--text-light);
            margin-bottom: 0.5rem;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .contact-method a.contact-value {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            display: block;
            margin-top: 0.75rem;
            font-size: 0.95rem;
        }

        .contact-method a.contact-value:hover {
            color: var(--gold);
        }

        .contact-method p.contact-value {
            font-weight: 500;
            color: var(--text-dark);
            margin-top: 0.75rem;
            font-size: 0.95rem;
        }

        @media (max-width: 768px) {
            .contact-container h2 {
                font-size: 2rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
        }

        /* Services Section */
        .services-section {
            background-color: white;
            padding: 5rem 2rem;
        }

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

        .services-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-align: center;
            margin-bottom: 1rem;
        }

        .services-container h2 {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 1rem;
        }

        .services-intro {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 3rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: auto auto;
            gap: 1.5rem;
        }

        .service-link {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
            display: inline-block;
        }

        .service-link:hover {
            color: var(--gold);
        }

        .svc-tag {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.75rem;
            display: block;
        }

        .svc-icon {
            display: block;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        /* Row 1 Left: Combined text + image card */
        .svc-combined-card {
            grid-column: 1 / 3;
            grid-row: 1;
            display: flex;
            border: 1px solid var(--border-color);
            border-radius: 0.75rem;
            overflow: hidden;
            background: white;
            transition: all 0.3s ease;
        }

        .svc-combined-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        .svc-combined-text {
            flex: 1;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .svc-combined-text h3 {
            font-size: 1.5rem;
            line-height: 1.3;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
        }

        .svc-combined-text p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .svc-combined-img {
            flex: 0 0 45%;
            overflow: hidden;
        }

        .svc-combined-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .svc-combined-card:hover .svc-combined-img img {
            transform: scale(1.05);
        }

        /* Row 1 Right: Big text card */
        .svc-big-text-card {
            grid-column: 3 / 5;
            grid-row: 1;
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 0.75rem;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.3s ease;
        }

        .svc-big-text-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        .svc-big-text-card h3 {
            font-size: 2.2rem;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .svc-big-text-card p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-size: 1.05rem;
        }

        .svc-btn-group {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .svc-btn-outline {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            border: 2px solid var(--border-color);
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .svc-btn-outline:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .service-link:hover {
            color: var(--gold);
        }

        /* Row 2 Left: Small text cards */
        .svc-small-card {
            grid-column: span 1;
            grid-row: 2;
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 0.75rem;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.3s ease;
        }

        .svc-small-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        .svc-small-card h3 {
            font-size: 1.3rem;
            line-height: 1.3;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
        }

        .svc-small-card p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        /* Row 2 Right: Big image card */
        .svc-big-img-card {
            grid-column: 3 / 5;
            grid-row: 2;
            border-radius: 0.75rem;
            overflow: hidden;
            min-height: 320px;
            transition: all 0.3s ease;
        }

        .svc-big-img-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        .svc-big-img-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .svc-big-img-card:hover img {
            transform: scale(1.05);
        }

        @media (max-width: 968px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .svc-combined-card,
            .svc-big-text-card,
            .svc-small-card,
            .svc-big-img-card {
                grid-column: 1 !important;
                grid-row: auto !important;
            }

            .svc-combined-card {
                flex-direction: column;
            }

            .svc-combined-img {
                flex: 0 0 200px;
            }

            .svc-big-text-card h3 {
                font-size: 1.5rem;
            }

            .svc-big-img-card {
                min-height: 250px;
            }

            .services-container h2 {
                font-size: 2rem;
            }
        }

        /* Footer */
        footer {
            background-color: var(--navy);
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            padding: 2.5rem 2rem;
        }

        footer p:first-child {
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                gap: 1rem;
                font-size: 0.9rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            section {
                padding: 2rem 1rem;
            }

            section h2 {
                font-size: 1.8rem;
            }

            .grid {
                grid-template-columns: 1fr;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input,
            .newsletter-form button {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-links {
                flex-direction: column;
                gap: 0.5rem;
            }

            .hero h1 {
                font-size: 1.5rem;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
