/* General Styles for Terms & Conditions Page */
.terms-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 40px;
    background: linear-gradient(to right, #007bff, #0056b3);
    min-height: 100vh;
}

.terms-wrapper {
    max-width: 900px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.terms-header {
    text-align: center;
    margin-bottom: 30px;
}

.terms-header h1 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.terms-header p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.terms-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.terms-section h2 {
    font-size: 22px;
    color: #007bff;
    margin-bottom: 10px;
}

.terms-box-content {
    padding: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.terms-footer {
    text-align: center;
    margin-top: 30px;
}

.terms-footer a {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
}

footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}
