/* About Page Styles */

/* Page Header - Profile/Dashboard Style */
.about-page-header {
    background: #fffde7 !important;
    padding: 40px 0 !important;
    text-align: center !important;
    border-bottom: 1px solid #fff9c4;
    position: relative;
    overflow: hidden;
}

.about-page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.about-page-header h1 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    color: #333 !important;
}

.about-page-header h1 i {
    color: #28a745;
}

.about-page-header p {
    font-size: 1rem !important;
    color: #666 !important;
    margin: 0;
}

/* About Section */
.about-story-section {
    padding: 80px 0;
    background: #fff;
}

.about-story-section .about-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.about-story-section .about-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #28a745, #ffc107);
    display: block;
    margin: 15px auto 0;
    border-radius: 2px;
}

.about-story-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.about-story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-story-image img {
    width: 100%;
    height: auto;
}

/* Values Section */
.about-values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff8e1 0%, #fffde7 100%);
}

.about-value-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-10px);
}

.about-value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745, #1e7e34);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.about-value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.about-value-description {
    color: #666;
    line-height: 1.7;
}

/* Mission Section */
.about-mission-section {
    padding: 80px 0;
    background: #fff;
}

.about-mission-box {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    border-radius: 20px;
    padding: 50px;
    color: white;
    text-align: center;
}

.about-mission-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.about-mission-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    color: white;
}

/* Stats Section */
.about-stats-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.about-stat-item {
    text-align: center;
    padding: 30px;
}

.about-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #28a745;
    line-height: 1;
}

.about-stat-label {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}

/* CTA Section */
.about-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    text-align: center;
}

.about-cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.about-cta-section p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.about-cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #28a745;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-cta-btn:hover {
    background: #1e7e34;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .about-page-hero h1 {
        font-size: 2rem !important;
    }

    .about-story-image {
        margin-top: 40px;
    }

    .about-value-card {
        margin-bottom: 20px;
    }
}