/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: none; /* No background for the body */
    color: #fff; /* White text color for the body */
    line-height: 1.6;
    overflow: visible; /* Allow scrolling for the entire page */
}

/* Terms container styling */
.terms-container {
    max-width: 900px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: justify;
    backdrop-filter: blur(10px); /* Blur effect for background */
    overflow-y: scroll; /* Allows vertical scrolling inside the container */
    max-height: 80vh; /* Limits the height of the container */
    scrollbar-width: thin; /* Makes scrollbar thinner */
    scrollbar-color: transparent transparent; /* Hides the scrollbar */
}

/* Heading styles */
h1 {
    font-size: 40px;
    color: #ef6603; /* Orange color for heading */
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Brush Script MT', cursive; /* Brush Script MT font for h1 */
    font-weight: normal; /* Keep it normal weight */
}

/* Effective date styling */
.effective-date {
    font-size: 18px;
    text-align: center;
    color: #fff; /* White color for effective date */
    margin-bottom: 30px;
}

/* Ordered list styles */
ol {
    padding-left: 20px;
    margin-top: 0;
}

/* List item styling */
li {
    margin-bottom: 20px;
    font-size: 18px;
    color: #fff; /* White color for list item text */
}

/* Strong text styling in list items */
li strong {
    font-size: 18px;
    color: #ef6603; /* Bright color for strong text */
}

/* Paragraph text within list items */
li p {
    font-size: 16px;
    color: #fff; /* White color for paragraph text */
    margin-top: 5px;
}

/* Link styling */
a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
    color: #ff6600;
}
