/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Global Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Container for Content */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #4CAF50;
    color: white;
    padding: 30px 0;
    text-align: center;
}

header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

header p {
    font-size: 22px;
    color: #e0e0e0;
}

/* Terms Section */
#terms {
    background-color: #fff;
    padding: 50px 0;
    text-align: left;
}

#terms h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #4CAF50;
}

#terms p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

#terms a {
    color: #4CAF50;
    text-decoration: none;
}

#terms a:hover {
    text-decoration: underline;
}

/* Footer Section */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 16px;
}

footer a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}