/* Terms of Service Page - Design System */
.main {
    background-color: #000000;
    min-height: 100vh;
    padding: 2rem 0;
}

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

.page-title {
    font-family: 'Chakra Petch', 'Inter', sans-serif;
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.page-subtitle {
    color: #999;
    font-size: 1.1rem;
}

.content-section {
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Chakra Petch', 'Inter', sans-serif;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

/* Terms Card */
.terms-card {
    background: #0d0d0d;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border: 1px solid #2a2a2a;
}

.terms-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #2a2a2a;
}

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

.terms-section > p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-section > p strong {
    color: #FFFFFF;
}

/* Terms Items */
.terms-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.terms-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: rgba(60, 195, 14, 0.1);
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #3cc30e;
}

.terms-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #FFFFFF;
    font-weight: 600;
}

.terms-content p {
    color: #999;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.terms-content p strong {
    color: #FFFFFF;
    font-weight: 600;
}

.terms-content ul {
    color: #999;
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.terms-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.terms-content ul li strong {
    color: #FFFFFF;
}

.terms-content a {
    color: #3cc30e;
    text-decoration: none;
    transition: color 0.2s;
}

.terms-content a:hover {
    color: #4de01a;
    text-decoration: underline;
}

/* Disclaimer */
.terms-disclaimer {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: #161616;
    border-radius: 10px;
    text-align: center;
    border-left: 3px solid #3cc30e;
}

.terms-disclaimer p {
    margin: 0;
    font-weight: 500;
    color: #FFFFFF;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-item {
        flex-direction: column;
        gap: 1rem;
    }

    .terms-icon {
        margin-bottom: 0;
    }

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

    .terms-card {
        padding: 1.5rem;
    }
}
