        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        .web-header {
            background: linear-gradient(135deg, #333 0%, #444 100%);
            color: white;
            padding: 140px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .web-header::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            height: 100px;
            background: #f9f9f9;
            transform: skewY(-3deg);
            z-index: 1;
        }

        .header-content {
            position: relative;
            z-index: 2;
        }

        .web-heading {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #fff;
        }

        .tagline {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
            color: #fff;
        }

        /* Intro Section */
        .intro {
            padding: 60px 0;
            text-align: center;
            background-color: white;
            position: relative;
            z-index: 2;
        }

        .intro p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: #555;
        }

        /* Services Section */
        .services {
            padding: 50px 0;
            background-color: #f1f5fd;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #333;
            font-size: 2rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-img {
            height: 200px;
            overflow: hidden;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 25px;
        }

        .service-title {
            color: #333;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        /* Why Choose Us Section */
        .why-choose-us {
            padding: 80px 0;
            background-color: white;
        }

        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .benefit-item h3 {
            font-size: 1.2rem;
        }

                .benefit-item p {
            font-size: 1rem;
        }

        .check-icon {
            color: #4CAF50;
            font-size: 1.5rem;
            margin-right: 15px;
            flex-shrink: 0;
        }

        /* CTA Section */
        .cta {
            padding: 80px 0;
            background: linear-gradient(135deg, #333 0%, #444 100%);
            color: white;
            text-align: center;
        }

        .cta h2 {
            margin-bottom: 30px;
            font-size: 2rem;
            color: #fff;
        }

        .cta p {
            color: #fff;
        }

        .cta-button {
            display: inline-block;
            background: white;
            color: #333;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            background: #f8f9fa;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }

            .tagline {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 1.8rem;
            }
        }