/* Contact Page Layout */
.contact-wrapper {
    max-width: 600px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
}

/* Page Title */
.contact-wrapper h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 32px;
    letter-spacing: 1px;
}

/* Form Labels */
.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    font-size: 15px;
}

/* Inputs + Textarea */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

/* Textarea Height */
.contact-form textarea {
    height: 160px;
}

/* Submit Button */
.contact-form button {
    width: 100%;
    padding: 14px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background 0.2s ease;
}

.contact-form button:hover {
    background: #333;
}

/* Success / Error Messages */
.contact-wrapper p {
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
}
