/* POLICY PAGE */
.policy-page {
  padding: 60px 80px;
  background-color: var(--white);
  opacity: 0;
  animation: fadeSlideUp 1.2s ease forwards;
}

/* HEADER */
.policy-header {
  text-align: center;
}

.policy-header h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 52px;
  color: var(--black);
  margin-top: -25px;
}

.policy-underline {
  width: 200px;
  height: 2px;
  background-color: var(--pink-bold);
  margin: 10px auto;
}

.policy-intro {
  font-size: 14px;
  color: var(--black);
  max-width: 500px;
  margin: 15px auto 0 auto;
  line-height: 1.8;
}

/* CONTENT */
.policy-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-top: 60px;
}

.policy-left {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* POLICY ITEMS */
.policy-item h3 {
  font-family: 'jost', serif;
  font-size: 18px;
  color: var(--black);
  margin-bottom: 8px;
}

.policy-item-underline {
  width: 200px;
  height: 2px;
  background-color: var(--pink-bold);
  margin-bottom: 10px;
}

.policy-item p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--black);
}

/* RIGHT SIDE */
.policy-right {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  min-height: 700px;
}

.policy-card-container {
  position: relative;
  width: 100%;
  height: 500px;
}

.policy-logo {
  width: 200px;
  margin-top: 300px;
  position: relative;
  z-index: 10;
  margin-left: 280px;
}

/* CTA */
.policy-cta {
  text-align: center;
  margin-top: 60px;
}

.policy-cta h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 48px;
  color: var(--black);
}

.policy-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .policy-page {
    padding: 30px 20px;
  }

  .policy-header h2 {
    font-size: 38px;
    margin-top: 0;
  }

  .policy-intro {
    font-size: 13px;
  }

  .policy-content {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }

  .policy-left {
    width: 100%;
  }

  .policy-right {
    display: none;
  }

  .policy-item h3 {
    font-size: 16px;
  }

  .policy-item p {
    font-size: 13px;
  }

  .policy-cta {
    margin-top: 40px;
  }

  .policy-cta h2 {
    font-size: 34px;
  }

  .policy-cta-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}