.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

.page-close-btn {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #ca0013;
    font-size: 1.8rem;
    color: #ca0013;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1000;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-close-btn:hover {
    background-color: #ca0013;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(202, 0, 19, 0.3);
}

.page-close-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(202, 0, 19, 0.3);
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #ca0013;
}

.legal-header h1 {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    color: #ca0013;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    color: #ca0013;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-section h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #444;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

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

.trademark-list {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.trademark-list li {
    font-weight: 500;
    color: #ca0013;
}

.important-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.important-notice h4 {
    color: #856404;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.contact-info h4 {
    color: #ca0013;
    margin-bottom: 0.5rem;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: #ca0013;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 1rem;
        margin-top: 4rem; /* Add space for close button */
    }

    .legal-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom-width: 1px;
    }

    .legal-header h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .legal-header p {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .legal-section h2 {
        font-size: 1.4rem;
    }

    .page-close-btn {
        top: 0.75rem;
        right: 0.75rem;
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1.3rem;
        padding: 0.4rem;
        background: rgba(255, 255, 255, 0.95);
        border-width: 1.5px;
    }

    body {
        padding-top: 1rem;
    }
} 