.glow-text {
    color: white!important;
    text-shadow: 0 0 8px #758271, 0 0 16px #758271, 0 0 24px #758271;
}

.btMainLogo {
    max-height: 80px;
    height: auto;
    width: auto;
}

@media (max-width: 768px) {
    .btMainLogo {
        max-height: 50px; /* Shrink logo on tablets/phones */
    }
}

@media (max-width: 480px) {
    .btMainLogo {
        max-height: 40px; /* Even smaller for very narrow screens */
    }
}


input:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px #6a8070 !important;
}

select:focus {
    outline: none !important;
    border-color: #6a8070 !important;
    box-shadow: 0 0 0 2px #6a8070 !important;
}
/* Contacts form CSS */

.flex-wrapper-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px; /* or less if needed */
    max-width: 600px; /* constrain total width */
    margin: 0 auto;
}

.header-text {
    font-size: 2rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.image-column {
    flex-shrink: 0;
}

.middle-image {
    max-width: 120px;
    height: auto;
}

.contact-top-image-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-top-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.contact-top-image .top-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .contact-top-image {
        height: 180px; /* shorter height for mobile */
    }
}

@media (max-width: 480px) {
    .contact-top-image {
        height: 140px; /* even shorter on very small screens */
    }
}
/* End of conctacts css */

#responseSection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background-color: #f4f4f4; /* Background color similar to the site */
}

.container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.left-column, .right-column {
    flex: 1;
    padding: 20px;
}

.left-column {
    text-align: center;
}

.icon-container {
    margin-bottom: 20px;
}

.icon {
    width: 100px;
    height: 100px;
    border-radius: 50%; /* Round shape for the icon */
}

.text-container h4 {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50; /* Color similar to the site */
}

.text-container p {
    font-size: 18px;
    color: #34495e; /* Color similar to the site */
}

.right-column form {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align form fields to the left */
}

.right-column form input, .right-column form textarea {
    margin-bottom: 15px;
    padding: 15px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ddd; /* Border similar to the site's inputs */
    width: 100%;
}

button {
    padding: 15px;
    font-size: 16px;
    background-color: #27ae60; /* Green button similar to the site */
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #2ecc71;
}

#responseMessage {
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
}

.bt_bb_headline_content:before {
    color:red;
}


