body {
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 40px 0;
}

.text-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 1em;
}

.text-container span {
  color: #0f766e;
  font-weight: 700;
}

.header-text {
  font-weight: 700;
  font-size: 2.625em;
  color: #27272a;
}

.description-text {
  font-weight: 500;
  font-size: 1.125em;
  align-items: center;
  color: #52525b;
}

.main-product {
  color: #f0fdfa;
  font-weight: 700;
  font-size: 0.875em;
  padding: 8px 10px;
  position: absolute;
  top: -20px;
  left: -20px;
  transform: translateY(-50%);
  background: #134e4a;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
}

#fish-products .product {
  position: relative;
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(30% - 10px);
  max-width: calc(30% - 50px);
  text-align: left;
  border-radius: 6px;
}

#fish-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 60px 0;
  gap: 20px 40px;
}

#fish-products .product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

#fish-products .product-header h3 {
  font-weight: 600;
  font-size: 1.5em;
  color: #18181b;
}

#fish-products p {
  margin-top: 20px;
  font-size: 0.875em;
  font-weight: 400;
  color: #52525b;
}

#fish-products .product-header img {
  max-width: 150px;
  max-height: 60px;
}

#about-us {
  background-image: url("/images/icons/tlo.svg");
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  text-align: center;
  padding: 100px 50px;
}

#about-us h3 {
  font-weight: 800;
  font-size: 2em;
  color: #f4f4f5;
}

#about-us p {
  padding-top: 20px;
  font-weight: 500;
  font-size: 1.25em;
  color: #e4e4e7;
}

#about-us .block {
  width: 30%;
  padding: 30px;
  margin: 0 2.5em;
}

#contact {
  background: url("/images/contact-image-bg.webp") no-repeat center center/cover;
  display: flex;
  align-items: end;
  justify-content: end;
  color: white;
  text-align: center;
  margin: 40px 10%;
  border-radius: 6px;
}

.contact-overlay {
  background-color: rgba(40, 91, 93, 0.66);
  width: 60%;
  border-radius: 6px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 80%;
  padding: 5% 0;
  max-width: 1200px;
  gap: 40px;
}

.contact-info-section,
.contact-form {
  padding: 20px;
  border-radius: 10px;
  flex: 1;
}

.contact-info-section h1,
.contact-form h1 {
  margin-bottom: 20px;
  text-align: start;
  font-weight: 700;
  font-size: 36px;
  color: #ffffff;
}

.contact-item {
  display: flex;
  align-items: center;

  justify-content: start;
  margin-bottom: 15px;
}

.contact-item .icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.map-image {
  margin-top: 20px;
  width: 100%;
  border-radius: 10px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.row {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-bottom: 14px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
}

input[type="text"],
input[type="email"] {
  flex: 1;
}

textarea {
  height: 150px;
  resize: none;
}

.checkbox-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-container input {
  margin-right: 10px;
}

button {
  background-color: transparent;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding: 10px 26px;
  border: 5px solid #2dd4bf;
  border-radius: 6px;
  font-weight: 700;
  font-size: 18px;
  color: #fafafa;
}

button:hover {
  background-color: #2dd4bf;
  color: #fafafa;
}

.checkbox-container label {
  font-weight: 500;
  font-size: 12px;
  color: #f4f4f5;
  text-align: start;
}

@media (max-width: 1400px) {
  #fish-products .product {
    max-width: 45%;
  }
}

@media (max-width: 900px) {
  #about-us {
    flex-direction: column;
    padding: 60px 30px;
  }

  #about-us .block {
    width: 100%;
  }
  .contact-overlay {
    background-color: rgba(40, 91, 93, 0.66);
    width: 100%;
  }

  .row {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 20px;
  }

  #fish-products {
    flex-direction: column;
  }

  #fish-products .product {
    max-width: 100%;
  }

  #about-us {
    padding: 40px 20px;
  }

  #contact-container {
    margin: 1.5em;
  }

  .card {
    max-width: 100%;
    flex-direction: column;
  }

  .header-text {
    font-size: 1.8em;
  }

  .description-text {
    font-size: 0.9em;
  }

  .product-header h3 {
    font-size: 1.4em;
  }

  #fish-products p {
    font-size: 0.9em;
  }

  .main-product {
    font-size: 0.8em;
  }

  #about-us h3 {
    font-size: 1.7em;
  }

  #about-us p {
    font-size: 1.1em;
  }
}

@media (max-width: 500px) {
  .header-text {
    font-size: 30px;
  }
  .description-text {
    font-size: 14px;
  }
  .main-product {
    font-size: 12px;
  }

  #fish-products .product-header h3 {
    font-size: 24px;
  }
  #fish-products p {
    font-size: 14px;
  }
  #about-us h3 {
    font-weight: 600;
    font-size: 24px;
  }

  #about-us p {
    font-weight: 400;
    font-size: 14px;
  }

  .contact-form h1 {
    font-size: 20px;
  }

  .checkbox-container label {
    font-size: 10px;
  }

  button {
    font-size: 14px;
  }
}
