/* Container for Main Content */
main.container {
    max-width: 800px; /* Restrict maximum width for readability */
    margin: 40px auto; /* Center the content */
    padding: 25px; /* Padding for internal spacing */
    border-radius: 16px; /* Soft rounding for smooth edges */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Shadow for depth */
    background: rgba(47, 79, 47, 0.85); /* Semi-transparent greenish gray */
    transition: all 0.3s ease; /* Smooth transitions */
}

/* Heading Styles */
h1 {
    font-size: 2em; /* Large font size for the main heading */
    font-weight: bold; /* Bold font weight */
    text-align: center; /* Center the heading */
    color: #e6ffe6; /* Light green for contrast with dark background */
    margin-bottom: 30px; /* Additional space below the heading */
}

h2 {
    font-size: 1.5em; /* Font size for section headings */
    font-weight: bold; /* Bold font weight */
    color: #e6ffe6; /* Consistent with theme */
    margin-top: 20px; /* Space above the heading */
    margin-bottom: 15px; /* Space below the heading */
}

/* Paragraph Styles */
p {
    font-size: 1em; /* Standard font size */
    line-height: 1.6; /* Comfortable line height */
    color: #e6ffe6; /* Light green text for readability */
    text-shadow: 1px 1px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    margin-bottom: 16px; /* Space between paragraphs */
    transition: all 0.3s ease; /* Smooth transitions */
}

/* List Styles */
ul {
    padding-left: 20px; /* Indentation for list items */
    list-style-type: disc; /* Standard bullet points */
    margin-top: 15px; /* Space above the list */
}

ul li {
    margin-bottom: 10px; /* Space between list items */
}

/* Link Styles */
a {
    color: #e6ffe6; /* Light green for links */
    text-decoration: underline; /* Underline for emphasis */
    transition: color 0.3s ease; /* Smooth transitions */
}

a:hover {
    color: #1b3b1b; /* Darker green on hover */
    text-decoration: none; /* No underline on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    main.container {
        padding: 20px; /* Adjusted padding for smaller screens */
        border-radius: 10px; /* Smaller rounded corners */
    }

    h1 {
        font-size: 1.5em; /* Adjusted font size for smaller screens */
    }

    h2 {
        font-size: 1.2em; /* Smaller font size for section headings */
        margin-top: 15px; /* Reduced space above the heading */
        margin-bottom: 10px; /* Reduced space below the heading */
    }

    p {
        font-size: 0.9em; /* Adjusted font size */
        line-height: 1.4; /* Tighter line height */
    }

    ul {
        padding-left: 15px; /* Adjusted list indentation */
        margin-top: 10px; /* Reduced space above the list */
    }

    ul li {
        margin-bottom: 8px; /* Adjusted space between list items */
    }
}
