:root {
    --primary-color: #8e2a29;
    --secondary-color: #f8f9fa;
    --accent-color: #d4af37;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.navbar {
    background-color: var(--primary-color);
}

.navbar-brand, .nav-link {
    color: white !important;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.property-card {
    transition: transform 0.3s;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.property-card:hover {
    transform: translateY(-5px);
}

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

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 0;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.section-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.contact-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 10px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #6e1a1a;
    border-color: #6e1a1a;
}

.logo {
    height: 50px;
    margin-right: 10px;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.property-details {
    margin-bottom: 30px;
}

.property-features {
    list-style-type: none;
    padding-left: 0;
}

.property-features li {
    margin-bottom: 8px;
}

.property-features i {
    color: var(--accent-color);
    margin-right: 8px;
}

.map-container {
    height: 300px;
    margin-bottom: 20px;
}