Contact Us
Need help with your order or download? Send us a message and we’ll reply within 24–48 hours.
{% form 'contact' %}
{% if form.posted_successfully? %}
Thank you! Your message has been sent.
{% endif %}
{{ form.errors | default_errors }}
Name
Email
Order Number
Message
Send Message
{% endform %}
.contact-page {
max-width: 560px;
margin: 40px auto;
padding: 24px;
font-family: Arial, sans-serif;
}
.contact-page h1 {
font-size: 34px;
margin-bottom: 10px;
}
.contact-page p {
color: #555;
line-height: 1.6;
}
.contact-page label {
display: block;
margin-top: 16px;
font-weight: 700;
}
.contact-page input,
.contact-page textarea {
width: 100%;
padding: 14px;
margin-top: 6px;
border: 1px solid #ddd;
border-radius: 10px;
font-size: 16px;
}
.contact-page button {
width: 100%;
margin-top: 22px;
padding: 16px;
background: #ffc928;
color: #111;
border: none;
border-radius: 12px;
font-size: 18px;
font-weight: 800;
cursor: pointer;
}
.contact-page button:hover {
transform: translateY(-1px);
}
.success {
background: #e8f7ee;
color: #147a3d;
padding: 12px;
border-radius: 10px;
}