/* Reset and base */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400; /* Regular */
  background: #fdfdf5;
  color: #333319;
}
a {
  color: inherit;
  text-decoration: none;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.25;
  margin-bottom: 2rem;
}

/* Container */
header {
  background: transparent;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 8rem;

  nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    font-weight: 500;
    margin-top: 2rem;
  }
  nav a {
    position: relative;
    color: #383a1c;
    padding-bottom: 4px;
  }
  nav a:hover::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e1e160;
    border-radius: 2px;
  }

  #header-body {
    display: flex;
    margin: 8rem auto;
    max-width: 1150px;
    padding: 0 25px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;

    .left {
      max-width: 500px;
      width: 40%;
      min-width: 320px;

      .statistics {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 2rem;

        .item {
          display: flex;
          flex-direction: column;
          align-items: center;

          .divider {
            display: block;
            width: 100%;
            background: #e1e160;
            height: 5px;
            transform: rotate(5deg);
          }
        }
      }

      button {
        position: relative;
        margin-top: 4rem;
        margin-bottom: 2rem;
        background: linear-gradient(
          -270deg,
          rgba(225, 225, 96, 1) 0%,
          rgba(199, 199, 7, 1) 100%
        );
        border: none;
        font-size: 1.5rem;
        border-radius: 8px;
        padding: 0.5rem 1.5rem;
        font-weight: 400;
        cursor: pointer;
        transition: all 0.3s ease-in-out;

        &::after {
          content: "";
          position: absolute;
          width: 100px;
          left: 30px !important;
          top: 20px !important;
          inset: 0;
          background: #e1e160;
          border-radius: 8px;
          filter: blur(17px);
          z-index: -1;
          transition: all 0.3s ease-in-out;
        }

        &:hover {
          transform: translateY(-6px); /* moves up */

          &::after {
            filter: blur(5px);
          }
        }
      }

      strong {
        background: linear-gradient(
          -270deg,
          rgba(225, 225, 96, 1) 0%,
          rgba(199, 199, 7, 1) 100%
        );
        border-radius: 8px;
        padding: 0.2rem;
        font-weight: 400;
      }

      h2,
      h3 {
        font-weight: 400;
        font-size: 1.18rem;
        margin: 0;

        &::before {
          content: "• ";
          color: #e1e160; /* Change color here */
          font-size: 2.5rem; /* Adjust size if needed */
        }
      }
    }

    .right {
      width: 60%;
      max-width: 600px;

      img {
        width: 100%;
      }
    }
  }
}
/* Logo and name */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 20px;
  cursor: default;
}
/* Logo symbol (simple) */
.logo img {
  width: 90px;
}
.content {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: start;
  justify-content: space-between;
  img {
    max-width: 320px;
  }

  article {
    max-width: 600px;

    h3 {
      font-size: 1.5rem;
    }

    p {
      line-height: 1.5;
    }

    .points {
      margin-top: 2rem;
      max-width: 420px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1rem;

      span {
        display: block;
        width: 195px;
      }

      img {
        width: 21px;
        margin-right: 0.5rem;
      }
    }
  }
}
.partners {
  text-align: center;
  max-width: 1200px;
  width: 95%;
  margin: 8rem auto;

  h3 {
    font-size: 1.5rem;
  }

  div {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
    align-items: center;
  }

  img {
    max-width: 150px;
    height: auto;
  }
}
footer {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: 95%;

  .left {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 16px;
    background: #e1e160;
    min-width: 320px;
  }

  .right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 3rem;

    form {
      display: flex;
      flex-direction: column;
      gap: 1rem;

      input,
      textarea {
        background: #ededed;
        border-radius: 8px;
        border: 1px solid #5b5b5b;
        padding: 0.5rem 1rem;
      }

      button {
        position: relative;
        background: linear-gradient(
          -270deg,
          rgba(225, 225, 96, 1) 0%,
          rgba(199, 199, 7, 1) 100%
        );
        border: none;
        font-size: 1rem;
        border-radius: 8px;
        padding: 0.25rem 1rem;
        font-weight: 400;
        cursor: pointer;
      }
    }
  }
}
.faq-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.faq-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-item details {
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 15px 20px;
  background: #E1E160;
  transition: 0.3s;
}

.faq-item summary {
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 22px;
  transition: 0.2s;
}

.faq-item details[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #555;0
}
.professions {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.professions-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.professions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.profession-card {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 25px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.profession-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.profession-card h3 {
  font-size: 20px;
}
@media (max-width: 800px) {
  /* Styles for screens 800px and smaller */
  footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .content {
    width: 90%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #header-body {
    flex-direction: column-reverse;

    .left {
      width: 90%;
      min-width: 300px;
      margin-top: -150px;
    }

    .right {
      width: 90%;
      min-width: 300px;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;

        -webkit-mask-image: linear-gradient(to bottom, #fdfdf5, #fdfdf505);
        mask-image: linear-gradient(to bottom, #fdfdf5, #fdfdf505);

        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
      }
    }
  }
}
