/* Terms of Service Styles */
.terms-of-service-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    direction: rtl;
    text-align: right;
}

.terms-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

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

.terms-section h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

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

.terms-section ul {
    padding-right: 20px;
    margin-bottom: 15px;
}

.terms-section li {
    margin-bottom: 8px;
    color: #555;
}

.terms-of-service-content h1 {
    color: #2c3e50;
    font-weight: 700;
}

.terms-of-service-content .btn {
    margin: 0 10px;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.terms-of-service-content .btn-primary {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}

.terms-of-service-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.terms-of-service-content .btn-outline-primary {
    border: 2px solid #667eea;
    color: #667eea;
    background: transparent;
}

.terms-of-service-content .btn-outline-primary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .terms-of-service-content {
        padding: 20px;
        margin: 20px 10px;
    }
    
    .terms-of-service-content .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}
