/* About Page Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.about-section {
    padding: 60px 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.intro-text {
    text-align: center;
    margin-bottom: 60px;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    max-width: 800px;
    margin: 0 auto;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.why-us-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 42, 127, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 42, 127, 0.12);
}

.why-us-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
    color: var(--primary-color);
}

.why-us-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.why-us-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6c757d;
}

.experience-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.experience-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.experience-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 42, 127, 0.06);
    transition: all 0.3s ease;
}

.experience-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0, 42, 127, 0.1);
}

.experience-item .icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    color: var(--primary-color);
}

.experience-item .text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #343a40;
}
