/* About Page Specific Styles */

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 60px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.bg-light {
    background-color: #f8fafc;
    padding: 60px 40px;
    border-radius: 20px;
    margin: 40px -20px;
}

.text-center {
    text-align: center;
}

/* Mission Card */
.about-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
}

.about-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.about-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.about-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.offer-item {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.offer-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
}

.offer-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.offer-item p {
    color: #5a6268;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.feature-item p {
    color: #5a6268;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.team-member {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.member-avatar i {
    font-size: 5rem;
    color: #3498db;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.member-title {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.team-member p {
    color: #5a6268;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    padding: 20px;
    border-left: 4px solid #3498db;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-number {
    font-size: 2rem;
    font-weight: 800;
    color: #3498db;
    opacity: 0.5;
    margin-bottom: 10px;
}

.value-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.value-item p {
    color: #5a6268;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
    margin-top: 40px;
}

.cta-card {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
}

.cta-card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.cta-card p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-card .btn {
    display: inline-block;
    background: white;
    color: #3498db;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-card .btn:hover {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .about-card {
        padding: 30px 20px;
    }
    
    .about-card h2 {
        font-size: 1.5rem;
    }
    
    .bg-light {
        padding: 40px 20px;
        margin: 30px -15px;
    }
    
    .offers-grid,
    .features-grid,
    .team-grid,
    .values-grid {
        gap: 20px;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
    
    .cta-card h2 {
        font-size: 1.4rem;
    }
}

/*For About Us Banner */


        .about-banner-image img,
        .about-us img,
        img.site2info-about-image {
            max-width: 100%;
            width: 100%;
            height: auto;
            display: block;
        }
        
        @media (max-width: 767px) {
            .about-banner-card {
                flex-direction: column;
            }
        
            .about-banner-image {
                width: 100%;
                text-align: center;
            }
        
            .about-banner-image img {
                width: 100%;
                max-width: 100%;
                height: auto;
            }
        }    
        
    