   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            padding: 15px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .logo {
            display: flex;
            align-items: center;
            color: white;
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            cursor: pointer;
        }

        .logo i {
            font-size: 28px;
            margin-right: 10px;
            color: #1abc9c;
        }

        nav {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #1abc9c;
        }

        .cta-button {
            background: #1abc9c;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            background: #16a085;
        }

        /* Hero Section */
        .hero-services {
            position: relative;
            background: linear-gradient(135deg, #1abc9c, #16a085);
            padding: 80px 50px;
            text-align: center;
            color: white;
            overflow: hidden;
        }

        .hero-services::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .hero-services-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .hero-services > *:not(.hero-services-bg) {
            position: relative;
            z-index: 2;
        }

        .hero-services h1 {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero-services p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Main Content */
        main {
            background: #f5f5f5;
        }

        .service-section {
            padding: 80px 50px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .service-section:nth-child(even) {
            background: white;
        }

        .service-section:nth-child(even) .service-content {
            order: 2;
        }

        .service-section:nth-child(even) .service-image {
            order: 1;
        }

        .service-content h2 {
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .service-icon {
            font-size: 40px;
            color: #1abc9c;
        }

        .service-content h3 {
            font-size: 24px;
            color: #1abc9c;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .service-content p {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 15px;
        }

        .service-content ul {
            list-style: none;
            padding-left: 0;
            margin: 20px 0;
        }

        .service-content li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            color: #555;
        }

        .service-content li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #1abc9c;
            font-weight: bold;
            font-size: 18px;
        }

        .service-image {
            position: relative;
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
            background: linear-gradient(135deg, #1abc9c, #16a085);
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .benefit-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #1abc9c;
        }

        .benefit-card h4 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 18px;
        }

        .benefit-card p {
            font-size: 14px;
            color: #666;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            padding: 80px 50px;
            text-align: center;
            color: white;
        }

        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 30px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 35px;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            font-size: 16px;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
        }

        .btn-primary {
            background: #1abc9c;
            color: white;
        }

        .btn-primary:hover {
            background: #16a085;
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: #1a252f;
            color: white;
            padding: 40px 50px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        footer h4 {
            font-size: 14px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        footer p, footer a {
            font-size: 12px;
            color: #bdc3c7;
            text-decoration: none;
            line-height: 1.8;
        }

        footer a:hover {
            color: #1abc9c;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icons a {
            width: 35px;
            height: 35px;
            background: #1abc9c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            transition: background 0.3s;
        }

        .social-icons a:hover {
            background: #16a085;
        }

        .location-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: 10px;
            color: #1abc9c;
            transition: color 0.3s;
        }

        .location-link:hover {
            color: #16a085;
        }

        @media (max-width: 968px) {
            header {
                flex-direction: column;
                padding: 15px;
            }

            nav {
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;
                margin-top: 15px;
            }

            .service-section {
                grid-template-columns: 1fr;
            }

            .service-section:nth-child(even) .service-content {
                order: 1;
            }

            .service-section:nth-child(even) .service-image {
                order: 2;
            }

            .hero-services h1 {
                font-size: 32px;
            }

            footer {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

