.overview-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-hdtxt.foo {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #1c3837 30%, #2a5654 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    position: relative;
}

.section-hdtxt.foo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #1c3837;
    border-radius: 2px;
}

.highlight-box {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.highlight-icon {
    color: #1c3837;
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #1c3837;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.feature-icon i {
    color: #1c3837;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.feature-text h4 {
    color: #1c3837;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.property-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
}

.property-image:hover {
    transform: scale(1.02);
}

.image-overlay {
    background: linear-gradient(0deg, rgba(28,56,55,0.9) 0%, rgba(28,56,55,0.4) 100%);
}

.badge {
    background: #e5262d;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Custom animations */
.fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
