/* About Page Styles */
.lichen-about-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-dark);
    margin-top: 90px;
    overflow: hidden;
}

.lichen-about-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lichen-about-hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.lichen-about-hero-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.lichen-about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.lichen-our-story {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.lichen-story-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.lichen-story-text {
    flex: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.lichen-story-text.lichen-scrolled {
    opacity: 1;
    transform: translateY(0);
}

.lichen-story-text h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.lichen-story-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 3px;
}

.lichen-story-image {
    flex: 1;
    max-width: 500px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(20px);
}

.lichen-story-image.lichen-scrolled {
    opacity: 1;
    transform: translateX(0);
}

.lichen-mission-vision {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(200, 230, 201, 0.3), rgba(200, 230, 201, 0.1));
}

.lichen-mission-vision-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lichen-mission-card,
.lichen-vision-card,
.lichen-values-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.lichen-mission-card.lichen-scrolled,
.lichen-vision-card.lichen-scrolled,
.lichen-values-card.lichen-scrolled {
    opacity: 1;
    transform: translateY(0);
}

.lichen-mission-card:nth-child(2) {
    transition-delay: 0.2s;
}

.lichen-mission-card:nth-child(3) {
    transition-delay: 0.4s;
}

.lichen-mission-card:hover,
.lichen-vision-card:hover,
.lichen-values-card:hover {
    transform: translateY(-10px);
}

.lichen-mission-icon,
.lichen-vision-icon,
.lichen-values-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.lichen-mission-card h3,
.lichen-vision-card h3,
.lichen-values-card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.lichen-team-section {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.lichen-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.lichen-team-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.lichen-team-card.lichen-scrolled {
    opacity: 1;
    transform: translateY(0);
}

.lichen-team-card:nth-child(2) {
    transition-delay: 0.2s;
}

.lichen-team-card:nth-child(3) {
    transition-delay: 0.4s;
}

.lichen-team-card:hover {
    transform: translateY(-10px);
}

.lichen-team-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.lichen-team-card:hover .lichen-team-image {
    transform: scale(1.05);
}

.lichen-team-card h3 {
    padding: 20px 20px 5px;
    margin-bottom: 0;
}

.lichen-team-position {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0 20px;
    margin-bottom: 10px;
}

.lichen-team-card p:not(.lichen-team-position) {
    padding: 0 20px 20px;
}

.lichen-achievements {
    padding: 5rem 0;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    color: white;
}

.lichen-achievements .lichen-section-title {
    color: white;
}

.lichen-achievements .lichen-section-title::after {
    background: white;
    opacity: 0.8;
}

.lichen-achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.lichen-achievement-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(20px);
}

.lichen-achievement-card.lichen-scrolled {
    opacity: 1;
    transform: translateY(0);
}

.lichen-achievement-card:nth-child(2) {
    transition-delay: 0.15s;
}

.lichen-achievement-card:nth-child(3) {
    transition-delay: 0.3s;
}

.lichen-achievement-card:nth-child(4) {
    transition-delay: 0.45s;
}

.lichen-achievement-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.lichen-achievement-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.lichen-achievement-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.lichen-achievement-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.lichen-partners {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.lichen-partners-slider {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.lichen-partner-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    width: 220px;
    height: 140px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.lichen-partner-logo-container.lichen-scrolled {
    opacity: 1;
    transform: translateY(0);
}

.lichen-partner-logo-container:nth-child(2) {
    transition-delay: 0.15s;
}

.lichen-partner-logo-container:nth-child(3) {
    transition-delay: 0.3s;
}

.lichen-partner-logo-container:nth-child(4) {
    transition-delay: 0.45s;
}

.lichen-partner-logo-container:hover {
    transform: translateY(-5px);
}

.lichen-partner-logo {
    max-width: 180px;
    max-height: 100px;
}

.lichen-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(255, 160, 0, 0.1));
}

.lichen-cta-section .lichen-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.lichen-cta-content {
    flex: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.lichen-cta-content.lichen-scrolled {
    opacity: 1;
    transform: translateY(0);
}

.lichen-cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.lichen-cta-image {
    flex: 1;
    max-width: 500px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.8s ease;
}

.lichen-cta-image.lichen-scrolled {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .lichen-story-content,
    .lichen-cta-section .lichen-container {
        flex-direction: column;
    }

    .lichen-story-image,
    .lichen-cta-image {
        margin-top: 30px;
        max-width: 100%;
    }

    .lichen-mission-vision-cards,
    .lichen-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lichen-achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lichen-about-hero {
        height: 400px;
    }

    .lichen-about-hero-content h1 {
        font-size: 2.5rem;
    }

    .lichen-about-hero-content p {
        font-size: 1.1rem;
    }

    .lichen-mission-vision-cards,
    .lichen-team-grid,
    .lichen-achievements-grid {
        grid-template-columns: 1fr;
    }

    .lichen-team-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .lichen-about-hero {
        height: 350px;
    }

    .lichen-about-hero-content h1 {
        font-size: 2rem;
    }

    .lichen-cta-buttons {
        flex-direction: column;
    }
} 