/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    color: #333;
    text-align: center; /* Center-aligns all text by default */
}

h1, h2, h3 {
    color: #4CAF50;
    text-align: center;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: #4CAF50; /* Original green color */
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5em; /* Larger title font */
    margin: 0;
    color: white; /* Ensure visibility against background */
}

header p {
    font-size: 1.2em; /* Subtitle size */
    margin: 0;
    color: white; /* Ensure visibility against background */
}

/* Navbar */
nav {
    background-color: #333; /* Dark background */
    overflow: hidden;
}

.navbar {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.navbar li {
    display: inline;
}

.navbar a {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 14px 20px;
}

.navbar a:hover {
    background-color: #575757; /* Subtle hover effect */
}

/* Sections */
.section {
    margin: 40px auto;
    max-width: 800px; /* Center the content */
    padding: 20px;
    background-color: #fff; /* White background for sections */
    border: 1px solid #ddd; /* Light border for better structure */
    border-radius: 8px; /* Rounded corners for aesthetics */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.section h2 {
    font-size: 2em;
    color: #333; /* Dark text for headings */
    text-align: center;
    margin-bottom: 20px;
}

.section p, .section ul, .section ol {
    font-size: 1em;
    line-height: 1.6;
    color: #555; /* Softer text color */
    text-align: center; /* Center-aligns text in sections */
    margin-bottom: 20px;
}

.section ul, .section ol {
    text-align: left; /* Aligns bullet points to the left for readability */
}

/* Call-to-Action */
.call-to-action {
    text-align: center;
    background-color: #e7f5e6;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #4CAF50;
    border-radius: 8px;
}

.cta-button {
    background-color: #4CAF50; /* Green button */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    margin-top: 10px;
}

.cta-button:hover {
    background-color: #45a049; /* Slightly darker green on hover */
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9em;
}

footer a {
    color: #4CAF50;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Forms */
form {
    text-align: center;
    margin-top: 20px;
}

form input[type="email"] {
    padding: 10px;
    font-size: 1em;
    width: 250px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
}

form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
}

form button:hover {
    background-color: #45a049;
}

/* Media Queries */
@media (max-width: 768px) {
    .navbar li {
        display: block;
        text-align: left;
    }

    .navbar a {
        padding: 10px;
    }

    form input[type="email"] {
        width: 100%;
        margin-bottom: 10px;
    }
}
