.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.about-section {
    border-radius: 15px;
    border: 2.5px solid var(--color-border);
    background: var(--color-white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px 30px 30px 30px;
    text-align: center;
    line-height: 2.0;
    color: var(--color-dark);
    font-weight: 400;
    font-family: var(--font-serif);
}

.about-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-border);
    font-weight: 700;
}

.about-content p {
    margin-bottom: 1rem;
    font-size: 1em;
}

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

@media (max-width: 1000px) {
    .about-container {
        padding: 15px;
    }
    
    .about-section {
        padding: 20px 25px 25px 25px;
    }
}

@media (max-width: 500px) {
    .about-container {
        padding: 10px;
    }
    
    .about-section {
        padding: 15px 20px 20px 20px;
        border-radius: 10px;
        line-height: 1.8;
    }
    
    .about-section h2 {
        font-size: 1.6em;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
    
    .about-content p {
        font-size: 0.95em;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 350px) {
    .about-container {
        padding: 8px;
    }
    
    .about-section {
        padding: 12px 15px 15px 15px;
        border-radius: 8px;
        line-height: 1.7;
        border-width: 2px;
    }
    
    .about-section h2 {
        font-size: 1.4em;
        margin-bottom: 12px;
        padding-bottom: 6px;
        border-width: 1.5px;
    }
    
    .about-content p {
        font-size: 0.9em;
        margin-bottom: 0.7rem;
    }
}