        .about-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;
        }
        
        .about-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .about-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .about-content {
            padding: 80px 0;
        }
        
        .about-section {
            margin-bottom: 4rem;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 1.5rem;
        }
        
        .about-text p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .about-image {
            text-align: center;
        }
        
        .about-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .stats-section {
            background: #f8f9fa;
            padding: 60px 0;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }
        
        .stat-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
                color: #4f46e5;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: #666;
            font-size: 1.1rem;
        }
        
        .team-section {
            padding: 80px 0;
            background: white;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .team-card {
            text-align: center;
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 15px;
            transition: transform 0.3s;
        }
        
        .team-card:hover {
            transform: translateY(-5px);
        }
        
        .team-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            background: #4f46e5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            font-weight: bold;
        }
        
        .team-card h3 {
            color: #333;
            margin-bottom: 0.5rem;
        }
        
        .team-role {
            color: #4f46e5;
            font-weight: 500;
            margin-bottom: 1rem;
        }
        
        .team-card p {
            color: #666;
            line-height: 1.6;
        }
        
        .values-section {
            background: #f8f9fa;
            padding: 80px 0;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .value-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background: #fbbf24;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        
        .value-icon i {
            font-size: 2rem;
            color: #333;
        }
        
        .value-card h3 {
            color: #333;
            margin-bottom: 1rem;
        }
        
        .value-card p {
            color: #666;
            line-height: 1.6;
        }
		.emergency-section {
            background: #ffe34f;
            padding: 40px 0;
            text-align: center;
            margin: 0 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);
        }
		
		
		@media (max-width: 480px) {
		.about-hero h1 {
        font-size: 1.8rem !important;
		line-height:2.2rem !important;
    }
	.about-hero {
    padding: 100px 0 40px;
}
.about-content {
    padding: 46px 0;
}
    .about-text h2 {
        font-size: 1.8rem !important;
		line-height:2.2rem !important;
    }
	.stats-section {
    background: #f8f9fa;
    padding: 46px 0;
}
.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #4f46e5;
    margin-bottom: 0.5rem;
}
.stat-label {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.4rem;
}
.team-section {
    padding: 46px 0;
    background: white;
}
.team-avatar{
width: 80px;
height: 80px;
font-size: 2rem;
}
.emergency-section h2 {
    font-size: 1.8rem;
    line-height: 2.2rem;
}
.stats-section h2, .team-section h2, .values-section h2{
        font-size: 1.8rem !important;
		line-height:2.2rem !important;
}
.value-card, .team-card {
        flex-basis: 100% !important;
    }
}
        
        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 2.5rem;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .about-text h2 {
                font-size: 2rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .team-grid,
            .values-grid {
                grid-template-columns: 1fr;
            }
			
			.about-hero h1 {
        font-size: 1.8rem !important;
		line-height:2.2rem !important;
    }
	.about-hero {
    padding: 100px 0 40px;
}
.about-content {
    padding: 46px 0;
}
    .about-text h2 {
        font-size: 1.8rem !important;
		line-height:2.2rem !important;
    }
	.stats-section {
    background: #f8f9fa;
    padding: 46px 0;
}
.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #4f46e5;
    margin-bottom: 0.5rem;
}
.stat-label {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.4rem;
}
.team-section {
    padding: 46px 0;
    background: white;
}
.team-avatar{
width: 80px;
height: 80px;
font-size: 2rem;
}
.emergency-section h2 {
    font-size: 1.8rem;
    line-height: 2.2rem;
}
.stats-section h2, .team-section h2, .values-section h2{
        font-size: 1.8rem !important;
		line-height:2.2rem !important;
}

.values-grid, .team-grid{
display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
}
.value-card, .team-card{
flex-basis:45.4%;
}
        }
