/* General Reset and Body Style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f7f7f7;
    color: #333;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #4CAF50; /* Changed heading color to a more vibrant green */
    margin-bottom: 30px;
}

/* Content Container */
.content-container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 40px;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: grid;
    gap: 30px;
    padding-left: 20px; /* Added left padding for spacing */
    padding-right: 20px; /* Added right padding for spacing */
}

h2 {
    color: #333;
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #2c3e50; /* Darker color for subheadings */
}

/* Add spacing between paragraphs and lists */
p, ul {
    margin-bottom: 20px;
    font-size: 1.1em;
}

ul li {
    margin: 10px 0;
}

ul {
    list-style: disc inside;
    margin-left: 20px;
}


a:hover, button:hover {
    background-color: #45a049;
}

/* Grid Style for Content Sections */
.grid-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.grid-section h3 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 10px;
}

/* Footer Styles */
footer {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 15px 0;
    position: relative;
    width: 100%;
    bottom: 0;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.message {
    color: red;
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .content-container {
        padding: 20px;
    }

    .grid-section {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 1.3em;
    }
}
