body {
    background-image: url('./images/yuriy-kovalev-nN1HSDtKdlw-unsplash.jpg'); 
    background-size: cover; /* Cover the entire body */
    background-position: center; /* Center the image */
    background-color: rgba(255, 255, 255, 0.9); /* White color with opacity */
    font-family: 'Arial', sans-serif;
    margin: 0;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.contact-form-container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    width: 100%;
    margin: 20px auto;
}

.contact-form h2 {
    margin-bottom: 1rem;
    color: #2e7d32;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 2px;
    padding-bottom: 5px;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2e7d32;
    box-shadow: 0 0 4px rgba(46, 125, 50, 0.4);
}

.form-group button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    background-color: #2e7d32;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

.form-group button:hover {
    background-color: #27632a;
}
