.content-text h2{
  padding-top: 0;
}
.content-text {
  align-items: center;
}


.content-text a {
  display: inline-block;

  color: var(--primary-red);
  border: 1px solid var(--primary-red);
  background: #fff;
  padding: 0.7rem 2.9rem;
  font-size: 1.2rem;

  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.content-text a:hover {
  background: var(--primary-red);
  color: white;
  transform: scale(1.1);
  box-shadow: none;
}

.policy-section {
  background-color: #f7d15185;
  padding: 7.5vw;
}
.policy-container {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.policy-header {
  flex: 1;
}
.policy-header h2 {
  font-size: max(2em, 3.6vw);
  font-weight: 400;
}
.policy-details {
  flex: 2;
}
.policy-details li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8em 0;
  border-bottom: 1px solid rgb(157, 125, 136);
}
.policy-details li span {
  font-size: 1.6em;
}
.policy-details li a {
  background: var(--primary-red);
  border: 1px solid var(--primary-red);
  color: white;
  padding: 0.7rem 2.9rem;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.policy-details li a:hover {
  background: transparent;
  border: 1px solid var(--primary-red);
  color: var(--primary-red);
  padding: 0.7rem 3.1rem;
}

@media screen and (max-width:768px) {
    .content-text a {
        margin-top: 2em;
    }
    .policy-container {
        display: block;
    }
    .policy-header br {
        display: none;
    }
    .policy-details li span {
  font-size: 1.2rem;
}
}
@media screen and (max-width:430px) {
    .policy-details li a {
        padding: 0.3rem 0.7rem;
        border-radius: 15px;
        font-size: 0.9rem
    }
}