/* 📩 Contact Page */
.contact-page {
    text-align: center;
    max-width: 500px;
    margin: 50px auto;
}

/* 📧 Email Link */
.contact-email {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* 🚀 Contact Form */
.styled-form {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 📝 Input Fields & Dropdown */
.styled-form input,
.styled-form textarea,
.styled-form select {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #444;
    background: #333;
    color: white;
}

/* 🏷️ Labels */
.styled-form label {
    font-weight: bold;
    text-align: left;
}

/* ✉️ Submit Button */
.styled-form button {
    background: #ffcc00;
    color: black;
    padding: 12px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.styled-form button:hover {
    background: #28a745;
    color: white;
}

/* 📝 Message Box (Textarea) */
.styled-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #444;
    background: #333;
    color: white;
    resize: vertical;
    min-height: 120px;
    overflow-y: auto;
}

.hidden {
    display: none;
  }
  