.contact-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    margin-top: 10px;
    color: #000; /* Ensures labels are visible */
}

input, textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.message {
    width: 100%;
    height: 200px;
    resize: vertical;
}

button {
    margin-top: 15px;
    padding: 10px;
    background: green;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    button:hover {
        background: darkgreen;
    }

.success-message {
    color: green;
    text-align: center;
    font-weight: bold;
}