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

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

header {
  background: #2c3e50;
  color: white;
  padding: 0.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.breadcrumbs {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.breadcrumbs a,
.breadcrumbs a:visited {
  color: #555;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span[aria-hidden] {
  margin: 0 0.3rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: white;
}

.nav-logo-link:visited,
.nav-logo-link:active {
  color: white;
}

.nav-logo {
  height: calc(100% + 1rem);
  max-height: 56px;
  width: auto;
  filter: invert(1) brightness(2);
  mix-blend-mode: screen;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

nav h1 {
  font-size: 1.5rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #3498db;
}

nav a:visited {
  color: white;
}

nav a:active {
  color: white;
}

.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/assets/img/header.jpg") center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 60px;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #bcbeb0;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 1400px) {
  .hero h2 {
    font-size: 4rem;
  }

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

@media (min-width: 1800px) {
  .page-wrapper {
    display: flex;
    height: 100vh;
    overflow: hidden;
  }

  .hero-column {
    width: 50%;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
  }

  .content-column {
    width: 50%;
    margin-left: 50%;
    height: 100vh;
    overflow-y: auto;
  }

  header {
    position: sticky;
    top: 0;
  }

  .hero {
    margin-top: 0;
    height: 100vh;
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("/assets/img/header.jpg");
    background-position: center;
    background-size: cover;
  }

  section {
    max-width: 100%;
    padding: 4rem 3rem;
  }

  section > * {
    max-width: none;
  }

  .page-wrapper ~ footer {
    margin-left: 50%;
    width: 50%;
  }
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: #3498db;
  color: white !important;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #2980b9;
  color: white !important;
}

.btn:visited {
  color: white !important;
}

.btn:active {
  color: white !important;
}

section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

h2 {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.page-wrapper section h2 {
  text-align: center;
}

section h2 ~ h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 1400px) {
  section {
    padding: 5rem 3rem;
  }

  h2 {
    font-size: 3rem;
  }

  section h2 ~ h2 {
    font-size: 1.75rem;
  }
}

@media (min-width: 1800px) {
  section {
    max-width: 100%;
    padding: 5rem 10%;
  }

  section > * {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1400px) {
  .services {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.service-card,
.service-card:visited {
  padding: 1.5rem;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: transform 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  margin: 1rem 0;
  color: #2c3e50;
}

#about {
  background: #f4f4f4;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

@media (min-width: 1400px) {
  .about-content {
    max-width: 1200px;
    gap: 3rem;
  }
}

.about-image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-content p {
  flex: 1;
  min-width: 300px;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: left;
}

@media (min-width: 1400px) {
  .about-image {
    width: 300px;
    height: 300px;
  }

  .about-content p {
    font-size: 1.2rem;
    line-height: 2;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 1rem;
  }

  .nav-logo {
    max-height: 44px;
  }

  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 0.9rem;
  }

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

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

  h2 {
    font-size: 2rem;
  }

  section h2 ~ h2 {
    font-size: 1.25rem;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-content p {
    text-align: center;
  }
}

footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.footer-col h4 {
  margin-bottom: 0.5rem;
  color: #bcbeb0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.3rem;
}

.footer-col a,
.footer-col a:visited {
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  color: white;
  text-decoration: underline;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 1000px) {
  .contact-info {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    justify-content: center;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    max-width: 600px;
    align-items: center;
    text-align: center;
  }

  .contact-details .btn {
    width: auto;
  }

  .contact-form-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}

section p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

section ul,
section ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

ul.pill-links,
.pill-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

ul.pill-links li,
.pill-links ul li {
  margin: 0;
}

ul.pill-links li a,
.pill-links ul li a {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: #f0f4f8;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  color: #2c3e50;
  text-decoration: none;
  font-size: 0.9rem;
  transition:
    background 0.2s,
    border-color 0.2s;
}

ul.pill-links li a:visited,
.pill-links ul li a:visited {
  color: #2c3e50;
}

ul.pill-links li a:hover,
.pill-links ul li a:hover {
  background: #3498db;
  border-color: #3498db;
  color: white;
}

a {
  color: #3498db;
}

a:visited {
  color: #3498db;
}

a:active {
  color: #3498db;
}

.contact-form-container {
  background: #fff;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
}

@media (min-width: 1000px) {
  .contact-form-container {
    max-width: 600px;
    width: 100%;
  }
}

.contact-form-header {
  background: #ccc;
  color: #fff;
  font-size: 1em;
  padding: 0.5em;
  text-align: center;
}

.contact-form-iframe {
  border: 0px;
  height: 600px;
  width: 100%;
}
