
.container {
    margin: 0 auto;
    /* padding: 20px 20px; */
    /* font-family: 'Arial', sans-serif; */
    color: #333;
}

h3 {
    color: #00666b;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}

h2 {
    color: #bdae9d;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 25px;
}

#contactForm .form-control {
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 10px 12px;
    font-size: 14px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

#contactForm .form-control:focus {
    border-color: #00666b;
    box-shadow: none;
}

#contactForm textarea.form-control {
    resize: none;
}

#contactForm button.btn {
    background-color: #bdae9d;
    color: #fff;
    border: none;
    padding: 12px;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s;
}

#contactForm button.btn:hover {
    background-color: #a89a87;
}

.contact-right {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.contact-right .row {
    display: flex;
    gap: 30px;             /* needed space between cols */
}

.contact-right .contact-block {
    flex: 1;               /* equal space for both columns */
}
.contact-block {
    background-color: #f9f7f3;
    padding: 10px;
    border-radius: 8px;
}

.contact-block h5 {
    color: #00666b;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Social icons */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    color: #fff;
    background-color: #00666b;
    padding: 10px;
    border-radius: 70%;
}

.social-icons a:hover {
    background-color: #339999;
}

/* Hours table */
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    font-size: 14px;
}

.map {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 8px;
    margin-top: 20px;
}

.navbar {
    padding: 15px 30px;
}

.navbar-brand {
    color: #00666b;
    font-weight: bold;
    font-size: 20px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin-left: 15px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #00666b;
}

@media (max-width: 768px) {
    .contact-right {
        flex-direction: column;
    }

    #contactForm button.btn {
        width: 100%;
    }
}