
.terms-content {
    padding: 5rem 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.terms-nav {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.terms-nav h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.5;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    transition: color 0.2s;
}

.terms-nav a:hover {
    color: #667eea;
}

.terms-text {
    max-width: 800px;
}

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

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

.terms-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.terms-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.terms-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.terms-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.terms-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.contact-method {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.contact-method strong {
    color: #1a202c;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .terms-nav {
        position: static;
        order: 2;
    }
    
    .terms-text {
        order: 1;
    }
    
    .terms-section h2 {
        font-size: 1.75rem;
    }
    
    .terms-section h3 {
        font-size: 1.25rem;
    }
