:root {
    --primary: #a08beb;
    --dark-primary: #7c60e4;
}

.section {
    margin-bottom: 2rem;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Arial, 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;
}

.header-logo-placeholder {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0.5rem 0;
}

/* 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;
}

/* 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;
}

.logo-placeholder {
    width: 200px;
    height: 100px;
    background-color: #666;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 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: 200px;
    height: 200px;
    display: block;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.body-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    text-align: center;
}

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

    .header-logo-placeholder {
        font-size: 1rem;
    }

    .logo-placeholder {
        width: 150px;
        height: 75px;
        font-size: 18px;
    }

    .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;
    }
}