/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f8f5;
    color: #333;
}

/* Container Styling */
.about-us {
    max-width: 800px;
    margin: 40px auto; /* Add space above and below the container */
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #4caf50; /* Green accent color */
}

/* Header Styling */
.about-us h1 {
    font-size: 36px;
    color: #4caf50;
    margin-bottom: 20px;
    text-align: center;
}

/* Section Title Styling */
.about-us h2 {
    font-size: 28px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #4caf50;
    padding-bottom: 8px;
}

/* Paragraph Styling */
.about-us p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

/* List Styling */
.about-us ul {
    padding-left: 20px;
    list-style-type: disc;
    margin-bottom: 20px;
}

.about-us li {
    font-size: 18px;
    margin-bottom: 10px;
    color: #555;
}

/* Join Community Form Styling */
.join-community {
    margin-top: 40px;
    text-align: center;
}

.join-community input[type="email"] {
    padding: 10px;
    font-size: 16px;
    width: 60%;
    max-width: 300px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
}

.join-community button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #4caf50;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.join-community button:hover {
    background-color: #43a047;
}
