/* ===================================================================
   LULUTOX LEGAL & STATIC PAGES STYLESHEET
   =================================================================== */

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #f9fafb;
    margin: 0;
    line-height: 1.7;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header --- */
.legal-header {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

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

/* --- Main Content --- */
.legal-content {
    background-color: #ffffff;
    padding: 40px 0 60px;
    border-radius: 8px;
    margin: 40px auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 15px;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #111827;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content p, .legal-content li {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 15px;
}

.legal-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.last-updated {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 30px;
}

/* --- Footer --- */
.legal-footer {
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
    color: #6b7280;
}

.disclaimer-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.85rem;
    color: #6b7280;
}

.disclaimer-section p {
    font-size: inherit;
    color: inherit;
}

/* --- Contact Page Specific Styles --- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E4469D; /* Lulutox Pink */
    box-shadow: 0 0 0 3px rgba(228, 70, 157, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    display: inline-block;
    background-color: #68c161; /* Lulutox Green */
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: #58a851;
}

.form-confirmation-hidden {
    display: none;
}

#form-confirmation p {
    background-color: #d1fae5;
    color: #065f46;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

.contact-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}
.contact-info a {
    color: #E4469D;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}


/* --- Responsive --- */
@media (max-width: 768px) {
    .legal-content {
        margin: 20px 10px;
        padding: 30px 0;
    }
    .legal-content h1 {
        font-size: 2rem;
    }
    .legal-content h2 {
        font-size: 1.5rem;
    }
}
