.ps-site-features .section-title {
    color: #bc8246;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 1px;
}
.ps-site-features .section-subtitle {
    font-weight: bold;
    margin-bottom: 50px;
    font-size: 36px;
    color: #000;
}
.ps-site-features .features-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    border: none;
    padding: 0;
}
.ps-site-features .feature-item {
    display: flex;
    align-items: flex-start;
    flex: 1;
    position: relative;
    padding: 0 15px;
}
.ps-site-features .feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background-color: #e1e1e1;
}
.ps-site-features .feature-icon {
    margin-right: 15px;
    color: var(--primary-color);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ps-site-features .feature-icon i {
    font-size: 36px;
}
.ps-site-features .feature-icon svg {
    width: 36px;
    height: 36px;
    fill: currentColor;
}
.ps-site-features .feature-content h4 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: bold;
    color: black;
}
.ps-site-features .feature-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
.ps-site-features .features-footer {
    margin-top: 50px;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 20px;
}
.ps-site-features .features-footer strong,
.ps-site-features .features-footer b {
    font-weight: bold;
}

@media (max-width: 991px) {
    .ps-site-features .features-wrapper {
        flex-wrap: wrap;
    }
    .ps-site-features .feature-item {
        flex: 0 0 48%;
        margin-bottom: 30px;
    }
    .ps-site-features .feature-item:nth-child(even)::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .ps-site-features .feature-item {
        flex: 0 0 100%;
    }
    .ps-site-features .feature-item::after {
        display: none !important;
    }
}
