* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", sans-serif;
  color: #1f2937;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

header {
  padding: 20px 120px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  justify-content: space-between;
  align-items: center;
}

header .contact {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  color: #142752;
}

header .contact a {
  text-decoration: none;
  color: #142752;
  font-weight: 600;
  margin-right: 2rem;
}

.hero {
  background: url(images/header-bg.png);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-size: cover;
}

.hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero .text {
  font-size: 3rem;
  font-weight: bold;
}

.hero img {
  width: 100%;
  max-width: 600px;
}

.hero .decor-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
}

.hero .decor-bottom {
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 300px;
}

.services {
  padding: 60px 0;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  padding: 4rem;
}

.valet-section {
  background: #fff;
  padding: 60px 0;
  width: 100%;
  margin: 0;
}

.valet-section .container {
  max-width: 100%;
}


.valet-section h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.valet-item {
  display: flex;
  flex-direction: column;
  gap: 100px;
  justify-content: center;
  margin-bottom: 60px;
  position: relative;
  padding-left: 0rem;
  padding-right: 0rem;
  padding-top: 5rem;
}

.valet-item img {
  width: 200px;
  border-radius: 12px;
}

.valet-item .text {
  font-size: 1.5rem;
}

.valet-item .text h3 {
  font-size: 2rem;
}

.valet-section .decor-top {
  position: absolute;
  top: -20px;
  left: -40px;
  width: 280px;
  z-index: 1;
  display: none;
}

.valet-section .decor-bottom {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 200px;
  z-index: 1;
  display: none;
}


.section-divider {
  height: 1px;
  width: 100%;
  border-top: 4px dotted #d1d5db;
  /* Tailwind gray-300 */
  margin: 40px auto;
}

.terms {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.privacy {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer {
  background: url(images/footer-bg.png);
  background-size: cover;
  color: #fff;
  padding: 80px 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 15rem;
}

.footer img {
  width: 100px;
  margin-bottom: 12px;
}

.footer h4 {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 8px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 16px;
}

@media (min-width: 768px) {
  .hero .hero-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .valet-item {
    flex-direction: row;
    align-items: center;
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .valet-item.reverse {
    flex-direction: row-reverse;
  }

  .text {
    width: 50%;
  }

  .valet-item img {
    width: 400px;
  }

  header {
    flex-direction: row;
  }

  header .contact{
    flex-direction: row;
  }

  .valet-section .decor-bottom{
    display: block;
  }

  .valet-section .decor-top{
    display: block;
  }

  .footer-content{
    margin-top: 0rem;
  }
}