/* Reset and body styling */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: rgb(204, 204, 255);
    color: #333;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Logo and header */
.logo {
    float: left;
    width: 8%;
    height: 90px;
    margin: 5px;
}

/* Navigation menu */
nav.menu {
    background-color: #009900;
    border-radius: 10px;
    height: 50px;
    width: 92%;
    float: right;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav.menu button {
    margin: 0 5px;
    padding: 8px 15px;
    color: #fff;
    background-color: #009900;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

nav.menu button:hover {
    background-color: #007a00;
}

nav.menu .active {
    background-color: rgb(0, 153, 255);
}

/* Intro section */
.intro h1 {
    color: rgb(0, 153, 255);
    text-align: center;
    margin-top: 20px;
}

.intro p {
    color: #006600;
    text-align: center;
    font-size: 1.1em;
}

/* Content sections */
.content-wrapper {
    display: flex;
    justify-content: space-around;
    padding: 2%;
    gap: 2%;
    flex-wrap: wrap;
}

.mission, .posts {
    background-color: white;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow-y: auto;
    max-height: 700px;
}

.mission {
    width: 30%;
}

.posts {
    width: 60%;
}

.posts img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.post {
    margin-bottom: 30px;
}

/* Footer */
.appreciation-banner {
    background-color: black;
    color: rgb(0, 153, 255);
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.footer-info {
    background-color: #009900;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9em;
}

/* ABOUT US Page Specific */
.about-container {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    color: #333;
}

.intro-section h1 {
    text-align: center;
    color: rgb(0, 153, 255);
    margin-bottom: 0;
}

.intro-section p {
    text-align: center;
    color: #006600;
    font-style: italic;
    font-size: 1.1em;
    margin-top: 5px;
}

.about-content article {
    background-color: #fff;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

.about-content article h2 {
    color: #009900;
    margin-bottom: 10px;
}

.about-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.about-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* HOW YOU CAN HELP PAGE */
.help-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.help-content article {
    background-color: #ffffff;
    padding: 20px;
    margin: 20px 0;
    border-left: 6px solid #009900;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.help-content article h2 {
    color: rgb(0, 153, 255);
    margin-bottom: 10px;
}

.help-content article p {
    line-height: 1.6;
    color: #333;
}

.help-content a {
    color: #0066cc;
    text-decoration: none;
}

.help-content a:hover {
    text-decoration: underline;
}
