.property-information-section {
    padding: 4rem 2rem;
    background-color: #F5F7FA;
}

.information-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1600px;
    margin: 0 auto;
    gap: 4rem;
    align-items: stretch;
    justify-content: space-between;
}

.information-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
}

.information-header-title {
    font-size: 52px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #0B1427;
}

.information-header-title span {
    color: #1F3B73;
    font-weight: 600;
}

.information-header-description {
    font-size: 24px;
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    color: #0B1427;
    text-align: center;
    max-width: 1400px;
}

.property-story {
    background: #fff;
    padding: 4rem 2rem;
}

.story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 2rem;
}

.story-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* informations */
.informations-grid {
    display: flex;
    /* flex-wrap: wrap; */
    /* gap: 2rem; */
    /* justify-content: space-between; */
}

.information-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5rem;
    flex: 1;
}

.information-icon img {
    width: 120px;
    height: 120px;
}

.information-content p {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 24px;
    text-align: center;

}

@media (max-width: 1024px) {
    .information-header-title {
        font-size: 42px;
        text-align: center;
    }

    .information-header-description {
        font-size: 20px;
        padding: 0 1rem;
    }

    .story-content h2 {
        font-size: 30px;
    }

    .story-description {
        font-size: 16px;
        padding: 0 1rem;
    }

    .informations-grid {
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: center;
    }

    .information-item {
        flex: 0 1 40%;
        padding: 0 2rem;
    }

    .information-content p {
        font-size: 20px;
    }

    .information-icon img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .property-information-section {
        padding: 3rem 1.5rem;
    }

    .information-header-title {
        font-size: 32px;
        text-align: center;
    }

    .information-header-description {
        font-size: 18px;
    }

    .story-content h2 {
        font-size: 26px;
    }

    .story-description {
        font-size: 15px;
    }

    .informations-grid {
        flex-wrap: wrap;
        gap: 2rem;
        align-items: center;
    }

    .information-item {
        padding: 0 1rem;
    }

    .information-content p {
        font-size: 18px;
    }

    .information-icon img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .property-information-section {
        padding: 2rem 1rem;
    }

    .information-header-title {
        font-size: 26px;
        text-align: center;
    }

    .information-header-description {
        font-size: 16px;
    }

    .story-content h2 {
        font-size: 22px;
    }

    .story-description {
        font-size: 14px;
    }

    .information-item {
        flex: 1 0 100%;
        padding: 0;
    }

    .information-content {
        width: 80%;
    }

    .information-content p {
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

    .information-icon img {
        width: 64px;
        height: 64px;
    }
}