/* Terms and Conditions Page Styles */

.terms-page {
    background-color: var(--bg);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    padding-bottom: 80px;
}

.terms-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header Section */
.terms-header {
    margin-bottom: 60px;
}

.terms-intro {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 800px;
}

.terms-list {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 40px;
}

.terms-list li {
    color: var(--muted);
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
}

.terms-list li::before {
    content: "•";
    position: absolute;
    left: -20px;
    color: var(--muted);
}

/* Behavior Section */
.behavior-section {
    margin-bottom: 80px;
}

.terms-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.sub-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.section-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 30px;
}

.behavior-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.behavior-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.encouraged-title {
    color: #e6e6e6;
}

.prohibited-title {
    color: #e6e6e6;
}

.check-icon,
.cross-icon {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.check-icon {
    color: #00C853;
    /* Green */
    background: rgba(0, 200, 83, 0.1);
}

.cross-icon {
    color: #FF1744;
    /* Red */
    background: rgba(255, 23, 68, 0.1);
}


.behavior-list {
    list-style: none;
    padding: 0;
}

.behavior-list li {
    color: var(--muted);
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.5;
}

.behavior-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--muted);
}

/* Privacy Section */
.privacy-section {
    margin-bottom: 80px;
}

.privacy-intro {
    color: var(--muted);
    margin-bottom: 40px;
    font-size: 16px;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.security-item h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--muted);
    /* Changed to muted based on design image */
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.shield-icon,
.heart-icon {
    width: 24px;
    height: 24px;
    stroke: var(--muted);
    fill: none;
}


.security-item p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.security-list {
    list-style: none;
    padding: 0;
}

.security-list li {
    color: var(--muted);
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
}

.security-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--muted);
}


/* Footer Section */
.terms-footer {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 40px;
}

.terms-footer p {
    margin-bottom: 24px;
}


@media (max-width: 768px) {

    .behavior-grid,
    .security-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .terms-container {
        padding: 30px 16px;
    }
}