/* Global Styles */
body,
html {
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #007bff;
}

a:hover {
    text-decoration: underline;
}

/* Top Banner */
.top-banner {
    background-color: #b30000; /* Dark Red */
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
}

.top-banner p {
    margin: 0;
}

.banner-link {
    color: white;
    font-weight: 500;
    text-decoration: underline;
}

.banner-link:hover {
    color: #f0f0f0;
}

/* Main Content Area */
.main-content {
    text-align: center;
    padding: 10px 20px 150px;
    background-color: white;
    margin-bottom: 8vw;
}

.contact-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: black;
}

.contact-subheading {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0;
}

.forum-link {
    color: #007bff;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: white; /* White footer as per image */
    color: #333;
    padding: 50px 25px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.main-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-column {
    flex-basis: 200px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.footer-column .footer-highlight {
    font-weight: 700;
    color: black;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-column a {
    display: block;
    color: #555;
    text-decoration: none;
    margin-bottom: 8px;
    font-weight: normal;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: black;
}

/* Newsletter Signup in Footer */
.newsletter-column {
    align-items: flex-start; /* Align items to the start for this column */
}

.newsletter-signup {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
    width: 100%; /* Ensure it takes full width of its column */
    width: 280px;
}

.newsletter-signup input[type="email"] {
    padding: 10px;
    border: none;
    outline: none;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.8vw;
    width: 80%;
}

.newsletter-signup .newsletter-btn {
    background-color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    color: #555;
    border-left: 1px solid #eee;
}

.newsletter-signup .newsletter-btn:hover {
    background-color: #f0f0f0;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a {
    font-size: 1.2rem;
}

.social-icons a:hover {
    color: black;
}

/* Language Selector */
.language-selector {
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.language-selector:hover {
    color: black;
}