body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.terms-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    margin: 20px;
    text-align: center;
}

h1 {
    font-size: 2rem;
    color: #333;
}

h2 {
    font-size: 1.5rem;
    color: #333;
    margin-top: 20px;
}

p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    text-align: left;
}

.return-button {
    background-color: #dc3545;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 20px;
}

.return-button:hover {
    background-color: #dc3545;
}

@media (max-width: 768px) {
    .terms-container {
        padding: 15px;
    }
    h1 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.25rem;
    }
    p {
        font-size: 0.9rem;
    }
    .return-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .terms-container {
        padding: 10px;
    }
    h1 {
        font-size: 1.25rem;
    }
    h2 {
        font-size: 1rem;
    }
    p {
        font-size: 0.8rem;
    }
    .return-button {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}