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

body {
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-size: 40px;
  color: black;
}

p {
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
}

.brand {
  display: block;
  background: url('../images/logo.svg') no-repeat left;
  background-size: contain;
  color: transparent;
  text-indent: -10000px;
  overflow: hiden;
  width: 132px;
  height: 36px;
}

.button {
  display: inline-block;
  font: inherit;
  padding: 0 16px;
  height: 50px;
  line-height: 50px;
  background-color: #ceeb6c;
  color: black;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 24px;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  text-decoration: none;
}

.button:before, .button:after {
  content: '';
  display: block;
  z-index: -1;
  background: white;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
}

.button:before {
  top: 10px;
  left: 10px;
  background: url('../images/button-shadow.svg') repeat bottom right;
}

button:hover {
}

p span {
  white-space: nowrap;
}

.coming {
  white-space: nowrap;
}

.right-content {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: right;
}

.flag-icon {
  display: inline-block;
  width: 24px;
  height: 13px;
  background: url('../images/flag.svg') no-repeat center;
  background-size: contain;
  margin-right: 8px;
  vertical-align: -2px;
}

.jumbotron {
  max-width: 1000px;
  min-height: 250px;
  background: url('../images/caliper.svg') no-repeat right top;
  margin: 100px auto 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 0 1rem;
}

.jumbotron p {
  font-size: 24px;
}

.cta-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.file-formats {
  color: #666;
  font-size: 14px;
}

.process {
  padding: 0 20px;
}

.content {
  max-width: 985px;
  margin: 80px auto;
  padding-bottom: 60px;
}

.process h2, .team h2, .shipping h2 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-bottom: 60px;
  width: 100%;
}

.process h2 span, .team h2 span, .shipping h2 span {
  background: white;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.process h2::after, .team h2::after, .shipping h2::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: repeating-linear-gradient(to right, black 0px, black 1px, transparent 1px, transparent 4px);
  z-index: 0;
}

.process-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 1rem;
}

.process-item.reverse {
  flex-direction: row-reverse;
}

.process-content {
  max-width: 400px;
}

.process-image {
  text-align: center;
}

.process-image img {
  max-width: 100%;
  min-width: 90px;
  height: auto;
}

.process h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}

.team-member {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
}

.team-member h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.team-member .role {
  font-weight: 600;
  margin-bottom: 8px;
}

.team-member p {
  font-size: 16px;
  margin-bottom: 0;
}

.shipping .content {
  text-align: center;
  padding: 0 1rem;
}

.shipping h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}

.shipping-map {
  display: block;
  max-width: 845px;
  width: 100%;
  height: auto;
  margin: 20px auto;
}

.copyright {
  margin-top: 100px;
  padding: 20px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

.mobile-break {
  display: none;
}

@media (max-width: 400px) {
  .bullet {
    display: none;
  }
  .right-content::after {
    content: '\A';
    white-space: pre;
  }

  .mobile-break {
    display: block;
  
  }
}

@media (max-width: 1024px) {
  .header {
    padding: 1rem;
  }
}
