body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.insight-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3454;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.section-header p {
    color: #6c757d;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.property-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.property-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3454;
    margin-bottom: 0.5rem;
}

.property-description {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.property-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #9ca3af;
}

.detail-item i {
    color: #d1d5db;
    margin-right: 0.4rem;
    font-size: 0.9rem;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid #e9ecef;
    margin-top: auto;
}

.property-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3454;
}

.property-location {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #9ca3af;
}

.property-location i {
    color: #d1d5db;
    margin-right: 0.4rem;
}

/* What We Do Section */
.what-we-do-section {
    padding: 4rem 0;
    background-color: white;
}

.service-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: #4A90E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background-color: #357ABD;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3454;
    margin-bottom: 1rem;
}

.service-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .insight-section {
        padding: 3rem 0;
    }

    .what-we-do-section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .property-details {
        grid-template-columns: 1fr;
    }

    .service-card {
        margin-bottom: 2rem;
    }
}