* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: lexend, sans-serif; */
  font-family: "Lexend", sans-serif;
  line-height: 1.6;
}

.free-seo-trial-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main Content */
.main-content {
  /* background: white; */
  margin: 20px 0;
  padding: 40px 0;
  border-radius: 8px;
  /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
}

.seo-trial-content-section {
  margin-bottom: 30px;
}

.seo-trial-content-section h2 {
  font-size: 34px;
  margin-bottom: 15px;
  color: #170644;
}

.seo-trial-content-section p {
  margin-bottom: 16px;
  color: #494949;
  line-height: 1.7;
  font-size: 16px;
  text-align: justify;
}

.time-duration {
  background: white;
  border-radius: 10px;
  margin: 40px 0;
}

.seo-trial-section-title {
  font-size: 34px;
  color: #170644;
  margin-bottom: 10px;
  font-weight: bold;
}

.seo-trial-duration-title {
  font-size: 20px;
  color: #170644;
  margin: 15px 0 20px;
  font-weight: bold;
}

.days-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 30px 0;
}

.days-column h3 {
  font-size: 25px;
  color: #f80035;
  margin-bottom: 20px;
  font-weight: bold;
}

.day-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 0;
  border-bottom: 1px solid #e2e8f0;
}

.day-item:last-child {
  border-bottom: none;
}

.day-title {
  font-weight: 600;
  color: #494949;
  flex: 1;
}

.day-menu {
  color: #494949;
  font-size: 20px;
  cursor: pointer;
}

.job-detail {
  margin-bottom: 20px;
  padding-bottom: 15px;
  /* border-bottom: 1px solid #e2e8f0; */
}

.job-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.job-detail p {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
}

.box1 {
  display: flex;
  background-color: #170644;
  border-radius: 10px;
  padding: 20px;
}

.terms {
  /* background: #f8f9fa; */
  /* padding: 20px;
            border-radius: 6px; */
  margin: 30px 0;
}

.terms h3 {
  font-size: 34px;
  margin-bottom: 15px;
  color: #170644;
}

.terms ul {
  list-style: none;
  padding-left: 0;
}

.terms li {
  margin-bottom: 16px;
  color: #494949;
  line-height: 1.7;
  font-size: 16px;
}

.terms li::before {
  content: "• ";
  color: #170644;
  margin-right: 8px;
}

.free-seo-trial-cta-section {
  /* text-align: center; */
  margin: 40px 0;
}

.free-seo-trial-cta-section h2 {
  font-size: 34px;
  margin-bottom: 15px;
  color: #170644;
}

.free-seo-trial-contact-info {
  color: #494949;
  font-size: 16px;
}


@media (max-width: 1024px) {
  .seo-trial-section-title {
    font-size: 28px;
  }

  .seo-trial-duration-title {
    font-size: 18px;
  }

  .days-column h3 {
    font-size: 22px;
  }

  .day-title {
    font-size: 15px;
  }

  .job-detail p {
    font-size: 14px;
  }

  .day-item {
    padding: 30px 0;
  }
}

@media (max-width: 768px) {
  .days-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .day-item {
    padding: 20px 0;
  }

  .seo-trial-section-title {
    font-size: 24px;
    text-align: center;
  }

  .seo-trial-duration-title {
    font-size: 16px;
    text-align: center;
  }

  .days-column h3 {
    text-align: center;
  }

  .box1 {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .seo-trial-section-title {
    font-size: 22px;
  }

  .seo-trial-duration-title {
    font-size: 15px;
  }

  .day-title {
    font-size: 14px;
  }

  .day-menu {
    font-size: 18px;
  }

  .job-detail p {
    font-size: 13px;
  }

  .box1 {
    padding: 12px;
  }
}

