/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}
.user-agreement{
        justify-self: center;
    font-size: 200%;
}
/* Main Section */
main {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
}

/* Content Box */
.contents {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    line-height: 1.6;
}

/* Paragraphs */
.contents p {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: justify;
}

/* Highlighted Text */
.contents b {
    color: #ff6600;
}

/* Links */
.contents a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: bold;
}

.contents a:hover {
    text-decoration: underline;
}

/* Headings */
.contents h2 {
    font-size: 20px;
    color: #1a73e8;
    margin-top: 20px;
    border-bottom: 2px solid #1a73e8;
    padding-bottom: 5px;
}

/* Ordered List */
.contents ol {
    padding-left: 20px;
}

.contents ol li {
    font-size: 17px;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contents {
        padding: 20px;
        width:91%;
    }

    .contents h2 {
        font-size: 18px;
    }

    .contents p {
        font-size: 15px;
    }
}
