Contact Us
We are here to help you with your energy needs. Whether you have a question about our services or need technical assistance, our team is ready to assist you.
Our Address
123 Energy Way, Suite 456
Innovation 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;
}
.contact-content-grid {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 50px;
}
@media (max-width: 768px) {
.contact-content-grid {
grid-template-columns: 1fr;
}
}
.info-group {
margin-bottom: 30px;
}
.info-group h2 {
font-size: 1.5rem;
margin-bottom: 10px;
color: #0056b3;
}
.info-group p, .info-group a {
line-height: 1.6;
text-decoration: none;
color: inherit;
}
.info-group a:hover {
text-decoration: underline;
}
.contact-form-wrapper {
background: #f9f9f9;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.contact-form-wrapper h2 {
margin-top: 0;
margin-bottom: 20px;
}
.form-group {
margin-bottom: 20px;
}
.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;
}
.submit-btn {
background-color: #0056b3;
color: white;
padding: 12px 25px;
border: none;
border-radius: 4px;
font-size: 1rem;
cursor: pointer;
transition: background-color 0.3s ease;
}
.submit-btn:hover {
background-color: #004494;
}