.features-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.features-content {
    flex: 1;
}

.features-image {
    flex: 1;
}

.features-image img {
    box-shadow: 20px 20px 0 var(--secondary-color); /* Luxury touch */
    border-radius: 4px;
}

.feature-item {
    display: flex;
    margin-bottom: 30px;
}

.f-icon {
    width: 60px;
    height: 60px;
    background: rgba(173, 138, 78, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.f-text h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.f-text p {
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .features-wrapper {
        flex-direction: column;
    }
}

/* Tighten Spacing for Features Section */
.home-features {
    padding-bottom: 30px !important;
    margin-bottom: 0 !important;
}

@media (max-width: 992px) {
    .home-features {
        padding-bottom: 20px !important;
        margin-bottom: 0 !important;
    }
}