/* Terms of Service Page Styles */
/* Matches about-page design language */

.terms-page {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 50%, #ffecd2 100%);
    min-height: 100vh;
    padding: 2rem 0 3rem 0;
}

.terms-hero {
    text-align: center;
    padding: 3rem 1rem 1.5rem;
    margin-bottom: 2rem;
}

.terms-title {
    font-size: 3rem;
    font-weight: 700;
    color: #5a3e36;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(90, 62, 54, 0.2);
}

.terms-title-icon {
    color: #ff6b6b;
}

.terms-tagline {
    font-size: 1.2rem;
    color: #7d5a50;
    max-width: 600px;
    margin: 0 auto 0.5rem;
}

.terms-effective {
    font-size: 0.95rem;
    color: #99776b;
    font-style: italic;
    margin: 0 auto;
}

/* Cards */
.terms-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 40px rgba(255, 182, 193, 0.25);
    border: 2px solid rgba(255, 182, 193, 0.3);
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.terms-card h2 {
    color: #5a3e36;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.terms-card h2 i {
    color: #ff6b6b;
    font-size: 1.3rem;
}

.terms-card p {
    color: #6d5147;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.terms-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.terms-card ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.65rem;
    color: #6d5147;
    font-size: 1.02rem;
    line-height: 1.7;
}

.terms-card ul li::before {
    content: '\2022';
    color: #ff6b6b;
    font-size: 1.3rem;
    position: absolute;
    left: 0.25rem;
    top: -0.05rem;
    font-weight: 700;
}

/* Contact card */
.terms-contact {
    text-align: center;
    border: 2px solid rgba(255, 107, 107, 0.25);
}

.terms-email {
    font-size: 1.15rem;
    font-weight: 600;
    color: #5a3e36;
    background: rgba(255, 222, 233, 0.3);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .terms-title {
        font-size: 2.2rem;
    }

    .terms-tagline {
        font-size: 1rem;
    }

    .terms-card {
        padding: 1.75rem 1.25rem;
        border-radius: 18px;
    }

    .terms-card h2 {
        font-size: 1.25rem;
    }

    .terms-card p,
    .terms-card ul li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .terms-hero {
        padding: 2rem 0.5rem 1rem;
    }

    .terms-title {
        font-size: 1.8rem;
    }

    .terms-card {
        padding: 1.25rem 1rem;
        border-radius: 14px;
    }
}
