.contact-page {
    h2 {
        text-align: center;
    }

    form {
        max-width: 500px;
        margin: 0 auto;
        padding: 20px;
        background: #f9f9f9;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .form-group {
        margin-bottom: 15px;
        text-align: left;

        label {
            display: block;
            font-weight: bold;
            margin-bottom: 5px;
        }
        /* input */
        textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        .submit-button {
            display: block;
            width: 100%;
            padding: 10px;
            background: #333;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
        }
        .submit-button:hover {
            background: #555;
        }
    }
}

/* Popup Styles */
#popupMessage {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: white;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
border-radius: 8px;
text-align: center;
z-index: 1000;
}

#popupMessage button {
margin-top: 10px;
padding: 8px 16px;
background: #333;
color: white;
border: none;
cursor: pointer;
border-radius: 5px;
}

#popupMessage button:hover {
background: #555;
}

.hidden {
display: none;
}