/* Terms of Use Page Styles */

.terms-hero {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.terms-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.terms-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.last-updated {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

.terms-content {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.table-of-contents {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.table-of-contents h3 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 12px;
}

.table-of-contents a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
    padding: 8px 0;
    border-left: 3px solid transparent;
    padding-left: 15px;
}

.table-of-contents a:hover {
    color: #2c3e50;
    border-left-color: #3498db;
}

.terms-main {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.terms-section {
    margin-bottom: 50px;
}

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

.terms-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e1e8ed;
}

.terms-section h3 {
    color: #34495e;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 30px 0 15px;
}

.terms-section p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.terms-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.terms-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

.contact-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.contact-info p {
    margin-bottom: 8px;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .table-of-contents {
        position: static;
        order: 2;
    }
    
    .terms-main {
        order: 1;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .terms-hero {
        padding: 100px 0 60px;
    }
    
    .terms-hero h1 {
        font-size: 2.2rem;
    }
    
    .terms-content {
        padding: 60px 0;
    }
    
    .terms-main {
        padding: 25px;
    }
    
    .table-of-contents {
        padding: 25px;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
} 