.about-page-container {
    min-height: calc(100vh - 200px);
    padding: 2rem 3rem;
}

.about-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 1rem;
    font-family: 'Dosis', 'Roboto', Arial, sans-serif;
}

.about-intro {
    background: linear-gradient(135deg, #f8fafc 0%, #e6f5fc 100%);
    border-radius: 16px;
    padding: 2.5rem;
    border-left: 4px solid var(--hover-color, #0f62fe);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.about-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
    font-weight: 400;
}

.about-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-section {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.about-section-icon {
    font-size: 2rem;
    color: var(--hover-color, #0f62fe);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e6f5fc;
    border-radius: 12px;
    flex-shrink: 0;
}

.about-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--main-color);
    margin: 0;
    font-family: 'Dosis', 'Roboto', Arial, sans-serif;
}

.about-section-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
}

.about-section-content p {
    margin-bottom: 1.2rem;
}

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

@media (max-width: 768px) {
    .about-page-container {
        padding: 1rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-intro {
        padding: 1.5rem;
    }

    .about-lead {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .about-section {
        padding: 1.5rem;
    }

    .about-section-icon {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }

    .about-section-title {
        font-size: 1.4rem;
    }

    .about-section-content {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-section-header {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.75rem;
    }

    .about-intro {
        padding: 1.25rem;
    }

    .about-lead {
        font-size: 1rem;
    }

    .about-section {
        padding: 1.25rem;
    }

    .about-section-title {
        font-size: 1.25rem;
    }
}
