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

.properties-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.75rem;
}

.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;
}

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

.property-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 4px solid #4A90E2;
}

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

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

.property-description {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.property-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #6c757d;
    flex: 1 1 45%;
}

.detail-item i {
    color: #4A90E2;
    margin-right: 0.5rem;
    font-size: 1rem;
}

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

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

.property-location {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #6c757d;
}

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

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

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

    .property-card {
        margin-bottom: 1.5rem;
    }

    .detail-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 576px) {
    .property-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}