/* Colors */
/* Darkgreen = 13. Climate Action = #3F7E44*/
/* Lime green = 15. Life on Land = #56C02B */
/* UN Logo Blue =  #009EDB */
.contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/static/images/nature.jpg');
    background-size: cover;
    padding: 50px 0;
}

.contact-container {
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
    padding: 20px;
    max-width: 800px;
    width: 100%;
    margin: 0 20px;
    border-radius: 10px;
}

h1 {
    color: #3F7E44;
    margin-bottom: 0.5em;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1em;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 1em;
}

.info h2 {
    color: #3F7E44;
    margin: 0 0 0.25em 0;
}

.info p {
    color:#000;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    padding: 10px;
    margin-bottom: 1em;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    background: #f9f9f9;
}

.contact-form button {
    padding: 10px;
    background-color: #56C02B;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.contact-form button:hover {
    background-color: #009EDB;
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
    }
}
