@import url('normalize.css');

.about-section {
    background-color: #1f1f1f;
    /* Using dark grey from reference */
    color: var(--color-bg-light-white);
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
}

.about-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0 50px 0 100px;
    box-sizing: border-box;
    gap: 80px;
}

.about-content {
    flex: 0.7;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    text-transform: none;
    margin: 0 0 16px 0;
    color: var(--color-bg-light-white);
}

.about-description {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-gray-light-3);
}

.about-description p {
    margin-bottom: 0px;
}

.about-image-block {
    flex: 1.3;
    position: relative;
    min-height: 400px;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
        min-height: auto;
    }

    .about-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 40px;
    }

    .about-title {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .about-image-block {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 40px 0;
    }

    .about-title {
        font-size: 28px;
    }

    .about-description {
        font-size: 16px;
    }

    .about-image-block {
        min-height: 250px;
    }
}