/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: none;
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-menu a.active-page {
    color: #005A9C;
    font-weight: 600;
}

.nav-register-btn {
    background: #ffffff !important;
    color: #005A9C !important;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 90, 156, 0.3);
    border: 2px solid #005A9C;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
}

/* Registration Section */
.registration {
    padding: 150px 0 100px;
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.registration-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.registration-message {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.registration-message h2 {
    font-size: 2.5rem;
    color: #005A9C;
    margin-bottom: 2rem;
    font-weight: 700;
}

.message-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.message-text p {
    margin-bottom: 1.5rem;
}

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

.message-text strong {
    color: #333;
    font-weight: 600;
}

.stay-tuned {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
    font-size: 1.3rem;
    color: #005A9C;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #005A9C;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #d1d5db;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Footer Accessibility Notice */
.footer-notice {
    background: #0b0b0b;
    border-top: 1px solid #1f2937;
    border-bottom: 1px solid #1f2937;
    padding: 1rem 0;
    margin: 0 0 1rem 0;
}

.footer-notice p {
    margin: 0;
    color: #e5e7eb;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .registration {
        padding: 120px 20px 80px;
    }

    .registration-message {
        padding: 2rem 1.5rem;
    }

    .registration-message h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .message-text {
        font-size: 1.1rem;
    }

    .stay-tuned {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .registration-message {
        padding: 1.5rem 1rem;
    }

    .registration-message h2 {
        font-size: 1.8rem;
    }

    .message-text {
        font-size: 1rem;
    }

    .stay-tuned {
        font-size: 1rem;
    }
}

