/* ================================
   Privacy Policy / Terms Section
   Font: Manrope | Colors: #1d47a7 / #1da1f2
   Icons: Font Awesome 6 (Free Solid)
   ================================ */

* {
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
  color: #22314f;
}

/* ---------- Header ---------- */
.hero {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background: #ffffff;
}

.hero-inner {
  max-width: 1620px;
  margin: 0 auto;
  padding: 90px 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 420px;
  max-width: 700px;
}

.hero-bar {
  width: 48px;
  height: 6px;
  background: #1da1f2;
  border-radius: 4px;
  margin-bottom: 18px;
}

.hero h1 {
  color: #1da1f2;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: .5px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  color: #000000;
  font-size: 25px;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 22px;
    text-align: justify;

}

.hero-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000000;
  font-weight: 700;
  font-size: 18px;
}

.hero-date .dot {
  width: 26px;
  height: 26px;
  background: #1da1f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #ffffff;
  flex: none;
}

.hero-img {
  flex: 0 0 auto;
  width: 500px;
  max-width: 38%;
}

.hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Sub-section container ---------- */
.wrap {
  max-width: 1320px;
  margin: 0 auto;
}

/* ---------- Grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 44px 48px 0;
}

.item {
  display: flex;
  gap: 15px;
  padding: 32px 52px 6px 0;
}

.icon {
  flex: none;
  width: 56px;
  height: 56px;
  border: 1.5px solid #1da1f2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(29, 71, 167, .08);
  font-size: 20px;
  color: #122f74;
}

.icon i {
  font-size: 20px;
  color: #122f74;
}

.item h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1d47a7;
  margin-bottom: 6px;
}

.item h3 span {
  color: #1da1f2;
}

.item p {
  font-size: 18px;
  line-height: 1.6;
  color: #585555;
  font-weight: 500;
  text-align: justify;
  margin-bottom: 8px;
}

.item p a {
  color: #1da1f2;
  text-decoration: none;
  font-weight: 700;
}

.item ul {
  margin: 0 0 8px;
  padding-left: 20px;
}

.item ul li {
  font-size: 18px;
  line-height: 1.6;
  color: #585555;
  font-weight: 500;
  margin-bottom: 4px;
}

.row-divider {
  grid-column: 1 / -1;
  border-top: 1px solid #e7ecf6;
  margin: 0;
}

/* ---------- Consent banner ---------- */
.consent {
  margin: 36px 48px 56px;
  background: linear-gradient(120deg, #1d47a7 0%, #1b3f95 100%);
  border-radius: 14px;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.consent-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 380px;
}

.consent-left .badge {
  flex: none;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
}

.consent-left .badge i {
  font-size: 28px;
  color: #ffffff;
}

.consent h4 {
  color: #ffffff;
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 4px;
}

.consent p {
  color: #cfdaf4;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 640px;
}

.consent-img {
  flex: none;
  width: 250px;
}

.consent-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ================================
   Responsive Breakpoints
   Mobile Small   : 320px  – 480px
   Mobile Large   : 481px  – 767px
   Tablet         : 768px  – 991px
   Small Laptop   : 992px  – 1199px
   Desktop        : 1200px – 1439px
   Large Desktop  : 1440px and above (base styles above)
   ================================ */

/* ---------- Desktop (1200px – 1439px) ---------- */
@media (max-width: 1439px) {
  .hero-inner {
    padding: 48px 40px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-img {
    width: 340px;
  }

  .grid {
    padding: 40px 40px 0;
  }

  .consent {
    margin: 32px 40px 48px;
  }
}

/* ---------- Small Laptop (992px – 1199px) ---------- */
@media (max-width: 1199px) {
  .hero-inner {
    padding: 44px 32px;
    gap: 24px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-img {
    width: 280px;
  }

  .grid {
    padding: 36px 32px 0;
    gap: 0;
  }

  .item {
    padding: 24px 24px 8px 0;
  }

  .icon,
  .icon i {
    font-size: 18px;
  }

  .icon {
    width: 52px;
    height: 52px;
  }

  .item h3 {
    font-size: 19px;
  }

  .item p,
  .item ul li {
    font-size: 16px;
  }

  .consent {
    margin: 30px 32px 44px;
    padding: 20px 26px;
  }

  .consent-img {
    width: 200px;
  }
}

/* ---------- Tablet (768px – 991px) ---------- */
@media (max-width: 991px) {
  .hero-inner {
    padding: 40px 28px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-img {
    width: 220px;
    max-width: 45%;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 28px 0;
  }

  .item {
    padding: 20px 20px 8px 0;
  }

  .row-divider {
    grid-column: 1 / -1;
  }

  .consent {
    margin: 28px 28px 40px;
    padding: 18px 22px;
  }

  .consent-img {
    width: 160px;
  }
}

/* ---------- Mobile Large (481px – 767px) ---------- */
@media (max-width: 767px) {
  .hero-inner {
    padding: 36px 24px;
    justify-content: center;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-bar {
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-date {
    justify-content: center;
    font-size: 14px;
  }

  .hero-img {
    width: 180px;
    max-width: 60%;
  }

  .grid {
    grid-template-columns: 1fr;
    padding: 28px 24px 0;
  }

  .item {
    padding: 18px 0 8px;
  }

  .item p {
    text-align: left;
  }

  .icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .icon,
  .icon i {
    font-size: 16px;
  }

  .item h3 {
    font-size: 16px;
  }

  .item p,
  .item ul li {
    font-size: 13.5px;
  }

  .consent {
    margin: 24px 24px 36px;
    padding: 18px 20px;
    flex-direction: column;
    text-align: center;
  }

  .consent-left {
    flex-direction: column;
    text-align: center;
  }

  .consent-img {
    width: 150px;
  }
}

/* ---------- Mobile Small (320px – 480px) ---------- */
@media (max-width: 480px) {
  .hero-inner {
    padding: 28px 18px;
  }

  .hero h1 {
    font-size: 22px;
    letter-spacing: 0;
  }

  .hero p {
    font-size: 13px;
    line-height: 1.6;
  }

  .hero-date {
    font-size: 13px;
  }

  .hero-img {
    width: 140px;
    max-width: 65%;
  }

  .grid {
    padding: 22px 18px 0;
  }

  .item {
    gap: 12px;
    padding: 14px 0 8px;
  }

  .icon {
    width: 44px;
    height: 44px;
  }

  .icon,
  .icon i {
    font-size: 14px;
  }

  .item h3 {
    font-size: 14px;
  }

  .item p,
  .item ul li {
    font-size: 12.5px;
  }

  .consent {
    margin: 20px 18px 30px;
    padding: 16px 18px;
    border-radius: 12px;
  }

  .consent h4 {
    font-size: 15px;
  }

  .consent p {
    font-size: 12.5px;
  }

  .consent-img {
    width: 120px;
  }
}