Get in Touch
Have a question about our collections or need assistance with an order? We’re here to help you navigate the clash.
Our Address
123 Street Name, Suite 456
Fashion District
City, State, Zip Code
Email Us
Call Us
Send Us a Message
.contact-page-container {
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
font-family: sans-serif;
color: #333;
}
.contact-header {
text-align: center;
margin-bottom: 50px;
}
.contact-header h1 {
font-size: 2.5rem;
margin-bottom: 10px;
text-transform: uppercase;
}
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
}
@media (max-width: 768px) {
.contact-grid {
grid-template-columns: 1fr;
}
}
.info-group {
margin-bottom: 30px;
}
.info-group h2 {
font-size: 1.5rem;
margin-bottom: 10px;
border-bottom: 2px solid #000;
display: inline-block;
}
.info-group p {
line-height: 1.6;
}
.contact-form-container h2 {
margin-bottom: 20px;
}
.contact-form {
display: flex;
flex-direction: column;
}
.form-group {
margin-bottom: 15px;
}
.form-group label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
font-size: 1rem;
}
.btn-submit {
background-color: #000;
color: #fff;
padding: 15px 30px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 1rem;
font-weight: bold;
transition: background 0.3s ease;
}
.btn-submit:hover {
background-color: #444;
}