* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-container {
    min-height: 100vh;
    background-color: #f9fafb;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-centered-title {
    text-align: center;
    padding: 40px 0;
    background-color: #f8f9fa;
}

.about-centered-title h1 {
    font-size: 2.5rem;
    color: #1e266d;
    margin: 0;
}

.about-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f4f7ff;
    padding: 2rem;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 100px;
    min-height: 200px;
}

.about-detailed-section {
    background-color: #fff;
    padding: 80px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-detailed-container {
    max-width: 1000px;
    margin: 0 auto;
    color: #333;
}

.about-detailed-container h2 {
    font-size: 2rem;
    color: #1e266d;
    margin-bottom: 20px;
}

.about-detailed-container h3 {
    font-size: 1.5rem;
    color: #1e266d;
    margin-top: 40px;
    margin-bottom: 15px;
}

.about-detailed-container p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.banner-left {
    flex: 1;
    padding: 2rem 0;
}

.banner-left h1 {
    font-size: 3rem;
    color: #1e266d;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.breadcrumb {
    color: #666;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.breadcrumb span:first-child {
    cursor: pointer;
    transition: color 0.3s ease;
}

.breadcrumb span:first-child:hover {
    color: #1e266d;
}

.banner-right {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.banner-image {
    width: 400px;
    height: 200px;
    border-radius: 0.5rem;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.features-text {
    padding-right: 40px;
}

.features-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #1e266d;
    line-height: 1.3;
    margin-bottom: 30px;
    margin-top: 0;
}

.features-divider {
    width: 80px;
    height: 3px;
    background-color: #1e266d;
    margin-bottom: 30px;
}

.features-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.highlight-text {
    color: #e74c3c;
    font-weight: 600;
}

.features-cta-btn {
    background-color: transparent;
    color: #1e266d;
    border: 2px solid #1e266d;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.features-cta-btn:hover {
    background-color: #1e266d;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background-color: #1e266d;
    color: #fff;
}

.feature-card:hover * {
    color: #fff;
}

.feature-card:hover .feature-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.feature-card:hover .feature-icon svg,
.feature-card:hover .feature-icon i {
    fill: #fff;
    color: #fff;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #1e266d;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #1e266d;
    margin-bottom: 15px;
    margin-top: 0;
}

.feature-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose-nav-btn {
        display: none;
    }
    
    .features-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .features-text {
        padding-right: 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-banner {
        flex-direction: column;
        text-align: center;
        margin-top: 0;
        padding: 2rem 1rem;
    }
    
    .banner-left h1 {
        font-size: 2.5rem;
    }
    
    .banner-image {
        width: 100%;
        max-width: 400px;
        margin-top: 2rem;
    }
    
    .about-content {
        padding: 2rem 1rem;
    }
    
    .about-intro h2,
    .about-mission h2,
    .about-values h2,
    .about-team h2 {
        font-size: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }

    .features-section {
        padding: 60px 20px;
    }
    
    .features-title {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .banner-left h1 {
        font-size: 2rem;
    }
    
    .about-centered-title h1 {
        font-size: 2rem;
    }
    .features-section {
        padding: 40px 15px;
    }
    
    .features-title {
        font-size: 1.6rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}
