    :root {
        --charcoal: #2C3E50;
        --charcoal-light: #34495E;
        --coral: #E76F51;
        --coral-dark: #C0563A;
        --off-white: #F8F9FA;
        --white: #FFFFFF;
        --text-dark: #1A1A1A;
        --text-light: #666666;
        --border: #E0E0E0;
        --font-heading: 'Playfair Display', serif;
        --font-body: 'Inter', sans-serif;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-body);
        color: var(--text-dark);
        background-color: var(--white);
        line-height: 1.6;
        font-weight: 300;
    }

    h1, h2, h3, h4 {
        font-family: var(--font-heading);
        font-weight: 600;
        line-height: 1.2;
        color: var(--charcoal);
    }

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

    ul {
        list-style: none;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

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

    /* Typography Utilities */
    .tagline {
        display: block;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--coral);
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .line {
        width: 60px;
        height: 2px;
        background-color: var(--coral);
        margin-top: 1.5rem;
    }

    /* Buttons */
    .btn-primary {
        display: inline-block;
        background-color: var(--coral);
        color: var(--white);
        padding: 14px 32px;
        border-radius: 2px;
        font-weight: 600;
        font-size: 0.95rem;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

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

    .btn-secondary {
        display: inline-block;
        background-color: transparent;
        color: var(--white);
        padding: 14px 32px;
        border: 1px solid var(--white);
        border-radius: 2px;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .btn-secondary:hover {
        background-color: var(--white);
        color: var(--charcoal);
    }

    /* Navigation */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        border-bottom: 1px solid var(--border);
        padding: 1rem 0;
    }

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

    .logo {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--charcoal);
    }

    .logo .accent {
        color: var(--coral);
    }

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

    .nav-links a {
        font-size: 0.95rem;
        color: var(--charcoal);
    }

    .nav-links a:hover {
        color: var(--coral);
    }

    .btn-nav {
        background-color: var(--charcoal);
        color: var(--white) !important;
        padding: 10px 20px;
        border-radius: 2px;
        font-size: 0.9rem !important;
    }

    .btn-nav:hover {
        background-color: var(--coral);
    }

    .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: 2px;
        background-color: var(--charcoal);
        transition: all 0.3s ease;
    }

    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
    }

    .mobile-menu.active {
        transform: translateY(0);
    }

    .mobile-menu a {
        font-size: 1.5rem;
        font-family: var(--font-heading);
        color: var(--charcoal);
    }

    .mobile-menu .btn-primary {
        padding: 16px 40px;
    }

    /* Hero Section */
    .hero {
        position: relative;
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        background-image: url('https://images.pexels.com/photos/474/black-and-white-car-vehicle-vintage.jpg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
        background-size: cover;
        background-position: center;
        margin-top: 0;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(44, 62, 80, 0.6) 100%);
    }

    .hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        color: var(--white);
        margin-bottom: 1.5rem;
        font-weight: 600;
    }

    .hero-sub {
        font-size: clamp(1.1rem, 2vw, 1.4rem);
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 2.5rem;
        max-width: 600px;
        font-weight: 300;
    }

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

    /* Features Section */
    .features {
        padding: 5rem 0;
        background-color: var(--off-white);
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .feature-card {
        background-color: var(--white);
        padding: 2.5rem;
        border-radius: 4px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-5px);
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        color: var(--coral);
        margin-bottom: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        font-family: var(--font-body);
        font-weight: 600;
    }

    .feature-card p {
        color: var(--text-light);
        font-size: 0.95rem;
    }

    /* Services Section */
    .services {
        padding: 6rem 0;
        background-color: var(--white);
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-header h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 0;
    }

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

    .service-item {
        padding: 2rem;
        border: 1px solid var(--border);
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .service-item:hover {
        border-color: var(--coral);
        box-shadow: 0 10px 30px rgba(231, 111, 81, 0.1);
    }

    .service-item h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: var(--charcoal);
        font-family: var(--font-body);
        font-weight: 600;
    }

    .service-item p {
        color: var(--text-light);
        font-size: 0.95rem;
    }

    /* About Section */
    .about {
        padding: 6rem 0;
        background-color: var(--off-white);
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .about-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 4px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .about-content h2 {
        font-size: clamp(2rem, 3vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

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

    .check-list {
        margin-top: 2rem;
    }

    .check-list li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
        color: var(--charcoal);
        font-weight: 500;
    }

    .check-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        background-color: var(--coral);
        border-radius: 50%;
    }

    /* Contact Section */
    .contact {
        padding: 6rem 0;
        background-color: var(--charcoal);
        color: var(--white);
    }

    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .contact h2 {
        color: var(--white);
        font-size: clamp(2rem, 3vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .contact-info p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 2rem;
        font-size: 1.05rem;
    }

    .info-item {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        color: var(--coral);
        flex-shrink: 0;
    }

    .info-item h4 {
        color: var(--white);
        font-size: 1rem;
        margin-bottom: 0.25rem;
        font-family: var(--font-body);
        font-weight: 600;
    }

    .info-item p {
        margin: 0;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
    }

    .info-item a {
        color: rgba(255, 255, 255, 0.7);
    }

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

    .contact-form-wrapper {
        background-color: var(--white);
        padding: 3rem;
        border-radius: 4px;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--charcoal);
        font-weight: 500;
        font-size: 0.9rem;
    }

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

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

    .full-width {
        width: 100%;
    }

    .form-status {
        margin-top: 1rem;
        text-align: center;
        font-weight: 500;
    }

    .form-status.success {
        color: #27ae60;
    }

    .form-status.error {
        color: var(--coral);
    }

    /* Footer */
    .footer {
        background-color: #1a252f;
        color: var(--white);
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

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

    .footer-brand p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
    }

    .footer-links {
        display: flex;
        gap: 2rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
    }

    .footer-links a:hover {
        color: var(--coral);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
        text-align: center;
    }

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.85rem;
    }

    /* Responsive */
    @media (max-width: 968px) {
        .nav-links {
            display: none;
        }

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

        .about-grid,
        .contact-wrapper {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .about-image img {
            height: 300px;
        }

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

        .btn-primary,
        .btn-secondary {
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 0 16px;
        }

        .features,
        .services,
        .about,
        .contact {
            padding: 4rem 0;
        }

        .contact-form-wrapper {
            padding: 2rem;
        }

        .footer-content {
            flex-direction: column;
            text-align: center;
        }

        .footer-links {
            flex-wrap: wrap;
            justify-content: center;
        }
    }
