/* ===== ROOT & RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-night-blue: #12125a;
    --light-blue: #1362a8;
    --turquoise: #0ab196;
    --salmon: #e27567;
    --burgundy: #7f2b44;
    --black: #1a1a1a;
    --white: #ffffff;
}

/* Custom Font Loading - Noto Sans Family */
/* Thin - 100 */
@font-face {
    font-family: 'NotoSans';
    src: url('static/font/NotoSans-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

/* ExtraLight - 200 */
@font-face {
    font-family: 'NotoSans';
    src: url('static/font/NotoSans-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

/* Light - 300 */
@font-face {
    font-family: 'NotoSans';
    src: url('static/font/NotoSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Regular - 400 */
@font-face {
    font-family: 'NotoSans';
    src: url('static/font/NotoSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Medium - 500 */
@font-face {
    font-family: 'NotoSans';
    src: url('static/font/NotoSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* SemiBold - 600 */
@font-face {
    font-family: 'NotoSans';
    src: url('static/font/NotoSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Bold - 700 */
@font-face {
    font-family: 'NotoSans';
    src: url('static/font/NotoSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* ExtraBold - 800 */
@font-face {
    font-family: 'NotoSans';
    src: url('static/font/NotoSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

/* Black - 900 */
@font-face {
    font-family: 'NotoSans';
    src: url('static/font/NotoSans-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* ExtraCondensed Black */
@font-face {
    font-family: 'NotoSans';
    src: url('static/font/NotoSans_ExtraCondensed-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-stretch: extra-condensed;
}

body {
    font-family: 'NotoSans';
    background-color: #f5f5f5;
    color: var(--black);
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
}


/* ===== TOPLINE ===== */
.topline {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 3px solid var(--light-blue);
}

.topline-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-logo img {
    height: 60px;
}

.right-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}

.right-logos img {
    height: 50px;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: linear-gradient(135deg, var(--dark-night-blue) 0%, var(--light-blue) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-links li {
    flex: 1;
    text-align: center;
}

.nav-tab {
    display: block;
    padding: 15px 10px;
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-tab:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom-color: var(--turquoise);
}

.nav-tab-disabled {
    display: block;
    padding: 15px 10px;
    color: rgba(255, 255, 255, 0.5);
    cursor: default;
}

.language-button {
    background-color: var(--turquoise);
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--white);
    display: inline-block;
    font-weight: 600;
}

.language-button:hover {
    background-color: var(--salmon);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hide radio buttons */
input[type="radio"] {
    background-color: #1362a8;
    display: none;
}

.topline {
    background-color: white;
    padding: 20px 0;
    /* border-bottom: 1px solid white; */
}
.topline-container {
    /* max-width: 1800px; */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.left-logo img {
    height: 100px;
}
.right-logos {
    display: flex;
    gap: 30px;
    align-items: center;
}
.right-logos img {
    height: 80px;
}
/* Navigation Bar */
.navbar {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    /* max-width: 1800px; */
    background-color: #12125a;
    padding: 10px 20px;

}
.nav-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: auto;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.nav-tab {
    font-size: 20px;
    color: white;
    padding: 6px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: block;
    cursor: pointer;
    user-select: none;
}
.nav-tab:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.language-button {
    font-size: 18px;
    color: white;
    padding: 6px 12px;
    /* border: 2px solid rgba(255, 255, 255, 0.2); */
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: block;
    cursor: pointer;
    user-select: none;
}
.language-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    /* color: #12125a; */
    transform: translateY(-2px);
}
/* Active tab styling */
#tab-home:checked~.navbar label[for="tab-home"],
#tab-about:checked~.navbar label[for="tab-about"],
#tab-faq:checked~.navbar label[for="tab-faq"],
#tab-contact:checked~.navbar label[for="tab-contact"],
#tab-privacy:checked~.navbar label[for="tab-privacy"] {
    background-color: rgba(255, 255, 255, 0.3);
    /* background-color: rgba(255, 255, 255, 1);
        color: #12125a; */
}
/* Main Content */
main {
    flex: 1;
    width: 100%;
    margin: 0 auto;
}
/* tab-content - hidden by default */
.tab-content {
    display: none;
    width: 100%;
    /* max-width: 1800px; */
    /* min-height: calc(150vh - 200px); */
    /* margin: 0 auto; */
    /* padding: 80px 20px; */
    align-items: stretch;
    justify-content: center;
    /* background-color: white; */
    background-image: url("static/Background image.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
/* Show section when corresponding radio is checked */
#tab-home:checked~main #content-home,
#tab-about:checked~main #content-about,
#tab-faq:checked~main #content-faq,
#tab-contact:checked~main #content-contact,
#tab-privacy:checked~main #content-privacy {
    display: flex;
}

/* Home Content Styling */
.content-home {
    width: 100%;
    min-height: calc(100vh - 250px);
    padding-bottom: 56.25% 20px;
    position: relative;
    /* background-image: url("static/Background image.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; */
}

.content-home h1 {
    font-size: 3em;
    font-stretch: extra-condensed;
    color: white;
    margin: 50px 2% 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), -1px -1px 2px rgba(0, 0, 0, 0.5);
}

.content-home p {
    font-size: 1.2em;
    color: white;
    margin: 0 auto;
    margin-bottom: 15px;
    margin-left: 20px;
    margin-right: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8), -1px -1px 2px rgba(0, 0, 0, 0.5);
}

.content-home input[type="text"] {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 300px;
    margin-left: 2%;
    margin-bottom: 15px;
}

.content-home label {
    color: white;
    text-decoration: underline;
    cursor: pointer;
}

.content-home button {
    background-color: #0ab196;
    color: white;
    border: 2px solid white;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 1%;
    padding: 10px 30px;
    font-size: 1em;
    font-weight: bold;
}

.content-home a {
    color: white;
    text-decoration: underline;
    cursor: pointer;
}

/* About Content Styling */
.content-about {
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
    background-color: white;
}

.about-section {
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.95);
    margin: 50px 20px;
    padding: 20px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-section h2 {
    font-size: 2em;
    font-stretch: extra-condensed;
    color: #1362a8;
    margin: 10px 2% 10px;
}

.about-section p {
    font-size: 1.2em;
    color: black;
    margin: 0 auto;
    margin-bottom: 30px;
    margin-left: 2%;
    margin-right: 2%;
}

.about-section a {
    color: #12125a;
    text-decoration: underline;
    cursor: pointer;
}
/* 
.about-section ul {
    margin-left: 10px;
    margin-bottom: 20px;
    background-color: rgba(19, 98, 168, 0.12);
    padding: 20px 30px 20px 50px;
    border-radius: 8px;
    border-top: 1px solid var(--light-blue);
    border-left: 3px solid var(--dark-night-blue);
} */

.about-section ul {
    margin-left: 10px;
    margin-bottom: 20px;
    /* background-color: rgba(19, 98, 168, 0.12); */
    padding: 0px 30px 20px 50px;
    /* border-radius: 8px;
    border-top: 1px solid var(--light-blue);
    border-left: 3px solid var(--dark-night-blue); */
}

.about-section li {
    font-size: 1.2em;
    color: #333;
    line-height: 1.9;
    margin-bottom: 6px;
}

.faq-links {
    width: 100%;
    margin: 0 auto;
    position: relative;
    background-color: white;
}

.faq-links ul {
    list-style-type: none;
    padding-left: 0;
    margin-left: 2%;
}

.faq-links h2 {
    font-size: 2em;
    font-stretch: extra-condensed;
    color: #1362a8;
    margin: 10px 2% 10px;
}

/* FAQ Section Styling */
.faq-section {
    width: 100%;
    background-color: transparent;
    padding: 20px 20px;
}

.faq-section h1 {
    font-size: 3em;
    color: white;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), -1px -1px 2px rgba(0, 0, 0, 0.5);
}

.faq-toc {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-toc h2 {
    font-size: 1.5em;
    color: #1362a8;
    margin-bottom: 15px;
}

.faq-toc ul {
    list-style: none;
    padding-left: 0;
}

.faq-toc li {
    margin-bottom: 10px;
}

.faq-toc a {
    color: #1362a8;
    text-decoration: none;
    font-size: 1.1em;
    display: block;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.faq-toc a:hover {
    background-color: hsla(208, 80%, 37%, 0.15);
    padding-left: 20px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #1362a8;
    scroll-margin-top: 80px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
    font-size: 1.3em;
    color: #1362a8;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1.1em;
    color: #333;
    line-height: 1.6;
}

.faq-item h4 {
    font-size: 1.1em;
    font-weight: 700;
    color: #1362a8;
    margin-top: 14px;
    margin-bottom: 2px;
}

.faq-item a {
    color: #1362a8;
    text-decoration: underline;
}

.faq-item a:hover {
    color: #0ab196;
}

.faq-item label {
    color: #1362a8;
    text-decoration: underline;
}

.faq-item label:hover {
    color: #0ab196;
}

.faq-item ul {
    margin-left: 10px;
    /* margin-bottom: 20px; */
    background-color: rgba(19, 98, 168, 0.03);
    padding: 20px 30px 20px 50px;
    border-radius: 8px;
    /* border-left: 3px solid var(--turquoise); */
}

.faq-item li {
    font-size: 1.1em;
    color: #333;
    /* line-height: 1.9; */
    /* margin-bottom: 12px; */
}

/* Contact Section Styling */
.contact-section {
    min-height: calc(100vh - 300px);
    width: 100%;
    background: transparent;
    padding: 50px 70px;
}

.contact-section h1 {
    font-size: 3em;
    color: white;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), -1px -1px 2px rgba(0, 0, 0, 0.5);
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-left: 5px solid var(--light-blue);
}

.contact-info p {
    font-size: 1.1em;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-info label {
    color: #1362a8;
    text-decoration: underline;
}

.contact-info label:hover {
    color: #0ab196;
    cursor: pointer;
}

.contact-info a {
    color: #1362a8;
    text-decoration: underline;
}

.contact-info a:hover {
    color: #0ab196;
    cursor: pointer;
}

/* Contact Form Styling */
.contact-form {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(19, 98, 168, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 1em;
    font-weight: 600;
    color: var(--dark-night-blue);
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 1em;
    font-family: 'NotoSans', sans-serif;
    color: #333;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(19, 98, 168, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-style: italic;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: linear-gradient(135deg, var(--dark-night-blue) 0%, var(--light-blue) 100%);
    color: white;
    font-size: 1.1em;
    font-weight: 600;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--turquoise) 100%);
}

.submit-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.required-note {
    margin-top: 15px;
    font-size: 0.9em;
    color: #666;
    font-style: italic;
}

/* Privacy Section Styling */
.privacy-section {
    width: 100%;
    background: transparent;
    padding: 50px 70px;
}

.privacy-section h1 {
    font-size: 2.5em;
    color: white;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), -1px -1px 2px rgba(0, 0, 0, 0.5);
}

.privacy-section h1:first-of-type {
    margin-bottom: 5px;
}

.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.privacy-container h2 {
    font-size: 1.8em;
    color: var(--light-blue);
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--turquoise);
}

.privacy-container p {
    font-size: 1.05em;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: left;
}

.privacy-container ul {
    margin-left: 10px;
    margin-bottom: 20px;
    background-color: rgba(19, 98, 168, 0.03);
    padding: 20px 30px 20px 50px;
    border-radius: 8px;
    border-left: 3px solid var(--turquoise);
}

.privacy-container li {
    font-size: 1.05em;
    color: #333;
    line-height: 1.9;
    margin-bottom: 12px;
}

.privacy-container a {
    color: #1362a8;
    text-decoration: underline;
}

.privacy-container a:hover {
    color: #0ab196;
    cursor: pointer;
}

.privacy-container label {
    color: #1362a8;
    text-decoration: underline;
}

.privacy-container label:hover {
    color: #0ab196;
    cursor: pointer;
}

.privacy-container hr {
    margin-top: 40px;
    margin-bottom: 25px;
    border: none;
    border-top: 2px solid rgba(19, 98, 168, 0.2);
}

.footnotes hr {
    margin-top: 30px;
    margin-bottom: 20px;
    border: none;
    border-top: 1px solid #ccc;
}

.footnotes p {
    font-size: 0.9em;
    margin-bottom: 2px;
    padding-left: 10px;
    border-left: 2px solid rgba(10, 177, 150, 0.3);
    background-color: rgba(18, 18, 90, 0.02);
    padding: 8px 10px;
    border-radius: 4px;
}

.footnotes a {
    color: #1362a8;
    text-decoration: underline;
}

.footnotes a:hover {
    color: #0ab196;
    cursor: pointer;
}

.privacy-container p[style*="text-align: right"] {
    font-style: italic;
    color: #666;
    background-color: transparent;
    border: none;
    padding: 0;
}

/* ===== LANDing PAGE STYLES ===== */
.landing-main {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.landing-container {
    text-align: center;
}

.landing-container h1 {
    color: var(--dark-night-blue);
    margin-bottom: 10px;
    font-size: 2em;
}

.landing-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    max-width: 1400px;
    margin: 0 auto;
}

.country-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.country-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--dark-night-blue) 0%, var(--light-blue) 100%);
    color: white;
}

.country-card .flag {
    flex-shrink: 0;
}

.country-card .country-name {
    flex: 1;
    text-align: left;
    font-weight: 600;
    font-size: 1.05em;
}

.country-card .country-code {
    font-size: 0.85em;
    opacity: 0.8;
    font-family: monospace;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}


/* .language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    max-width: 1400px;
    margin: 0 auto;
} */


.language-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
}

.language-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.language-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--dark-night-blue) 0%, var(--light-blue) 100%);
    color: white;
}

.country-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.country-card.disabled:hover {
    transform: none;
    box-shadow: none;
    background: white;
    color: #333;
}

.language-card .language-name {
    flex: 1;
    text-align: left;
    font-weight: 500;
    font-size: 0.9rem;
}


.nav-tab-disabled {
    color: rgba(255, 255, 255, 0.6);
    cursor: default;
}

/* Responsive design for landing page */
@media (max-width: 992px) {
    .country-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Medium screen adjustments for topline and nav */
    .topline-container {
        padding: 0 30px;
    }
    
    .left-logo img {
        height: 70px;
    }
    
    .right-logos {
        gap: 20px;
    }
    
    .right-logos img {
        height: 60px;
    }
    
    .nav-tab {
        font-size: 16px;
        padding: 8px 15px;
    }
    
    .language-button {
        font-size: 16px;
        padding: 8px 12px;
    }
}

@media (max-width: 576px) {
    .country-grid {
        grid-template-columns: 1fr;
    }
    
    .landing-container h1 {
        font-size: 1.5em;
    }
    
    .country-card {
        padding: 12px 15px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Topline responsive */
    .topline-container {
        padding: 0 20px;
        flex-direction: row;
        gap: 15px;
    }
    
    .left-logo img {
        height: 60px;
    }
    
    .right-logos {
        flex-direction: row;
        gap: 10px;
    }
    
    .right-logos img {
        height: 50px;
    }
    
    /* Navigation responsive */
    .navbar {
        padding: 5px 10px;
    }
    
    .nav-container {
        padding: 0 5px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center;
    }
    
    .nav-links li {
        flex: 0 1 auto;
    }
    
    .nav-tab {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .language-button {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .contact-container {
        padding: 25px;
    }
    
    .privacy-container {
        padding: 25px 20px;
    }
    
    .contact-section,
    .privacy-section {
        padding: 30px 20px;
    }
    
    .privacy-section h1 {
        font-size: 2em;
    }
    
    .privacy-container h2 {
        font-size: 1.5em;
    }

    .faq-item {
        scroll-margin-top: 100px;
    }

    /* ...existing code... */
}

/* Additional responsive breakpoint for very small screens */
@media (max-width: 480px) {
    .topline-container {
        padding: 0 10px;
    }
    
    .left-logo img {
        height: 50px;
    }
    
    .right-logos img {
        height: 40px;
    }
    
    .nav-tab {
        font-size: 12px;
        padding: 6px 8px;
    }
    
    .language-button {
        font-size: 12px;
        padding: 6px 10px;
    }

    .faq-item {
        scroll-margin-top: 130px;
    }
}

footer {
    background-color: #12125a;
    color: white;
    padding: 30px 70px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a,
.footer-links label {
    color: white;
    text-decoration: none;
    font-size: 1em;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-links a:hover,
.footer-links label:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}