#about {
    display: flex;
    width: 100%;
    min-height: calc(90vh - var(--header-height));
    justify-content: center;
    align-items: center;
}

.about_image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
    display: block;
    transform: scaleY(1.1);
    transform-origin: top;
}

.about_container {
    display: flex;
    flex-direction: column;
    width: 60%;
    padding: 0 2rem;
}

.about_content p {
    font-size: 1rem;
    font-weight: 500;
    padding-bottom: 0.8rem;
    text-align: justify;
    line-height: 1.6;
}

.about_content strong {
    color: var(--bronze-gold);
    font-weight: 800;
    font-size: 1.1rem;
}

.about_container button {
    margin-top: 1.8rem;
}

.about_features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stamps {
    display: flex;
}

.stamps span {
    font-weight: 500;
}

.about_features i {
    font-size: 2.5rem;
    text-align: left;
    color: var(--bronze-gold);
}

.content_subtitle {
    color: var(--bronze-gold);
    font-weight: 700;
}

.gray_title {
    font-weight: 800;
    padding: 0.8rem 0;
}

@media screen and (max-width: 1170px) {
    #about {
        justify-content: center;
        min-height: auto;
        padding-top: 2rem;
    }

    .about_container {
        width: 100%;
        align-items: center;
    }

    .about_features {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .about_image {
        display: none;
    }
}

@media screen and (max-width: 450px) {
    .about_container {
        padding: 2rem 1rem;
    }

    .about_features {
        display: flex;
    }
}
