/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9; /* Light background for readability */
    margin: 0;
    padding: 0;
}

/* Header Styling */
header {
    background-color: #4CAF50; /* Green for a welcoming and vibrant look */
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
}

/* Main Content Styling */
main {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    background: #fff;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section h2 {
    color: #4CAF50; /* Green for section headings */
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

section ul, section ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

section ul li, section ol li {
    margin-bottom: 0.5rem;
}

a {
    color: #4CAF50; /* Green for links */
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 1rem 0;
    background: #333;
    color: #fff;
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    body {
        font-size: 90%;
    }
}