* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background-color: #000;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 999;
}

.nav-menu.active {
    right: 0;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
}

.nav-link:hover {
    color: #ccc;
}

.hamburger {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
    z-index: 1001;
    position: relative;
    transition: transform 0.3s ease;
}

.hamburger.active {
    transform: rotate(90deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logos-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.logo-top {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logos-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px; /* Fixed height container for alignment */
}

.logo-item a {
    display: block;
    transition: transform 0.3s ease;
}

.logo-item a:hover {
    transform: scale(1.05);
}

.logo {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    filter: brightness(1);
    transition: filter 0.3s ease;
    display: block;
}

/* Make bottom logos equal width */
.logos-bottom .logo {
    width: 200px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

/* Move Alphabetic logo item down 20px */
.logos-bottom .logo-item:first-child {
    transform: translateY(15px);
}

.logos-bottom .logo-item:first-child a:hover {
    transform: scale(1.05);
}

.logo:hover {
    filter: brightness(1.1);
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #111;
    border-radius: 10px;
    margin-top: 100px;
}

.form-container h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #222;
    color: #fff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #555;
    background-color: #333;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn {
    background-color: #333;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #555;
}

.btn-primary {
    background-color: #444;
}

.btn-primary:hover {
    background-color: #666;
}

.success-message {
    background-color: #2d5a2d;
    color: #90ee90;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: center;
}

.error-message {
    background-color: #5a2d2d;
    color: #ff9090;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: center;
}

.privacy-content {
    line-height: 1.6;
    color: #ddd;
}

.privacy-content h3 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-content p {
    margin-bottom: 1rem;
}

.privacy-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

.privacy-content a {
    color: #ccc;
    text-decoration: underline;
}

.privacy-content a:hover {
    color: #fff;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .nav-menu {
        width: 250px;
    }

    .logos-bottom {
        flex-direction: column;
        gap: 2rem;
    }

    .logo {
        max-height: 80px;
    }

    .logos-bottom .logo {
        width: 150px;
        max-height: 80px;
    }

    .logo-item {
        height: 80px; /* Adjusted container height for tablet */
    }

    .container {
        padding: 0 1rem;
    }

    .form-container {
        margin: 100px 1rem 2rem;
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .nav-menu {
        width: 200px;
    }

    .logo {
        max-height: 60px;
    }

    .logos-bottom .logo {
        width: 120px;
        max-height: 60px;
    }

    .logo-item {
        height: 60px; /* Adjusted container height for mobile */
    }

    .logos-container {
        gap: 1.5rem;
    }

    .logos-bottom {
        gap: 1.5rem;
    }
}
