/* Terms & Conditions Styling */
.terms-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.terms-container h1 {
    text-align: center;
    font-size: 32px;
    color: #8b5a2b;
    margin-bottom: 20px;
}

.terms-content {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.terms-content strong {
    color: #8b5a2b;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-container {
        width: 90%;
        padding: 20px;
    }
}
