.content {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #666;
  margin: 1rem 0;
  font-family: "Montserrat", sans-serif;
  text-align: justify;
}
.common-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #000000;
  margin: 1.5rem 0;
  font-family: "Montserrat", sans-serif;
}
.common-btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border: none;
  border-radius: 0.4rem;
  background: linear-gradient(135deg, #df1d7e, #ff3b9d);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
  width: fit-content;

  position: relative;
  overflow: hidden;
  cursor: pointer;

  transition: all 0.35s ease;

  box-shadow: 0 6px 18px rgba(223, 29, 126, 0.35);
}

/* Shine effect layer */
.common-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.6s ease;
}

/* Hover animation */
.common-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 12px 35px rgba(223, 29, 126, 0.6),
    0 0 20px rgba(223, 29, 126, 0.5);
}

/* Sweep shine */
.common-btn:hover::before {
  left: 130%;
}

/* Click effect */
.common-btn:active {
  transform: translateY(-1px) scale(0.97);
  box-shadow: 0 5px 12px rgba(223, 29, 126, 0.35);
}
.color-white{
  color: white !important;
}

.seo-hero {
  background: linear-gradient(135deg, #eef9fd 0%, #fff4f8 100%);
  padding: 90px 0 70px;
}

.seo-eyebrow {
  color: #df1d7e;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.seo-hero h1 {
  color: #039ede;
  font-family: "Luckiest Guy", cursive;
  font-size: 3.2rem;
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.seo-section {
  padding: 55px 0;
}

.seo-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 18px;
}

.seo-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
}

.seo-card {
  height: 100%;
  border: 1px solid #e8eef3;
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(3, 158, 222, 0.08);
}

.seo-list {
  margin: 0;
  padding-left: 20px;
  color: #555;
  line-height: 1.7;
}

.seo-faq {
  border-bottom: 1px solid #e8eef3;
  padding: 18px 0;
}

.seo-faq p {
  margin-bottom: 0;
}

.nap-box {
  background: #039ede;
  color: #fff;
  border-radius: 8px;
  padding: 24px;
}

.nap-box a {
  color: #fff;
}

@media (max-width: 768px) {
  .seo-hero {
    padding: 65px 0 45px;
  }

  .seo-hero h1 {
    font-size: 2.3rem;
  }
}
