.house-features-section {
    padding: 4rem 0;
    background-color: #f0f2f5;
}
  
.house-features-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.house-features-title {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #2c3e50;
    font-size: 2.75rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.house-features-title i {
    margin-right: 0.5rem;
    color: #a4b9e7;
}

.house-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.house-feature-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.house-feature-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.house-feature-item h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.house-feature-item p {
    color: #7f8c8d;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .house-features-title {
        font-size: 2.25rem;
    }
    
    .house-features-grid {
        grid-template-columns: 1fr;
    }
}