:root {
    --primary: #a08beb;
    --dark-primary: #9469EE;
    --spacing-sm: 0.75rem;
    --spacing-md: 1.25rem;
    --spacing-lg: 2rem;
}

.section {
    margin-bottom: var(--spacing-lg);
}

.section:last-child {
    margin-bottom: 0;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f5f5;
    line-height: 1.6;
}

.header {
    background-color: #d5ccf6;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100; /* Ensures it stays above other content */
}

.header-logo {
    text-decoration: none;
    color: white;
    display: inline-block;
}

.header-logo:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.header-logo-img {
    max-height: 40px;
    height: auto;
}

/* Navigation Menu Styles */
.header-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding-right: 4.1667%;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: black;
    text-decoration: none;
    padding: 0.5rem 0;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.3s;
}

.nav-menu a:hover {
    border-bottom-color: black;
}

.nav-menu a.active {
    border-bottom-color: black;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
}

.lang-dropdown-toggle {
    color: black;
    font-weight: 500;
    padding: 0.5rem 0;
    cursor: pointer;
}

.lang-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    list-style: none;
    margin: 0;
    padding: 0.25rem 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    min-width: 100px;
    z-index: 200;
}

.lang-dropdown:hover .lang-dropdown-menu,
.lang-dropdown:focus-within .lang-dropdown-menu {
    display: block;
}

.lang-dropdown-menu li {
    margin: 0;
}

.lang-dropdown-menu a {
    display: block;
    padding: 0.4rem 0.75rem;
    color: black;
    text-decoration: none;
    font-weight: 500;
    border-bottom: none;
    white-space: nowrap;
}

.lang-dropdown-menu a:hover {
    background-color: #f0ecfa;
    border-bottom-color: transparent;
}

/* Main Content Styles */
.main-content {
    flex: 1;
    padding: 0; /* Remove padding since container handles it now */
    display: flex; /* Add this */
    flex-direction: column; /* Add this */
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100%;
    background-color: white;
}

/* Logo Styles */
.logo {
    max-width: 300px;
    height: auto;
}

/* Footer Styles */
.footer {
    background-color:  #d5ccf6;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}

.footer a {
    color: black;
    text-decoration: none;
    margin-right: 2rem;
}

.footer a:last-child {
    margin-right: 0;
}

.footer a:hover {
    opacity: 0.8;
}

.body-logo {
    width: 150px;
    height: 150px;
    display: block;
    margin: 0 auto;
    margin-bottom: var(--spacing-sm);
}

.header-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 34px;
    text-align: center;
    font-weight: 600;
    color: var(--dark-primary);
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
}

.sub-header-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    text-align: center;
    font-weight: 600;
    color: var(--dark-primary);
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
}

.body-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.body-text:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .header-logo-img {
        max-height: 30px;
    }

    .content-container {
        padding: 1rem;
    }

    .footer a {
        margin-right: 1rem;
        display: inline-block;
        margin-bottom: 0.5rem;
    }

    /* Mobile Navigation */
    .header-nav {
        padding-right: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    .lang-dropdown-toggle {
        font-size: 0.9rem;
    }

    .lang-dropdown-menu {
        right: 0;
        min-width: 80px;
    }

    .body-text {
        font-size: 18.5px;
    }
}