@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700;800;900&display=swap');

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #222;
    background-color: #f8f8f8;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
}

/* Headings */
h1, h2 {
    margin-bottom: 10px;
}

h1 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
}

h2 {
    font-size: 24px;
    font-weight: bold;
}

/* Paragraphs */
p {
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Button */
.button-container {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #6dabe4;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #4292dc;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .terms-container {
        padding: 20px;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
    }
}
