/* Reset some basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Header Navigation */
header {
    background-color: #333;
    color: white;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Home Section */
#home {
    background-color: #f0f0f0;
    padding: 20px;
    text-align: center;
}

/* Features Section */
#features {
    background-color: #ffffff;
    padding: 30px;
}

#features h2 {
    text-align: center;
    margin-bottom: 20px;
}

#features ul {
    list-style: none;
    padding-left: 0;
}

#features li {
    margin: 10px 0;
    font-size: 18px;
}

/* FAQ Section */
#faq {
    background-color: #ffffff;
    padding: 30px;
}

#faq h2 {
    text-align: center;
    margin-bottom: 20px;
}

#faq h3 {
    font-size: 20px;
    margin-top: 15px;
}

/* Disclaimer Section */
#disclaimer {
    background-color: #f9f9f9;
    padding: 30px;
    text-align: center;
}

/* Contact Section */
#contact {
    background-color: #ffffff;
    padding: 30px;
    text-align: center;
}

#contact a {
    color: #007BFF;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

/* Footer Section */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer p {
    font-size: 14px;
}

footer a {
    color: #007BFF;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Private Page Section (hidden) */
#privatePages {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }

    #features ul {
        padding-left: 20px;
    }
}
