.terms-section {
    padding: 160px 0 80px;
}

.terms-section h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.terms-meta {
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
}

.terms-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.terms-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15), 0 10px 10px rgba(0,0,0,0.1);
    width: 100%;
}

.terms-card h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 0.5rem;
}

.terms-subsection {
    margin-bottom: 1.5rem;
}

.terms-subsection h3 {
    color: var(--text-color);
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.terms-card ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-card p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .terms-grid {
        grid-template-columns: 1fr;
    }
}

.company-info {
    background: var(--light-bg);
}

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

.terms-content section:last-child {
    border-bottom: none;
}

.terms-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.terms-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.terms-content h3 {
    color: var(--text-color);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.2rem;
}

.permissions-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
}

.permissions-table th,
.permissions-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.permissions-table th {
    background-color: var(--gray-100);
    font-weight: 600;
}

.permissions-table tr:last-child td {
    border-bottom: none;
} 