
        .header-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo {
            width: 60px;
            height: 60px;
            background-color: #007BFF;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
        }
        
        .company-name {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin: 0;
        }
        
        .services-section {
            background-color: #fff;
        }
        
        .service-item {
            text-align: center;
            padding: 30px 20px;
            margin-bottom: 30px;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            font-size: 48px;
            color: #6c757d;
            margin-bottom: 20px;
        }
        
        .service-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }
        
        .service-description {
            color: #6c757d;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
            color: white;
            text-align: center;
        }
        
        .cta-text {
            font-size: 36px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 30px;
        }
        
        .experience-badge {
            background-color: rgba(255,255,255,0.2);
            border-radius: 50px;
            padding: 10px 25px;
            display: inline-block;
            margin-top: 20px;
            font-weight: 600;
        }
        
        .contact-section {
            background-color: #f8f9fa;
        }
        
        .contact-form {
            background-color: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-control {
            border-radius: 8px;
            border: 1px solid #ddd;
            padding: 12px 15px;
            margin-bottom: 20px;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus {
            border-color: #007BFF;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }
        
        .form-check-input:checked {
            background-color: #007BFF;
            border-color: #007BFF;
        }
        
        .btn-submit {
            width: 100%;
            padding: 15px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 10px;
        }

        #form-status {
            text-align: center;
            font-weight: 500;
            min-height: 1.5rem;
        }
        
        .status-success {
            color: #198754;
        }
        
        .status-error {
            color: #dc3545;
        }
        
        .footer-section {
            background-color: #333;
            color: #6c757d;
            text-align: center;
            padding: 40px 0;
        }
        
        .footer-section a {
            color: #007BFF;
            text-decoration: underline;
        }
        
        .footer-section a:hover {
            color: #0056b3;
        }
        
        @media (max-width: 768px) {
            .header-section .row {
                text-align: center;
            }
            
            .header-section .col-md-8 {
                margin-bottom: 30px;
            }
            
            .cta-text {
                font-size: 28px;
            }
            
            .contact-form {
                padding: 30px 20px;
                margin: 0 15px;
            }
        }
    