/* ========================================
   POLICY PAGE LAYOUT
   ======================================== */

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-wrapper {
    flex: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 10rem 2rem 5rem;
    width: 100%;
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    color: var(--violet);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */

.content-section {
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.content-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.content-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.content-section h2::before {
    content: '';
    width: 4px;
    height: 28px;
    background: linear-gradient(135deg, var(--violet) 0%, var(--violet-light) 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

.content-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--violet);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.content-section h3:first-of-type {
    margin-top: 1.5rem;
}

.content-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-section ul {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 1.5rem;
    list-style: none;
}

.content-section li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}

.content-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1.1rem;
}

.content-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ========================================
   SPECIAL BOXES
   ======================================== */

.highlight-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(139, 92, 246, 0.03) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '💡';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 1.5rem;
    opacity: 0.8;
}

.highlight-box p {
    margin-bottom: 0;
    padding-left: 2.5rem;
    color: var(--text-primary);
}

.contact-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
}

.contact-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow-hover);
    border-color: var(--violet);
}

.contact-box h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.contact-box p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   INLINE LINKS
   ======================================== */

.inline-link {
    color: var(--violet);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.inline-link:hover {
    color: var(--violet-dark);
}

/* ========================================
   DATA SECTIONS STYLING
   ======================================== */

.content-section p + ul {
    margin-top: 0.5rem;
}

.content-section ul + p {
    margin-top: 1.5rem;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .content-wrapper {
        padding: 8rem 1.5rem 3rem;
    }

    .page-header {
        margin-bottom: 3.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .content-section {
        padding: 2rem 1.5rem;
    }

    .content-section h2 {
        font-size: 1.3rem;
    }

    .content-section h2::before {
        height: 20px;
    }

    .content-section h3 {
        font-size: 1.1rem;
    }

    .content-section li {
        padding-left: 1.5rem;
    }

    .highlight-box {
        padding: 1.25rem 1.25rem 1.25rem 1rem;
    }

    .highlight-box::before {
        font-size: 1.25rem;
        top: 1.25rem;
        left: 1.25rem;
    }

    .highlight-box p {
        padding-left: 2.25rem;
    }

    .contact-box {
        padding: 2rem 1.5rem;
    }

    .contact-box h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 7rem 1rem 2rem;
    }

    .page-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .content-section {
        padding: 1.75rem 1.25rem;
    }

    .content-section h2 {
        font-size: 1.2rem;
    }

    .content-section h3 {
        font-size: 1.05rem;
    }

    .content-section li {
        padding-left: 1.25rem;
        font-size: 0.95rem;
    }

    .highlight-box {
        padding: 1rem 1rem 1rem 0.75rem;
    }

    .highlight-box::before {
        font-size: 1.1rem;
        top: 1rem;
        left: 1rem;
    }

    .highlight-box p {
        padding-left: 2rem;
        font-size: 0.95rem;
    }

    .contact-box {
        padding: 1.75rem 1.25rem;
    }

    .contact-box h3 {
        font-size: 1.2rem;
    }
}