
        .hero-section {
            background: linear-gradient(135deg, #007BFF 0%, #28A745 50%, #FFC107 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-content h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-content p {
            font-size: 18px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .hero-illustration {
            position: relative;
            z-index: 2;
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .floating-shapes::before,
        .floating-shapes::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            animation: float 6s ease-in-out infinite;
        }

        .floating-shapes::before {
            width: 200px;
            height: 200px;
            top: 10%;
            right: 10%;
            animation-delay: -2s;
        }

        .floating-shapes::after {
            width: 150px;
            height: 150px;
            bottom: 20%;
            left: 15%;
            animation-delay: -4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .about-section {
            background: #f8f9fa;
        }

        .services-section {
            padding: 100px 0;
        }

        .service-card {
            text-align: center;
            padding: 40px 20px;
            border-radius: 15px;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .service-icon {
            font-size: 60px;
            color: #0056b3;
            margin-bottom: 20px;
            display: block;
        }

        .service-card h3 {
            font-size: 20px;
            color: #333;
            margin-bottom: 15px;
        }

        .service-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        .portfolio-section {
            background: #f8f9fa;
        }

        .portfolio-item {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 30px;
        }

        .portfolio-item:hover {
            transform: translateY(-5px);
        }

        .portfolio-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #007BFF, #28A745);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: 600;
        }

        .portfolio-content {
            padding: 20px;
        }

        .portfolio-content h4 {
            font-size: 16px;
            color: #222;
            margin-bottom: 10px;
        }

        .portfolio-content p {
            font-size: 12px;
            color: #555;
            line-height: 1.5;
        }

        .testimonials-section {
            background: #007BFF;
            color: white;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            backdrop-filter: blur(10px);
            margin-bottom: 30px;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .testimonial-author {
            font-weight: 600;
            font-size: 14px;
        }

        .contact-section {
            background: #f8f9fa;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .form-control-custom {
            border: 1px solid #CCC;
            border-radius: 4px;
            padding: 12px 15px;
            font-family: Arial, sans-serif;
            font-size: 14px;
            margin-bottom: 20px;
            transition: border-color 0.3s ease;
        }

        .form-control-custom:focus {
            border-color: #007BFF;
            outline: none;
            box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
        }

        .contact-info {
            padding: 40px 20px;
        }

        .contact-info h4 {
            color: #333;
            margin-bottom: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .contact-item i {
            color: #007BFF;
            font-size: 18px;
            margin-right: 15px;
            width: 20px;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 32px;
            }
            
            .hero-content p {
                font-size: 16px;
            }
            
            section {
                padding: 60px 0;
            }
            
            .service-card {
                margin-bottom: 30px;
            }
        }
    