* {
  box-sizing: border-box;
  font-family: "Poppins", system-ui;
  margin: 0;
}

/* Make images responsive while preserving aspect ratio */
img {
  max-width: 100%;
  height: auto;
}

/* top header styles */
.top-head {
  background-color: #316cf4;
  padding: 10px 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.header-title {
  font-size: 25px;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

/* hero sec css starts */
.hero-sec {
  padding: 40px 0;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.hero-content-wrapper {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.content {
  flex: 1;
}

.hero-title {
  color: #000000;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.3em;
  text-align: center;
  margin-bottom: 18px;
}

.requirements-list {
  list-style: none;
  max-width: 350px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.requirement-item {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.requirement-item:last-child {
  margin-bottom: 0;
}

.icon-wrapper {
  flex-shrink: 0;
}

.requirement-text {
  font-size: 22px;
  margin: 0 0 0 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
  width: 100%;
}

.highlight {
  font-weight: 700;
  color: #000000;
  margin-left: 4px;
}

.warning-head {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #856404;
  display: flex;
  align-items: center;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.warning-icon {
  width: 40px;
  transform: translateY(-2px);
  margin-right: 8px;
}

.warning-icon img {
  width: 100%;
}

.warning-text {
  font-size: 19px;
  color: #000000;
  margin: 0;
}

.cta-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
}

.cta-button {
  background-color: #316cf4;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.5em;
  font-weight: bold;
  padding: 19px 0;
  width: 100%;
  margin-top: 24px;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(14, 110, 253, 0.08);
}

.cta-button:hover {
  background: #5a8cff;
}

.rating-head {
  margin: 16px 0 0 0;
  text-align: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.rating-image {
  margin-bottom: 8px;
}

.rating-head img {
  width: 100%;
}

.rating-text {
  font-size: 19px;
  color: #000000;
  margin: 0;
}

.satisfied-text {
  font-size: 19px;
  color: #000000;
  text-align: center;
  margin: 20px 0 0 0;
}

.partners-head {
  margin-top: 32px;
  text-align: center;
}

.partners-head img {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.img-head {
  max-width: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-head img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(44, 62, 80, 0.07);
  object-fit: cover;
}

/* note section starts */
.note {
  color: #145a6e;
  font-size: 1.05rem;
  padding: 18px 0;
  margin-top: 32px;
  text-align: center;
  font-style: italic;
}

.note-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.note-text {
  font-size: 18px;
  margin: 0;
  font-style: italic;
}

/* footer sec starts */
.footer {
  color: #59686a;
  padding: 24px 0 0 0;
  font-size: 1rem;
  text-align: center;
  margin-top: 48px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 0 0 20px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #e4e4e4;
}

.footer-links a {
  text-decoration: none;
  color: #6d7377;
  font-size: 16px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #0e6efd;
  text-decoration: underline;
}

.footer-separator {
  color: #6d7377;
  font-size: 16px;
}

.footer-copyright {
  color: #6d7377;
  font-size: 16px;
  margin: 0;
  padding-top: 12px;
}

.dmca-badge {
  display: inline-block;
  margin-top: 10px;
}

.dmca-badge img {
  height: 30px;
}

/* Responsive styles */
@media screen and (max-width: 1399.98px) {
  .hero-title {
    font-size: 28px;
  }

  .img-head {
    max-width: 472px;
  }
}

@media screen and (max-width: 1199.98px) {
  .img-head {
    max-width: 400px;
  }

  .requirement-text {
    font-size: 19px;
  }

  .warning-text,
  .rating-text,
  .satisfied-text {
    font-size: 15px;
  }

  .cta-button {
    font-size: 20px;
  }
}

@media screen and (max-width: 991.98px) {
  .hero-content-wrapper {
    gap: 20px;
  }

  .rating-head {
    width: 100%;
  }

  .img-head {
    max-width: 43%;
  }

  .cta-button {
    width: 100%;
  }

  .requirements-list {
    max-width: 326px;
  }
}

@media screen and (max-width: 767.98px) {
  .header-title {
    font-size: 19px;
  }

  .note-text {
    font-size: 15px;
  }

  .footer-links a,
  .footer-separator,
  .footer-copyright,
  .footer-list li a,
  .footer p {
    font-size: 15px;
  }

  .footer-list li {
    line-height: 18px;
  }

  .hero-sec {
    padding: 20px 0;
  }

  .img-head {
    max-width: 100%;
    width: 100%;
    display: none;
  }

  .requirements-list {
    max-width: 100%;
    margin: 0px 20px 25px 45px !important;
  }

  .hero-title {
    font-size: 30px;
  }

  .requirement-text {
    font-size: 20px;
  }

  .warning-text,
  .rating-text,
  .satisfied-text {
    font-size: 16px;
  }

  .cta-button {
    font-size: 22px;
    width: 100%;
  }

  .header-container,
  .hero-container,
  .note-container,
  .footer-container {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}

@media screen and (min-width: 768px) {
  .img-head {
    display: flex;
  }
}

@media screen and (max-width: 575.98px) {
  .header-title {
    font-size: 18px;
  }
}

@media screen and (max-width: 400px) {
  .header-title {
    font-size: 14px;
  }
}

