.hero-section {
            background: linear-gradient(135deg, #0a1e3e 0%, #4a1942 50%, #c84a4a 100%);
            color: white;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 50%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="80" opacity="0.1">🔧</text></svg>') no-repeat center;
            background-size: contain;
            opacity: 0.3;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .check-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }
        
        .check-item i {
            color: #4CAF50;
            margin-right: 10px;
        }
        
        .location-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .location-card h5 {
            color: #333;
            margin-bottom: 15px;
        }
        
        .location-card .form-control {
            border-radius: 5px;
            padding: 12px;
        }
        
        .location-card .btn-check {
            background: #c84a4a;
            border: none;
            border-radius: 5px;
            padding: 12px 30px;
            color: white;
            font-weight: 600;
        }
        
        .location-card .btn-check:hover {
            background: #b03a3a;
        }
        
        .location-link {
            color: #666;
            font-size: 14px;
            text-decoration: none;
            display: flex;
            align-items: center;
            margin-top: 10px;
        }
        
        .location-link i {
            margin-right: 5px;
            color: #c84a4a;
        }
        
        .services-section {
            padding: 60px 0;
            background: #f8f9fa;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 25px 15px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 2px solid #e9ecef;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #c84a4a;
            border-radius: 10px;
        }
        
        .service-icon i {
            font-size: 28px;
            color: #c84a4a;
        }
        
        .service-card p {
            margin: 0;
            color: #333;
            font-size: 14px;
            font-weight: 500;
        }