/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.navbar {
    margin-bottom: 20px;
}

.jumbotron {
    background: url('assets/images/hero.jpg') no-repeat center center;
    background-size: cover;
    color: white;
}

.container {
    margin-top: 20px;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

/* Team and Services Styles */
.card {
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-weight: bold;
}

.custom-img {
    height: 250px; /* or any height you prefer */
    object-fit: cover; /* ensures the image doesn't stretch */
}

/* Form Styles */
form {
    max-width: 500px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Map Styles */
#map {
    width: 100%;
    height: 400px;
    margin-top: 20px;
}
