/* ------------------ Reset ------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.5;
}

/* ------------------ Header ------------------ */
.site-header {
  position: relative;
  background-color: #ff6600;
  padding: 10px 10px 0px 10px;
  color: #fff;
  font-family: Arial, sans-serif;
  margin-bottom: 0;
}

.header-middle {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.logo-area .logo {
  max-height: 50px;
  height: auto;
  width: auto;
}

.logo-caption h1 {
  font-size: 1.2em;
  margin: 0;
  font-weight: bold;
  line-height: 0.6;
}

.logo-caption h2 {
  font-size: 0.8em;
  margin: 0;
  font-weight: normal;
}

/* Top headlines */
.header-toplines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: serif;
  font-weight: bold;
  line-height: 1.1;
}

.header-toplines p {
  color: #000;
  text-align: center;
  font-weight: 900;
}

.header-toplines p:first-child {
  font-size: 2em;
}

.header-toplines p:last-child {
  font-size: 1.8em;
}

/* ------------------ Contact Info ------------------ */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  font-size: 0.7rem;
  color: #fff;
  position: absolute;
  bottom: 1px;
  right: 10px;
}

.contact-info span {
  font-weight: bold;
  color: #fff;
  margin-right: 5px;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #FFD700;
  text-decoration: underline;
}

/* ------------------ Navigation ------------------ */
.nav-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding: 0;
  background-color: #000;
}

.main-nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: row;
  align-items: center;
  height: 30px;
}

.main-nav li {
  padding: 0 15px;
  margin: 0;
  display: flex;
  align-items: center;
  position: relative;
}

.main-nav li:not(:last-child)::after {
  content: "|";
  color: #ff6600;
  font-weight: bold;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  line-height: 1.5;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: none;
  opacity: 1;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #ff6600;
}

/* Hamburger button for mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ff6600;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

.menu-toggle:hover {
  color: #fff;
}

.header-bottom {
  position: relative;   /* needed so absolute breadcrumbs are relative to this container */
}

.breadcrumbs {
  font-size: 10px;
  position: absolute;       /* allow placement anywhere inside header-bottom */
  bottom: 0px;              /* 3px above the bottom of the header-bottom */
  left: 0;                  /* align left, or adjust if you want right */
  background: rgba(255, 255, 255, 0); /* transparent background, optional */
  padding: 0 0px;           /* tiny padding for readability */
  margin: 0;
  z-index: 5;
}
.breadcrumbs a {
  text-decoration: none;
  color: #343534;
}

.breadcrumbs a:hover {
  text-decoration: none;
  color: #ffffff;
}

/* ------------------ Buttons ------------------ */
button,
a.button,
.btn {
  background-color: #FF6600;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, transform 0.2s ease;
}

button:hover,
a.button:hover,
.btn:hover {
  background-color: #0f4503;
  transform: scale(1.05);
}

/* ------------------ Main Content ------------------ */
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.6;
  position: relative;
}

.header-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  background: #e6e3e1;
  color: #000;
  padding: 30px;
  margin-bottom: 10px;
}

.header-block:first-of-type {
  padding: 20px;
  margin-bottom: 20px;
}

.header-block:first-of-type p {
  margin-top: 5px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.main-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.main-content input,
.main-content textarea,
.main-content select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

/* ------------------ Testimonials ------------------ */

.testimonials-page article.testimonial {
  background: #c2c2c2;               /* light grey background */
  border: 2px solid #ddd;            /* subtle border */
  border-radius: 16px;                /* rounded corners */
  padding: 40px 25px;                /* space inside each card */
  margin-bottom: 30px;               /* space between testimonials */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* soft shadow */
  position: relative;                /* needed for quote icon */
}

.testimonials-page article.testimonial blockquote {
  border-left: 4px;                 /* remove previous orange border */
  margin: 0;                         /* reset margins */
  padding: 0;                        /* reset padding */
  font-style: italic;                /* italic text */
  color: #333;
}

.testimonials-page article.testimonial blockquote::before {
  content: "\201C"; /* left curly quote */
  font-family: Georgia, serif;
  font-size: 6rem;
  color: #ff6600;
  position: absolute;
  top: -30px;
  left: 5px;
}

.testimonials-author {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: #ff6600;
  font-style: normal;
  text-align: right;                 /* author aligned right */
}

.testimonials-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 20px;
}

article.testimonial {
    position: relative; /* ensure pseudo-elements are positioned relative to this */
}

/* ------------------ Footer ------------------ */
.site-footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #ccc;
}

.footer-links a,
.footer-contact a,
.footer-social a {
  color: #ff6600;
  text-decoration: none;
  display: inline-block;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: none;
  opacity: 1;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-social a:hover {
  color: #fff;
  text-decoration: underline;
}

.icon-text {
  color: #0f4503;               /* icon + text color */
  font-size: 1em;              /* same as paragraph text */
  display: inline-flex;        /* keeps icon + text inline */
  align-items: baseline;       /* aligns icons nicely with text baseline */
  gap: 3px;                    /* subtle space between text and icon */
}

.icon-text i {
  font-size: 0.8em;            /* slightly smaller than text for subtlety */
  line-height: 1;               /* prevents extra vertical spacing */
  vertical-align: baseline;     /* aligns with text baseline */
}
.form-title {
    text-align: center;   /* centers the text horizontally */
    font-size: 24px;      /* optional: make it bigger */
    font-weight: bold;    /* optional: make it bold */
    margin-bottom: 20px;  /* optional: space below the title */
}
.arrow-right {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 8px solid #ff6600;
  vertical-align: middle; /* aligns with text */
  margin-left: 3px;       /* small spacing from text */
}

/* ------------------ Responsive ------------------ */
@media (max-width: 1024px) {
  .header-middle {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav li {
    margin: 5px 0;
    padding: 5px 0;
  }

  .main-nav a {
    padding: 10px 0;
  }

  .main-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .main-nav.open {
    max-height: 500px;
    transition: max-height 0.3s
