.site-header {
  background: #415a77;
}

.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 80px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: #ffffff;
  font-size: larger;
  font-family: Arial, Helvetica, sans-serif;
}

.main-nav a:hover {
  color: slategray;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem; /* space between logo and contact */
}

.header-contact {
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.header-contact-title {
  font-size: 1.1rem;
  font-weight: bold;
}

.header-contact-details {
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

/* Header left group */
.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-contact {
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.header-contact-title {
  font-weight: bold;
  font-size: 1rem;
}

.header-contact-details {
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

/* Hamburger button */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 900px) {
  .container {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    width: 100%;
    display: none;
  }

  .main-nav ul {
    flex-direction: column;
    background: #415a77;
    padding: 1rem 0;
    margin-top: 1rem;
  }

  .main-nav li {
    text-align: center;
    padding: 0.75rem 0;
  }

  .main-nav.show {
    display: block;
  }

  .header-contact {
    text-align: right;
  }
}

.heading-section {
  background-color: #f7f7f7;
  padding: 10px 10px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.image-text-section {
  padding: 4rem 2rem;
  background-color: #f7f7f7;
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.image-column {
  flex: 1;
}

.image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.text-column {
  flex: 1;
}

.text-column h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #063f36;
}

.text-column p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #063f36;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.btn:hover {
  background: #052f29;
}

/* Responsive */
@media (max-width: 900px) {
  .content-wrapper {
    flex-direction: column;
  }

  .text-column {
    text-align: center;
  }
}


.site-footer {
  background-color: #778da9;
  padding: 1.5rem 1rem;
  color: #ffffff;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr 2fr;
  gap: 3rem;
  align-items: start;
}

.footer-logo img {
  max-width: 160px;
}

.footer-info p,
.footer-hours p {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-info span {
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-hours strong {
  font-size: 1.2rem;
  font-family: Arial, Helvetica, sans-serif;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer-copyright{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #1b263b;
    color: #ffffff;
    padding: 1px;
}