/* ===== ABOUT PAGES GENERAL STYLES ===== */
.about-main {
    margin-top: 140px;
    min-height: calc(100vh - 140px);
    background-color: #f5f5f5;
    padding-bottom: 60px;
}

/* Page Header Banner */
.page-header-banner {
    background: linear-gradient(135deg, #004a86 0%, #0066cc 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 40px;
}

.page-header-banner h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header-banner p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 0 40px;
}

.breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb li {
    font-size: 14px;
    color: #024f9c;
}

.breadcrumb a {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #2c3e50;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: #9ca3af;
}

/* Content Container */
.about-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Content Section */
.content-section {
    background-color: white;
    padding: 50px 40px;
    margin-bottom: 40px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 3px solid #0066cc;
    padding-bottom: 15px;
}

.content-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
    text-align: justify;
}

.content-section ul,
.content-section ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 10px;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.column-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 4px;
    border-left: 4px solid #0066cc;
}

.column-box h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.column-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-card {
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.team-card-image {
    width: 100%;
    height: 280px;
    background-color: #0066cc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: white;
    font-weight: 700;
}

.team-card-content {
    padding: 25px;
}

.team-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.team-card-content .position {
    font-size: 14px;
    color: #024f9c;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.team-card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #495057;
}

/* Timeline (for History) */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #dee2e6;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #0066cc;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0066cc;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #495057;
    margin: 0;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    border-top: 4px solid #0066cc;
}

.testimonial-quote {
    font-size: 48px;
    color: #dee2e6;
    position: absolute;
    top: 20px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0066cc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3px;
}

.testimonial-info p {
    font-size: 13px;
    color: #024f9c;
    margin: 0;
}

/* Policies List */
.policies-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.policies-list li {
    background-color: #f8f9fa;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 4px;
    border-left: 4px solid #0066cc;
    transition: all 0.3s ease;
}

.policies-list li:hover {
    background-color: #e9ecef;
    border-left-color: #495057;
    transform: translateX(5px);
}

.policies-list li strong {
    color: #2c3e50;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-box {
    background-color: #f8f9fa;
    padding: 30px;
    text-align: center;
    border-radius: 4px;
    border-top: 4px solid #0066cc;
}

.stat-box .number {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-box .label {
    font-size: 16px;
    color: #024f9c;
    font-weight: 600;
    text-transform: uppercase;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-main {
        margin-top: 120px;
    }
    
    .page-header-banner {
        padding: 40px 20px;
    }
    
    .page-header-banner h1 {
        font-size: 32px;
    }
    
    .page-header-banner p {
        font-size: 16px;
    }
    
    .about-content-container {
        padding: 0 20px;
    }
    
    .content-section {
        padding: 30px 25px;
    }
    
    .content-section h2 {
        font-size: 26px;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline-year {
        left: 20px;
        transform: none;
    }
    
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}