.contact__container {
    max-width: 1200px;
    margin: auto;
    padding: 3rem 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.contact__header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact__header h2 {
    font-size: 2.5rem;
    color: #026900; 
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.contact__header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    line-height: 1.5;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__form input,
.contact__form textarea {
    padding: 1rem;
    border: 1px solid #bdc3c7;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.3s, box-shadow 0.3s;
    position: relative;
}

.contact__form input:focus,
.contact__form textarea:focus {
    border-color: #026900;
    outline: none;
    box-shadow: 0 0 5px rgba(39, 174, 96, 0.5);
}

.contact__form textarea {
    resize: vertical;
}

.contact__form button {
    padding: 1rem;
    background-color: #026900;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.contact__form button:hover {
    background-color: #219150;
    transform: translateY(-2px);
}

.contact__icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #27ae60;
    font-size: 1.2rem;
}

.input-container {
    position: relative;
}

@media (max-width: 768px) {
    .contact__container {
        padding: 2rem 1rem;
    }

    .contact__header h2 {
        font-size: 2.2rem;
    }

    .contact__header p {
        font-size: 1rem;
    }

    .contact__form input,
    .contact__form textarea {
        font-size: 0.9rem;
    }

    .contact__form button {
        font-size: 1rem;
    }
}