/* Enhanced styling matching site aesthetics */
.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 3rem 0;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.info-card {
    border: none;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
    border-top: 3px solid #A0785A;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.info-icon {
    background-color: rgba(160, 120, 90, 0.1);
    color: #A0785A;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background-color: #A0785A;
    color: white;
    transform: scale(1.1);
}

.info-card h3 {
    color: #5e503f;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
}

.info-card h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #A0785A;
}

.map-container {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.btn-primary-custom {
    background-color: #A0785A;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #8d6a4e;
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(160, 120, 90, 0.3);
}

.info-link {
    color: #A0785A;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px dotted #A0785A;
}

.info-link:hover {
    color: #5e503f;
    border-bottom: 1px solid #5e503f;
}