/* Terms of Use Page Styles */

.terms-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    background-color: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.terms-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    color: var(--page-text);
}

.terms-section {
    margin-bottom: 2.5rem;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h3 {
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    color: var(--header-text);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.terms-section h3::before {
    content: '';
    display: block;
    width: 6px;
    height: 1.25em;
    background-color: var(--cta);
    border-radius: 3px;
}

.terms-content p {
    margin-bottom: 1rem;
    color: var(--page-muted);
    line-height: 1.8;
}

.terms-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: var(--page-muted);
    line-height: 1.7;
}

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

.terms-content li::marker {
    color: var(--cta);
}

.terms-contact {
    background-color: var(--surface-2);
    padding: 2rem;
    border-radius: var(--radius);
    margin-top: 3rem;
    border: 1px solid var(--border);
}

.terms-contact h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-list {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--page-text);
    font-weight: 500;
}

.contact-item i {
    width: 24px;
    text-align: center;
}

.contact-item a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: var(--cta);
}

/* Print styles for pro look */
@media print {
    .site-header, .footer, .whatsapp-fab, .side-menu, .backdrop {
        display: none !important;
    }
    body {
        background: white;
        color: black;
        padding: 0;
    }
    .terms-wrapper {
        box-shadow: none;
        border: none;
        padding: 0;
        max-width: 100%;
    }
    .terms-section h3::before {
        border: 1px solid #000;
        background: #000;
    }
}
