/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9; /* Light background color for readability */
    color: #333;
    margin: 0;
    padding: 0;
}

/* Container for Content */
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* Page Title */
h1 {
    font-size: 3rem;
    text-align: center;
    color: #FFD700; /* Luxury golden color */
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for a luxurious feel */
    letter-spacing: 1px;
}

/* Section Heading */
.section-heading {
    font-size: 2rem;
    color: #4CAF50; /* Elegant green for headings */
    margin-top: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Terms List */
.terms-list {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    padding-left: 20px;
}

/* Style for List Items */
.terms-list li {
    position: relative;
    margin-bottom: 15px;
}

/* Checkmark before each item */
.terms-list li::before {
    content: "✔";
    position: absolute;
    left: -25px;
    color: #4CAF50;
    font-size: 1.4rem;
    top: 0;
}

/* Highlighted Text */
.terms-list span {
    color: #FF5722; /* Accent color */
    font-weight: bold;
}

/* Paragraph Text */
p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    text-align: justify;
    margin-bottom: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* Links Styling */
a {
    color: #FF5722;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #E64A19;
}

/* Button Style (Back to Top) */
button {
    display: block;
    background-color: #FFD700; /* Golden Button */
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin: 40px auto;
    text-transform: uppercase;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

button:hover {
    background-color: #FF6F00;
    transform: scale(1.05);
}

/* Responsive Design for Tablets and Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .terms-list {
        font-size: 1rem;
    }

    p {
        font-size: 1.1rem;
    }
}

/* Light background for main content */
main {
    background-color: #fff; /* White background */
    padding: 40px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Soft shadow around content */
}

/* Footer Section */
footer {
    background-color: #2c3e50; /* Dark background for footer */
    color: white;
    padding: 40px 20px;
    font-size: 1rem;
    text-align: center;
}

footer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #FF5722;
}

/* Footer links layout */
footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer .footer-links a {
    font-size: 1rem;
}

