.features-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    background-color: #FFFFFF;
    z-index: 20;
}

.features-container {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.feature-side {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 100px;
    position: relative;
}

.feature-center {
    width: 30%;
    padding: 100px 0;
    text-align: center;
    z-index: 2;
}

.quote-container {
    margin-bottom: 80px;
}

.quote-container blockquote {
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: #1A1A1A;
    margin-bottom: 20px;
    font-weight: bold;
}

.quote-container cite {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: #B88147;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.feature-pillars {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.pillar h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1A1A1A;
}

.pillar p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4A4A4A;
    max-width: 600px;
    margin: 0 auto;
    font-weight: bold;
}

.scroll-img {
    width: 80%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: transform 0.1s linear, opacity 0.5s ease;
    will-change: transform, opacity;
}

@media (max-width: 1024px) {
    .features-container {
        flex-direction: column;
    }

    .feature-side {
        display: none;
    }

    .feature-center {
        width: 100%;
        padding: 0 20px;
    }
}