        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: #2d3748;
            line-height: 1.6;
            background: #fafafa;
        }

        .nav {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #e2e8f0;
            z-index: 100;
            padding: 1rem 0;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a202c;
            letter-spacing: -0.02em;
        }

        .cta-btn {
            background: #2c5282;
            color: white;
            padding: 0.75rem 1.75rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .cta-btn:hover {
            background: #2a4365;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(44, 82, 130, 0.2);
        }

        .hero {
            position: relative;
            height: 90vh;
            min-height: 600px;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 32, 44, 0.85) 0%, rgba(45, 55, 72, 0.75) 50%, rgba(26, 32, 44, 0.4) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            color: white;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
            max-width: 800px;
        }

        .hero p {
            font-size: 1.35rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            max-width: 600px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.95);
        }

        .section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 6rem 2rem;
        }

        .intro {
            background: white;
            padding: 5rem 2rem;
        }

        .intro-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .intro h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .intro p {
            font-size: 1.15rem;
            color: #4a5568;
            line-height: 1.8;
            font-weight: 300;
        }

        .services {
            background: #fafafa;
        }

        .section-title {
            font-size: 2.75rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 4rem;
            color: #1a202c;
            letter-spacing: -0.02em;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .service-card {
            position: relative;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-4px);
        }

        .service-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover img {
            transform: scale(1.05);
        }

        .service-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(26, 32, 44, 0.95), rgba(26, 32, 44, 0.3));
            padding: 2rem;
            color: white;
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .service-card p {
            font-size: 0.95rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.9);
        }

        .trust-section {
            background: white;
            padding: 6rem 2rem;
        }

        .trust-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .trust-text h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .trust-text p {
            font-size: 1.1rem;
            color: #4a5568;
            line-height: 1.8;
            margin-bottom: 1rem;
            font-weight: 300;
        }

        .trust-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .trust-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .areas {
            background: #fafafa;
            text-align: center;
        }

        .areas-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .area-tag {
            background: white;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 500;
            color: #2d3748;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .contact-section {
            background: white;
            padding: 6rem 2rem;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .contact-info p {
            font-size: 1.1rem;
            color: #4a5568;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .contact-detail {
            margin-bottom: 1.5rem;
        }

        .contact-detail strong {
            display: block;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #718096;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .contact-detail a {
            font-size: 1.25rem;
            color: #2c5282;
            text-decoration: none;
            font-weight: 500;
        }

        .contact-detail a:hover {
            color: #2a4365;
        }

        .contact-form {
            background: #fafafa;
            padding: 2.5rem;
            border-radius: 12px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.85rem;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            background: white;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2c5282;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            background: #2c5282;
            color: white;
            padding: 1rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #2a4365;
            transform: translateY(-1px);
        }

        footer {
            background: #1a202c;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            padding: 2rem;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section {
                padding: 4rem 1.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .trust-content,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .nav-container {
                padding: 0 1rem;
            }

            .logo {
                font-size: 1.2rem;
            }

            .cta-btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.85rem;
            }
        }