/* General Page Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #2e8b57; /* Green background to match your theme */
    color: white;
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    font-size: 36px;
    margin: 0;
}

header p {
    font-size: 18px;
}

footer {
    text-align: center;
    padding: 20px;
    
    color:black;
}

/* Newsletter Form Styling */
.newsletter {
    background-color: #fff;
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.newsletter h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #2e8b57; /* Matching the green color theme */
}

.newsletter-form {
    display: flex;
    flex-direction: column;
}

.newsletter-form label {
    margin-bottom: 8px;
    font-size: 16px;
}

.newsletter-form input {
    padding: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
    width: 100%;
}

.newsletter-form .submit-btn {
    padding: 12px;
    background-color: #2e8b57;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.newsletter-form .submit-btn:hover {
    background-color: #236b47;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 600px) {
    header h1 {
        font-size: 28px;
    }

    .newsletter-form input,
    .newsletter-form .submit-btn {
        font-size: 14px;
    }
}
