/**
 * Legal Pages Styles
 * FAQs, Terms of Service, Cookie Policy
 */

/* Page Header */
.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(211, 54, 130, 0.2);
}

.legal-title {
    font-family: "Lexend", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #93a1a1;
    margin-bottom: 15px;
}

.legal-subtitle {
    font-family: "Lexend", sans-serif;
    font-size: 1rem;
    color: #586e75;
}

/* Content Container */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Sections */
.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-family: "Lexend", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d33682;
    margin-bottom: 20px;
}

.legal-section h3 {
    font-family: "Lexend", sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #93a1a1;
    margin: 25px 0 15px 0;
}

.legal-section p {
    font-family: "Lexend", sans-serif;
    font-size: 1rem;
    color: #839496;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section li {
    font-family: "Lexend", sans-serif;
    font-size: 1rem;
    color: #839496;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section a {
    color: #d33682;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #FF91B3;
    text-decoration: underline;
}

/* FAQ Sections */
.faq-section {
    margin-bottom: 50px;
}

.faq-section .section-title {
    font-family: "Lexend", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d33682;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(211, 54, 130, 0.3);
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(211, 54, 130, 0.2);
}

.faq-question {
    font-family: "Lexend", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #93a1a1;
    margin-bottom: 12px;
}

.faq-answer {
    font-family: "Lexend", sans-serif;
    font-size: 0.95rem;
    color: #839496;
    line-height: 1.7;
    margin: 0;
}

/* Highlight Boxes */
.highlight-box {
    background: rgba(211, 54, 130, 0.1);
    border: 1px solid rgba(211, 54, 130, 0.3);
    border-radius: 12px;
    padding: 20px 25px;
    margin: 20px 0;
}

.highlight-box.warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
}

.highlight-box p {
    margin-bottom: 10px;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.highlight-box ul {
    margin-bottom: 0;
}

.highlight-box strong {
    color: #93a1a1;
}

/* Cookie Table */
.cookie-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Lexend", sans-serif;
    font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th {
    background: rgba(211, 54, 130, 0.1);
    color: #93a1a1;
    font-weight: 600;
}

.cookie-table td {
    color: #839496;
}

.cookie-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Responsive */
@media screen and (max-width: 767px) {
    .legal-title {
        font-size: 1.8rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .faq-section .section-title {
        font-size: 1.3rem;
    }
    
    .faq-item {
        padding: 15px 18px;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 10px;
        font-size: 0.85rem;
    }
}
