/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    background: var(--background-white);
    padding: 100px 0 80px 0;
    text-align: center;
}

.about-hero-title {
    font-size: 64px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.about-hero-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 42px;
    }
    
    .about-hero-subtitle {
        font-size: 20px;
    }
}

/* Mission Section */
.mission-section {
    background: var(--background-light);
    padding: 80px 0;
}

.mission-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.mission-content {
    flex: 1;
}

.mission-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.mission-title {
    font-size: 42px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 24px;
    max-width: 600px;
}

.mission-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
}

.mission-image {
    flex-shrink: 0;
    width: 500px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .mission-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-title {
        font-size: 36px;
        max-width: none;
    }
    
    .mission-image {
        width: 100%;
        max-width: 500px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .mission-title {
        font-size: 28px;
    }
    
    .mission-text {
        font-size: 16px;
    }
    
    .mission-image {
        height: 300px;
    }
}

/* Vision Section */
.vision-section {
    background: var(--background-white);
    padding: 80px 0;
}

.vision-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.vision-image {
    flex-shrink: 0;
    width: 500px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

.vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-content {
    flex: 1;
}

.vision-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.vision-title {
    font-size: 42px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 24px;
    max-width: 600px;
}

.vision-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
}

@media (max-width: 1024px) {
    .vision-section .container {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .vision-title {
        font-size: 36px;
        max-width: none;
    }
    
    .vision-image {
        width: 100%;
        max-width: 500px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .vision-title {
        font-size: 28px;
    }
    
    .vision-text {
        font-size: 16px;
    }
    
    .vision-image {
        height: 300px;
    }
}

/* Problem Section */
.problem-section {
    background: var(--background-light);
    padding: 80px 0;
    text-align: center;
}

.problem-title {
    font-size: 42px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.problem-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .problem-title {
        font-size: 32px;
    }
    
    .problem-text {
        font-size: 16px;
    }
}

/* Founding Section */
.founding-section {
    background: var(--background-white);
    padding: 80px 0;
    text-align: center;
}

.founding-header {
    margin-bottom: 48px;
}

.founding-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.founding-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
}

.founding-content {
    max-width: 900px;
    margin: 0 auto;
}

.founding-text-primary {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.founding-text-secondary {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .founding-title {
        font-size: 32px;
    }
    
    .founding-text-primary,
    .founding-text-secondary {
        font-size: 18px;
    }
}

/* Values About Section */
.values-about-section {
    background: var(--background-white);
    padding: 80px 0;
}

.values-about-title {
    font-size: 42px;
    font-weight: bold;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 48px;
}

.values-about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-about-card {
    background: var(--background-light);
    padding: 40px;
    border-radius: 16px;
    text-align: left;
}

.value-about-icon {
    display: block;
    width: 56px;
    height: 56px;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-size: 56px;
}

.value-about-card h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.value-about-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .values-about-grid {
        gap: 24px;
    }
    
    .value-about-card {
        padding: 32px;
    }
    
    .value-about-card h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .values-about-title {
        font-size: 32px;
    }
    
    .values-about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-about-card {
        padding: 24px;
        text-align: center;
    }
    
    .value-about-card h3 {
        font-size: 20px;
    }
    
    .value-about-card p {
        font-size: 15px;
    }
}

/* Leadership Section */
.leadership-section {
    background: var(--background-light);
    padding: 80px 0;
}

.leadership-header {
    text-align: center;
    margin-bottom: 48px;
}

.leadership-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.leadership-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.leadership-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.leadership-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.leader-card {
    display: flex;
    align-items: center;
    gap: 40px;
}

.leader-card-reverse {
    flex-direction: row-reverse;
}

.leader-photo {
    flex-shrink: 0;
    width: 280px;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info {
    flex: 1;
}

.leader-name {
    font-size: 32px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.leader-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.leader-title-green {
    color: var(--primary-green);
}

.leader-title-orange {
    color: var(--accent-orange);
}

.leader-title-yellow {
    color: var(--accent-yellow);
}

.leader-bio {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Board Section */
.board-section {
    background: var(--background-white);
    padding: 80px 0;
    margin-top: 0;
}

.board-header {
    text-align: center;
    margin-bottom: 48px;
}

.board-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.board-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.board-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.board-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.board-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--background-light);
    padding: 24px 32px;
    border-radius: 12px;
}

.board-member-info {
    flex: 1;
}

.board-member-name {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.board-member-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
}

.board-member-photo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    overflow: hidden;
}

.board-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .leadership-title {
        font-size: 40px;
    }

    .leader-card,
    .leader-card-reverse {
        flex-direction: column;
        text-align: center;
    }

    .leader-photo {
        width: 100%;
        max-width: 280px;
    }

    .leader-name {
        font-size: 28px;
    }

    .board-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .leadership-title {
        font-size: 32px;
    }

    .leadership-subtitle {
        font-size: 16px;
    }

    .leader-photo {
        height: 280px;
    }

    .leader-name {
        font-size: 24px;
    }

    .leader-title {
        font-size: 14px;
    }

    .leader-bio {
        font-size: 15px;
    }

    .board-title {
        font-size: 32px;
    }

    .board-subtitle {
        font-size: 16px;
    }

    .board-card {
        padding: 20px 24px;
    }

    .board-member-name {
        font-size: 20px;
    }

    .board-member-title {
        font-size: 14px;
    }

    .board-member-photo {
        width: 60px;
        height: 60px;
        border-radius: 30px;
    }
}

/* About CTA Section */
.about-cta-section {
    background: var(--primary-green);
    padding: 80px 0;
    text-align: center;
}

.about-cta-title {
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-text {
    font-size: 18px;
    color: rgba(232, 245, 233, 1);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-btn {
    background: white !important;
    color: var(--primary-green) !important;
    border: none !important;
    padding: 20px 48px;
    font-size: 18px;
}

.about-cta-btn:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .about-cta-title {
        font-size: 36px;
    }
    
    .about-cta-text {
        font-size: 16px;
    }
}