/* Terms of Service Page Styling */
.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-intro {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.terms-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.terms-intro p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #333;
}

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

.terms-section h3 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.terms-section h4 {
    color: #34495e;
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.terms-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

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

.terms-section ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
    list-style-type: disc;
}

.terms-section a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.terms-section a:hover {
    text-decoration: underline;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

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

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

.terms-footer {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

.terms-footer p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .terms-content {
        padding: 0 15px;
    }

    .terms-section h3 {
        font-size: 20px;
    }

    .terms-section h4 {
        font-size: 16px;
    }

    .terms-intro,
    .contact-info,
    .terms-footer {
        padding: 20px;
    }
}

