/* General Styling */
body {
    font-family: 'Montserrat', sans-serif;
}

.about-hero {
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

h2, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

p {
    font-size: 1.1rem;
}

/* Custom Button */
.btn-custom {
    background-color: #007bff;
    color: white;
    border-radius: 25px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #0056b3;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.team-card h5 {
    font-weight: bold;
    margin-top: 15px;
}

.team-card p {
    color: #6c757d;
}

/* Section Styling */
section {
    padding: 60px 0;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* Footer */
footer {
    background-color: #343a40;
    padding: 40px 0;
}

footer p {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
}

/* Image Styling */
.img-fluid {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}
