/* About Section Styles */

.content-section.about-section {
    min-height: 100vh;
    position: relative;
    background: transparent !important;
}

.content-section.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2vw;
    right: -2vw;
    bottom: 0;
    background: linear-gradient(to bottom, #39e58f 0%, #39e58f 60%, white 100%);
    z-index: -1;
}

/* Mobile: extend gradient to screen edges */
@media (max-width: 768px) {
    .content-section.about-section::before {
        left: -4vw;
        right: -4vw;
    }
}

.about-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* Large intro text */
.about-intro {
    margin-bottom: 4rem;
}

.large-intro-text {
    font-family: var(--serif-font) !important;
    font-size: 3.8vw !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
    color: #000 !important;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    max-width: 600px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text a:hover {
    background-color: black;
}

/* Desktop layout - two columns */
@media (min-width: 1200px) {
    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
        align-items: start;
    }
    
    .about-intro {
        margin-bottom: 0;
    }
    
    .large-intro-text {
        font-size: 3.8vw !important;
        line-height: 1.2 !important;
        text-align: left;
        margin: 0;
        max-width: none;
    }
    
    .about-text {
        margin: 0;
        max-width: none;
    }
}

/* Mobile and Tablet Responsive */
@media (max-width: 1200px) {
    .about-content {
        padding: 3rem 0;
    }
    
    .about-intro {
        margin-bottom: 3rem;
    }
    
    .large-intro-text {
        font-size: 60px !important;
        line-height: 1.2 !important;
        text-align: left !important;
        margin: 0;
        max-width: none;
    }
    
    .about-text {
        max-width: none;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .large-intro-text {
        font-size: 55px !important;
    }

    .about-text p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 2rem 0;
    }
    
    .about-intro {
        margin-bottom: 2rem;
    }
    
    .large-intro-text {
        font-size: 45px !important;
        line-height: 1.2 !important;
    }
}
