.theme-contact-body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 20px;
}

.theme-contact-container {
    max-width: 600px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.theme-contact-h2 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.theme-contact-label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.theme-contact-input,
.theme-contact-textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.theme-contact-textarea {
    resize: vertical;
    height: 100px;
}

.theme-contact-button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.theme-contact-button:hover {
    background-color: #0056b3;
}

.theme-contact-back-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    text-decoration: none;
    color: #007bff;
}

.theme-contact-back-link:hover {
    text-decoration: underline;
}