:root {
  --border: 3px;
  --color1: #f39200;
  --color2: #643ea8;
  --from: 30deg;
  --distance: 46%;
}

.hero {
  background: rgb(214,122,8);
  background: linear-gradient(90deg, rgba(214,122,8,1) 35%, #643ea8 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 24px;
  margin-bottom: 30px;
}

/* About Section */
.about-section {
  padding: 50px 30px;
  text-align: center;
  background-color: #fff;
}

.about-section h2 {
  color: #DE7C12;
  margin-bottom: 30px;
  font-size: 36px;
}

.about-section p {
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.services-values-section {
  padding: 50px 30px;
  background-color: #f9f9f9;
  text-align: center;
}

.services-values-section h2 {
  color: #D67A08;
  margin-bottom: 30px;
  font-size: 36px;
}

.services-list {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.service-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 30%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #333;
}

.service-item p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.our-team {
  padding: 50px 30px;
  background-color: white;
  text-align: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.our-team div h2 {
  color: #DE7C12;
  margin-bottom: 30px;
  font-size: 30px;
}

.our-team div p {
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* IMPRORTANT */
.img-wrap {
  position: relative;
  padding: 30px;
}
.img-wrap::after {
  content: '';
  border-radius: 999px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: conic-gradient(
    from var(--from),
    var(--color1),
    var(--color2) var(--distance),
    transparent var(--distance)
  );
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - var(--border)),
    #fff calc(100% - var(--border) + 1px)
  );
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - var(--border)),
    #fff calc(100% - var(--border) + 1px)
  );
}

.our-team .img-wrap img {
  border-radius: 80%;
  display: block;
  width: calc(100vw - 80px);
  max-width: 360px;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  object-fit: cover;
}

.embed-section {
    padding: 50px 30px;
    background-color: #f9f9f9;
    text-align: center;
}

.embed-section h2 {
    color: #D67A08;
    margin-bottom: 30px;
    font-size: 36px;
}

.embed-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.tiktok-embed {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    overflow: hidden;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .services-list {
    flex-direction: column;
  }

  .service-item {
    width: 100%;
  }

  .our-team {
    justify-content: center;
  }
}
