.prive-pillars-wrapper {
    box-sizing: border-box;
    width: 100%;
    padding: 80px 4% 90px;
    background-color: #fbf9f4;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.pp-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 65px;
    gap: 40px;
    flex-wrap: wrap;
}

.pp-header-left {
    flex: 1 1 500px;
}

.pp-header-right {
    flex: 0 1 450px;
}

.pp-tagline-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.pp-tagline-line {
    display: inline-block;
    width: 32px;
    height: 1px;
    background-color: #c2a172;
}

.pp-tagline-text {
    font-size: 11px;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: #c2a172;
    text-transform: uppercase;
}

.pp-main-title {
    font-family: "Playfair Display", "Didot", "Cinzel", Georgia, serif;
    font-size: clamp(32px, 4.2vw, 56px);
    line-height: 1.2;
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.pp-title-dark {
    color: #1c252c;
    display: block;
}

.pp-title-accent {
    color: #c2a172;
    font-style: italic;
    display: block;
}

.pp-header-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #5e6870;
    margin: 0;
    font-weight: 400;
}

/* Pillars grid box */
.pp-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(28, 37, 44, 0.1);
    background-color: #ffffff;
}

.pp-grid-column {
    padding: 50px 35px 55px;
    border-right: 1px solid rgba(28, 37, 44, 0.1);
    box-sizing: border-box;
    transition: background-color 0.4s ease, transform 0.4s ease;
}

.pp-grid-column:last-child {
    border-right: none;
}

.pp-grid-column:hover {
    background-color: #fcfbfa;
}

.pp-pillar-num {
    font-family: "Playfair Display", "Didot", "Cinzel", Georgia, serif;
    font-size: 14px;
    color: #c2a172;
    margin-bottom: 35px;
    font-weight: 400;
}

.pp-pillar-title {
    font-family: "Playfair Display", "Didot", "Cinzel", Georgia, serif;
    font-size: 21px;
    line-height: 1.3;
    color: #1c252c;
    margin: 0 0 18px 0;
    font-weight: 400;
}

.pp-pillar-desc {
    font-size: 13.5px;
    line-height: 1.75;
    color: #5e6870;
    margin: 0;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .pp-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .pp-grid-column {
        border-bottom: 1px solid rgba(28, 37, 44, 0.1);
    }
    .pp-grid-column:nth-child(2n) {
        border-right: none;
    }
    .pp-grid-column:nth-child(3),
    .pp-grid-column:nth-child(4) {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .prive-pillars-wrapper {
        padding: 50px 20px 60px;
    }
    .pp-header-row {
        margin-bottom: 40px;
        gap: 25px;
    }
    .pp-grid-container {
        grid-template-columns: 1fr;
    }
    .pp-grid-column {
        border-right: none !important;
        border-bottom: 1px solid rgba(28, 37, 44, 0.1);
        padding: 40px 25px;
    }
    .pp-grid-column:last-child {
        border-bottom: none;
    }
}
