.about-page {
    background-color: #ffffff;
}

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

.about-hero {
    width: 100%;
    height: 35vh;
    min-height: 300px;
    max-height: 600px;
    overflow: hidden;
}

.about-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-introduction {
    padding: 80px 0 40px;
    background-color: #ffffff;
}

.about-introduction__title {
    font-size: 36px;
    font-weight: 300;
    margin: 0 0 30px 0;
    letter-spacing: -0.5px;
    color: #111111;
}

.about-introduction__text {
    font-size: 20px;
    line-height: 1.7;
    color: #444444;
    max-width: 800px;
    font-weight: 300;
    margin: 0;
}

.about-story-section {
    padding: 60px 20px;
    max-width: 1261px;
    margin: 0 auto 80px;
}

.about-story {
    display: flex;
    flex-direction: column;
}

.about-story__content {
    padding: 40px 0 0;
    order: 2;
}

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

.about-story__title {
    font-size: 36px;
    font-weight: 400;
    margin: 0 0 30px 0;
    color: #111111;
}

.about-story__text {
    margin-bottom: 30px;
}

.about-story__text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin: 0 0 20px 0;
}

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

.about-story__signature {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 18px;
    color: #000000;
    margin: 0;
}

.about-story__signature p {
    margin: 0;
}

.about-story__image {
    width: 100%;
    height: 400px;
    order: 1;
}

.about-story__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {

    .about-introduction__title {
        font-size: 42px;
    }

    .about-story__content {
        padding: 80px 20px 40px;
    }

    .about-story__image {
        height: 500px;
        order: 1;

    }
    .about-story {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 500px;
    }

    .about-story__content {
        display: flex;
        align-items: center;
        padding: 80px;
        order: 1;
    }

    .about-story__inner {
        max-width: none;
    }

}

.advantages-section {
    background-color: #e5e5e5;
    padding: 100px 0;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1261px;
    margin: auto;
}

.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.advantage-icon {
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.advantage-item h4 {
    font-size: 20px;
    margin: 0 0 15px 0;
    color: #111;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantage-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    max-width: 350px;
}

@media (min-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

