﻿body {
}
/* Terms of Service Page */
.tos-section {
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

    .tos-section h1 {
        font-size: 2.2rem;
        color: #333;
        margin-bottom: 15px;
    }

    .tos-section p {
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 20px;
    }

/* Terms Container */
.tos-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Individual Term Boxes */
.tos-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

    .tos-box h2 {
        font-size: 2rem;
        color: #444;
        text-align:center
    }

    .tos-box p {
        font-size: 1.1rem;
        color: #666;
        line-height: 1.5;
    }
.dos-donts-container {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.dos, .donts {
    flex: 1 1 300px;
}

    .dos ul li::before {
        content: "✔ ";
        color: green;
        font-weight: bold;
    }

    .donts ul li::before {
        content: "✘ ";
        color: darkred;
        font-weight: bold;
    }

    .dos h2, .donts h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
