/* Inner container for hero section to align with other containers */

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* padding: 2rem; */
    max-width: 900px;
    margin: 0 auto;
}


.about-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* padding: 0 5%; */
}

/* Hero Section */
.about-hero {
    display: flex;
    /* flex-direction: column; */
    /* align-items: center; */
    /* justify-content: center; */
    /* background: #ff0000; */
    color: rgb(0, 0, 0);
    padding: 5rem 5% 1rem;
    /* text-align: center; */
    /* position: relative; */
    /* overflow: hidden; */
    width: 100%;
}


.back-button-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    background: none;
}

.back-button{
    /* margin: 0 auto; */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    color: #64748b;
    /* background: none; */
    /* border: none; */
    cursor: pointer;
    /* box-shadow: none; */
    text-decoration: none;
}

.back-button:hover{
    color: #0f172a;
    transform: translateY(-1px);
    background: none;
    box-shadow: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin: 0 auto;
    width: 100%;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-hero p {
    font-size: 1.375rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Mission Section */
.mission-section {
    padding: 3rem 5%;
    /* background: red; */
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 4rem;
    align-items: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-content p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: 3rem 5%;
    /* background: #fff; */
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Story Section */
.story-section {
    padding: 6rem 5%;
    /* background: white; */
}

.story-container {
    max-width: 900px;
    margin: 0 auto;
}

.story-content {
    /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); GOOD GRADIENT */
    background: #fff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.story-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.story-content p {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Team Section */
.team-section {
    padding: 3rem 5%;
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.member-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-section {
    padding: 6rem 5%;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

.cta-button {
    background: #fff;
    color: #0a4194;
    border: solid 2px #0a4194;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    transform: translateY(-2px);
    /* box-shadow: var(--shadow-xl); */
    /* background: #390969; */
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 5% 4rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.125rem;
    }

    .mission-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mission-stats {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}