:root {
    --border-color: #e5e7eb;
    --text-gray: #6b7280;
    --primary-color: #3b82f6;
    --primary-dark: #1d4ed8;
}

/* Header Styles */
.header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.btn-cta {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
}

.nav-link.btn-cta:hover {
    background: var(--primary-dark);
    color: white;
}

.logo {
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.btn-login {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.875rem;
}

.btn-login:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    padding-right: 0.5rem;
}

/* Footer Styles */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem 0 1rem;
    text-align: center;
}

.footer .container {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0.25rem 0.5rem; /* Add padding for better touch targets */
    border-radius: 0.25rem;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.copyright-container {
  text-align: center;
}

.copyright {
  display: inline-block;
}


/* Mobile Responsive */

@media (max-width: 480px) {
    .footer-links {
        gap: 0.5rem;
    }
    .footer-links a {
        font-size: 0.875rem;
    }
}
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}