* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.logo {
    max-height: 80px;
}

.luxury-banner {
    width: 100%;
    height: 500px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/banner.jpg') center/cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.banner-content {
    max-width: 800px;
    padding: 30px;
}

.banner-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.property-card {
    cursor: pointer;
    transition: transform 0.2s;
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.property-card img {
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.price {
    font-weight: bold;
    color: #e74c3c;
    font-size: 1.2rem;
}

.contact-cta {
    background-color: #f8f9fa;
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    margin-top: 30px;
    border-top: 2px solid #eee;
}

.contact-cta h5 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-btn {
    background-color: #e74c3c;
    color: white;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #c0392b;
    color: white;
}

.social-links a {
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #e74c3c !important;
}



@media (max-width: 768px) {
    .luxury-banner {
        height: 400px;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1.2rem;
    }
}