/* About Section Styles */
.about-section {
    padding: var(--section-spacing-y) 0;
    background-color: var(--color-background-light);
    color: var(--color-text-dark);
}

.about-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.about-container .about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--grid-gap);
    align-items: start;
}

.about-container .about-text-content {
    text-align: left;
}

.about-container .about-headline {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-dark);
    margin-bottom: var(--space-md);
    line-height: 1.2;
    text-align: left;
}

.about-container .about-text {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-dark);
    margin-bottom: 0;
}

.founder-bio {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background-color: var(--color-background-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.bio-headline {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.bio-text {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-dark);
    margin-bottom: var(--space-md);
}

.about-container .about-image-wrapper {
    width: 100%;
}

.about-container .about-image-wrapper .founder-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.about-container .about-image-wrapper .founder-image:hover {
    transform: translateY(var(--transform-hover-y));
    box-shadow: var(--shadow-lg);
}

/* Founder Section Styles */
.founder-section {
    padding: var(--section-spacing-y) 0;
    background: linear-gradient(135deg, 
        var(--color-background-light) 0%,
        rgba(125, 194, 67, 0.05) 50%,
        rgba(50, 115, 175, 0.08) 100%
    );
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(125, 194, 67, 0.2) 50%,
        transparent 100%
    );
}

.founder-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.founder-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.founder-content .section-headline {
    font-size: var(--font-size-h2);
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
    font-weight: var(--font-weight-bold);
    position: relative;
}

.founder-content .section-headline::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin: var(--space-sm) auto 0;
}

.founder-bio-wrapper {
    background-color: var(--color-background-light);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.founder-text {
    text-align: left;
}

.founder-description {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--color-text-dark);
    margin-bottom: var(--space-lg);
    font-weight: var(--font-weight-medium);
}

.founder-journey {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-dark);
    margin-bottom: var(--space-lg);
}

.founder-credentials {
    padding-top: var(--space-md);
    border-top: 2px solid var(--color-border);
}

.credentials-text {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-dark);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: var(--breakpoint-md)) {
    .about-container .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-container .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-container .about-headline {
        font-size: var(--font-size-h3);
    }

    .founder-bio-wrapper {
        padding: var(--space-lg);
    }

    .founder-description {
        font-size: var(--font-size-base);
    }
}

@media (max-width: var(--breakpoint-sm)) {
    .about-section {
        padding: var(--space-2xl) 0;
    }

    .about-container .about-text {
        font-size: var(--font-size-sm);
    }

    .founder-bio-wrapper {
        padding: var(--space-md);
    }

    .founder-content .section-headline {
        font-size: var(--font-size-h3);
    }
}
