        .contact-hero {
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.9), rgba(124, 58, 237, 0.8));
            padding: 120px 0 80px;
            text-align: center;
            color: white;
        }
        
        .contact-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .contact-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .contact-content {
            padding: 80px 0;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }
        
        .contact-form-section {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .contact-form-section h2 {
            color:#4f46e5;
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }
        
        .contact-info-section h2 {
            color: #333;
            margin-bottom: 2rem;
            font-size: 2rem;
        }
        
        .contact-info-cards {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .contact-info-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 1.5rem;
            transition: transform 0.3s;
        }
        
        .contact-info-card:hover {
            transform: translateY(-3px);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: #4f46e5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .contact-details h3 {
            color: #333;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }
        
        .contact-details p {
            color: #666;
            margin: 0;
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-group label {
            color: #333;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #4A90E2;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        
        .submit-btn {
            background: #4f46e5;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .submit-btn:hover {
            background: #357ABD;
        }
        
        .emergency-section {
            background: #ffe34f;
            padding: 40px 0;
            text-align: center;
            margin: 60px 0 0;
        }
        
        .emergency-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .emergency-section h2 {
            color: #333;
            margin-bottom: 1rem;
            font-size: 2rem;
        }
        
        .emergency-section p {
            color: #333;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .emergency-btn {
            background: #333;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .emergency-btn:hover {
            transform: translateY(-2px);
        }
        
        .service-areas {
            background: #f8f9fa;
            padding: 60px 0;
        }
        
        .service-areas h2 {
            text-align: center;
            color: #333;
            margin-bottom: 3rem;
            font-size: 2rem;
        }
        
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            text-align: center;
        }
        
        .area-item {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            color: #333;
            font-weight: 500;
        }
        
        .faq-section {
            padding: 60px 0;
            background: white;
        }
        
        .faq-section h2 {
            text-align: center;
            color: #333;
            margin-bottom: 3rem;
            font-size: 2rem;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: #f8f9fa;
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
    background: #f8f9fa;
    color: #333333;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
        }
        
        .faq-question:hover {
            background: #4f46e5;
            color: #fff;
        }
        
        .faq-answer {
            padding: 1.5rem;
            display: none;
            color: #666;
            line-height: 1.6;
        }
        
        .faq-answer.active {
            display: block;
        }
		
		
		@media (max-width: 480px) {
		.contact-hero{
		padding: 100px 0 46px;
		}
		.contact-hero h1{
		font-size: 1.8rem;
        line-height: 2.2rem;
		}
		.contact-content, .service-areas {
    padding: 46px 0;
}
.contact-form-section h2{
font-size: 1.8rem;
line-height: 2.2rem;
text-align:center;
}
.contact-info-section h2, .service-areas h2, .faq-section h2{
font-size: 1.8rem;
line-height: 2.2rem;
    margin-bottom: 2rem;
	text-align:center;
}


}
        
        @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 2.5rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .contact-info-card {
                flex-direction: column;
                text-align: center;
            }
            
            .areas-grid {
                grid-template-columns: repeat(2, 1fr);
            }
			
			.contact-hero{
		padding: 100px 0 46px;
		}
		.contact-hero h1{
		font-size: 1.8rem;
        line-height: 2.2rem;
		}
		.contact-content, .service-areas {
    padding: 46px 0;
}
.contact-form-section h2{
font-size: 1.8rem;
line-height: 2.2rem;
text-align:center;
}
.contact-info-section h2, .service-areas h2, .faq-section h2{
font-size: 1.8rem;
line-height: 2.2rem;
    margin-bottom: 2rem;
	text-align:center;
}


}
