@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white;
  color: #fff;
  overflow-x: hidden;
}

.menu-toggle {
  display: none;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

header.opaque {
  background-color: rgba(255, 255, 255, 1);
}

.logo img {
  height: 69px;
  margin-right: 250px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin-left: 250px;
}

nav li {
  display: inline;
}

nav a {
  color: black;
  text-decoration: none;
  font-family: Inter;
  font-weight: 300;
  font-size: large;
}

.btn {
  display: inline-block;
  background-color: #000000;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 15px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #33353a;
}

.about-mission {
  background-image: url(/img/Frame-1-6-scaled.jpg);
  background-size: 100%;
  padding: 60px 20px;
  color: #333;
  font-family: Arial, sans-serif;
}

.about-section {
  text-align: center;
  padding-left: 5%;
  padding-right: 5%;
  margin-bottom: 8vw;
}

.about-section h2 {
  font-size: 2.3em;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1.2em;
  line-height: 1.6;
  margin: 0;
}

.service-items {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  margin: 40px 20px;
}

.service-item {
  background-color: #f6f6f6;
  border-radius: 13px;
  padding: 16px;
  text-align: left;
  transition: transform 0.3s ease;
  width: 19%;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item img {
  width: 75px;
  height: 75px;
  margin-bottom: 10px;
}

.service-item h3 {
  font-size: 1em;
  margin: 0;
  margin-bottom: 5px;
}

.service-item p {
  color: #383838;
  font-size: 1.1em;
  margin: 0;
}

.contact-info {
  padding: 80px 20px;
  background-image: url("/img/image-1.png");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
}

.contact-info .contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.contact-info .btn {
  background-color: #000;
  padding: 15px 30px;
  border-radius: 15px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.contact-info .btn:hover {
  background-color: #333;
}

.footer {
  background-color: #ffffff;
  color: #000;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.footer-secondrow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.footer-item {
  font-size: 0.95em;
  flex: 0;
  min-width: 200px;
}

.footer-logo-tagline img {
  max-height: 80px;
  max-width: 80px;
}

.footer-logo-tagline p {
  opacity: 0.4;
  font-size: 0.8em;
  margin: 0;
  text-align: left;
}

.footer-nav ul,
.footer-services ul {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}

.footer-nav ul li,
.footer-services ul li {
  margin-bottom: 15px;
  font-size: 0.9em;
}

.footer-nav a,
.footer-services a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-services a:hover {
  color: #616161;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #616161;
}

.footer-social img {
  width: 15px;
  height: auto;
  margin-bottom: 2.7px;
}

hr {
  opacity: 0.2;
  border: none;
  border-top: 0.5px solid #000;
  margin-left: 5vw;
  margin-right: 5vw;
}

.footer-bottom p {
  font-size: 0.8em;
  margin-left: 5vw;
  text-align: left;
}

@media (max-width: 768px) {
  
  .logo img {
    height: 50px;
    margin-right: 0;
  }
  
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2em;
    color: #000;
    cursor: pointer;
  }
  
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
    z-index: 10000;
  }
  
  nav.open {
    display: block;
  }
  
  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-left: 0;
    text-align: center;
  }
  
  nav a {
    font-size: 1em;
  }
  
  .about-mission {
    padding: 40px 10px;
    background-image: url(/img/Frame-1-6-scaled.jpg);
    background-size: cover;
  }
  
  .about-section {
    padding: 0 5%;
    margin-bottom: 4vw;
  }
  
  .about-section h2 {
    font-size: 1.8em;
  }
  
  .about-section p {
    font-size: 1em;
    line-height: 1.5;
  }
  
  .service-items {
    flex-direction: column;
    gap: 20px;
    margin: 20px;
  }
  
  .service-item {
    width: 90%;
    margin: 0 auto;
  }
  
  .contact-info {
    padding: 40px 10px;
  }
  
  .contact-info h2 {
    font-size: 1.8em;
  }
  
  .contact-info .btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 20px;
  }
  
  .footer-row,
  .footer-secondrow {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  
  .footer-item {
    text-align: center;
    margin: 10px 0;
  }
  
  hr {
    margin: 0 10vw;
  }
  
  .footer-bottom p {
    margin-left: 0;
    text-align: center;
  }
}