
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }

        header {
            background: white;
            padding: 20px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 24px;
            font-weight: bold;
            color: #2c3e50;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }

        .services-hero {
            text-align: center;
            padding: 80px 20px 40px;
            background: white;
        }

        .services-hero h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .services-hero p {
            color: #666;
            font-size: 1.1rem;
        }

        .services-section {
            padding: 60px 20px;
        }

        .services-grid-main {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .service-box {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 25px rgba(0,0,0,0.15);
        }

        .service-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .service-content {
            padding: 30px;
        }

        .service-content h3 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .service-content p {
            color: #666;
            line-height: 1.8;
        }

        .info-banner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            margin: 60px 0;
        }

        .info-banner-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 300px;
        }

        .info-banner-content {
            background: #1a5f5f;
            color: white;
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .stars {
            color: #ffd700;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .info-banner-content h3 {
            font-size: 1.4rem;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .client-avatar {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
        }

        .client-name {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .projects-section {
            padding: 80px 20px;
            background: white;
        }

        .projects-hero {
            text-align: center;
            margin-bottom: 60px;
        }

        .projects-hero h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .projects-hero p {
            color: #666;
            font-size: 1.1rem;
        }

        .project-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }

        .project-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .project-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .project-info {
            padding: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .project-text h3 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .project-text p {
            color: #666;
        }

        .btn-outline {
            padding: 12px 30px;
            border: 2px solid #2c3e50;
            background: transparent;
            color: #2c3e50;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
        }

        .btn-outline:hover {
            background: #2c3e50;
            color: white;
        }

        footer {
            background: #1a3a3a;
            color: white;
            padding: 40px 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-section h3 {
            margin-bottom: 20px;
        }

        .footer-section p {
            margin-bottom: 10px;
        }

        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        @media (max-width: 768px) {
            .services-grid-main {
                grid-template-columns: 1fr;
            }

            .info-banner {
                grid-template-columns: 1fr;
            }

            .info-banner-image {
                min-height: 250px;
            }

            .info-banner-content {
                padding: 40px 30px;
            }

            .project-images {
                grid-template-columns: 1fr;
            }

            .project-image {
                height: 250px;
            }

            .project-info {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .services-hero h1,
            .projects-hero h2 {
                font-size: 2rem;
            }

            .service-content {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .services-hero h1,
            .projects-hero h2 {
                font-size: 1.5rem;
            }

            .service-image,
            .project-image {
                height: 200px;
            }
        }
    