/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: #003b5c;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  display: flex;
  align-items: center;
}

header .logo img {
  height: 120px;
  margin-right: 10px;
}

header h1 {
  font-size: 1.4rem;
}

header .contact-header {
  text-align: right;
  font-size: 0.9rem;
}

nav {
  background: #005d8f;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

nav li {
  margin: 0;
}

nav a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
}

nav a:hover,
nav a.active {
  background: #0077b6;
}

.hero {
  position: relative;
  background: #222 url("images/hero-gas-line.png") center/cover no-repeat;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  text-shadow: 1px 4px 7px #000;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.hero-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #FFF;
}

.hero p {
  font-size: 1rem;
}

main {
  flex: 1;
  padding: 20px;
}

section {
  margin-bottom: 25px;
}

h2 {
  margin-bottom: 10px;
  color: #003b5c;
}

h3 {
  margin-bottom: 8px;
  color: #005d8f;
}

p {
  margin-bottom: 10px;
}

ul {
  margin-left: 18px;
  margin-bottom: 10px;
}

.testimonial {
  border-left: 4px solid #005d8f;
  padding-left: 12px;
  margin-bottom: 12px;
  font-style: italic;
}

.callout {
  background: #e9f4fb;
  padding: 12px 15px;
  border-left: 4px solid #005d8f;
  margin-bottom: 15px;
}

.footer-contact {
  font-size: 0.95rem;
}

footer {
  background: #003b5c;
  color: #fff;
  text-align: center;
  padding: 12px 10px;
  font-size: 0.85rem;
  margin-top: 20px;
}

/* Simple form styling */
form label {
  display: block;
  margin-bottom: 4px;
  font-weight: bold;
}

form input,
form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

form button {
  background: #005d8f;
  color: #fff;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: bold;
}

form button:hover {
  background: #0077b6;
}

/* Responsive */
@media (max-width: 700px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  header .contact-header {
    margin-top: 10px;
    text-align: left;
  }

  .hero {
    padding: 40px 15px;
  }

  .hero h2 {
    font-size: 1.6rem;
  }
}
