body {
    background-color: #F5F5DC;
    font-family: 'Arial', sans-serif;
    padding: 0;
    margin: 0;
}

h1, h2 {
    font-size: 1.5rem;
    font-family: "Playfair Display", serif;
}

p, a, span, .btn-primary, h3 {
    font-size: 1rem;
    font-family: "Open Sans", sans-serif;
}

.navbar, .sectionfooter {
    background-color: #5A1F1A;
}

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

footer {
    background-color: #303030 !important;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #5A1F1A;
    --bs-btn-border-color: #5A1F1A;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #6e221de5;
    --bs-btn-hover-border-color: #6e221de5;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #6e221de5;
    --bs-btn-active-border-color: #6e221de5;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #5A1F1A;
    --bs-btn-disabled-border-color: #5A1F1A;
}

.team-member img {
    max-width: 100%;
    border-radius: 50%;
    transition: transform 0.3s;
}

.team-member:hover img {
    transform: scale(1.1);
}

.team-member {
    text-align: center;
    margin: 1rem 0;
}

.section-title {
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    text-align: center;
    color: #333;
}

.section-content {
    margin-bottom: 2.5rem;
    text-align: center;
}

.values ul {
    list-style-type: none;
    padding: 0;
}

.values ul li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-icons a {
    font-size: 1.5rem;
    margin: 0 0.5rem;
    color: #555;
}

.contact-icons a:hover {
    color: #000;
}

.img-fluid-custom {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

@media screen and (max-width: 600px) {
    h1, h2 {
        font-size: 1.2rem;
    }

    p, a, span, .btn-primary, h3 {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-content {
        font-size: 0.9rem;
    }
}


.navbar-toggler{
    background-color:#F5F5DC !important;
}