.col-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-overlay h1 {
  font-weight: bold;
  font-size: 3rem;
  font-family: 'Rubik Moonrocks', sans-serif;
  color: #06add7;
}

.page-text {
  padding: 60px 0;
  background-color: #fcfdef;
}

.page-text h3 {
  color: #06add7 !important;
  font-family: 'Rubik Moonrocks', sans-serif;
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 26px;
  position: relative;
}

.page-text h4 {
  color: #ff6b6b !important;
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.page-text p, .page-text li {
  color: #555;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  margin-bottom: 15px;
}

.page-text ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-text li {
  margin-bottom: 8px;
}

.page-text strong {
  color: #333;
}

.page-text a {
  color: #06add7;
  text-decoration: none;
  transition: color 0.3s;
}

.page-text a:hover {
  color: #ff6b6b;
  text-decoration: underline;
}

.policy-callout {
  background-color: rgba(6, 173, 215, 0.1);
  border-left: 4px solid #06add7;
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
}

.policy-callout p {
  margin-bottom: 0;
  font-weight: 500;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.policy-table th, .policy-table td {
  padding: 15px;
  text-align: left;
  border: 1px solid #e0e0e0;
}

.policy-table th {
  background-color: #06add7;
  color: white;
  font-weight: 600;
}

.policy-table tr:nth-child(odd) {
  background-color: white;
}

.policy-table tr:nth-child(even) {
  background-color: rgba(6, 173, 215, 0.05);
}

.policy-last-updated {
  font-style: italic;
  text-align: right;
  color: #888;
  margin-top: 40px;
  font-size: 14px;
}

.policy-contact-section {
  background-color: #ffd166;
  padding: 30px;
  border-radius: 15px;
  margin: 40px 0;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.policy-contact-section h4 {
  color: #333;
  margin-top: 0;
}

.policy-contact-button {
  display: inline-block;
  background-color: #ff6b6b !important;
  color: white !important;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 50px;
  margin: 15px 10px 0;
  transition: all 0.3s;
  text-decoration: none !important;
  transition: all .3s ease;
}

.policy-contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.policy-contact-button i {
  margin-right: 8px;
}

.policy-decoration {
  position: absolute;
  font-size: 60px;
  opacity: 0.8;
  color: #ffd166;
  z-index: 1;
}

.policy-decoration-1 {
  top: 10%;
  right: 10%;
  transform: rotate(15deg);
  color: #ff6b6b;
}

.policy-decoration-2 {
  top: 30%;
  left: 5%;
  transform: rotate(-10deg);
}

.policy-decoration-3 {
  bottom: 20%;
  right: 15%;
  transform: rotate(5deg);
  color: #06add7;
}

@media screen and (max-width: 768px) {
  .page-text {
    padding: 40px 0;
  }
  
  .page-text h3 {
    font-size: 22px;
  }
  
  .policy-decoration {
    font-size: 40px;
  }
  
  .policy-contact-button {
    display: block;
    margin: 15px auto;
    max-width: 240px;
  }
  
  .policy-table {
    font-size: 14px;
  }
  
  .policy-table th, .policy-table td {
    padding: 10px;
  }
}

@media screen and (max-width: 480px) {
  .policy-decoration {
    display: none;
  }
  
  .policy-callout {
    padding: 15px;
  }
  
  .policy-contact-section {
    padding: 20px 15px;
  }
  
  .policy-table {
    font-size: 12px;
  }
}

.page-text .container {
  max-width: 900px;
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
}

.page-text h3 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(6, 173, 215, 0.1);
  color: var(--primary-color);
}

.page-text h3:first-child {
  margin-top: 0;
}

.page-text p {
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.6;
}

.page-text a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: var(--transition);
}

.page-text a:hover {
  color: var(--secondary-color);
}

.page-text a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.page-text a:hover::after {
  background-color: var(--secondary-color);
}

.page-text ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.page-text li {
  margin-bottom: 0.8rem;
  color: #555;
  position: relative;
}

.page-text li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.policy-callout {
  background-color: rgba(6, 173, 215, 0.05);
  border-left: 4px solid var(--primary-color);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 1.5rem;
  margin: 2rem 0;
}

.policy-callout p:last-child {
  margin-bottom: 0;
}

.policy-contact-section {
  background-color: rgba(255, 209, 102, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 3rem 0 1rem;
  text-align: center;
}

.policy-contact-section h4 {
  font-family: "Rubik Moonrocks", sans-serif;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.policy-contact-section p {
  margin-bottom: 1.5rem;
}

.policy-contact-button {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 2rem;
  background-color: var(--primary-color);
  color: #fff !important;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.policy-contact-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.policy-contact-button i {
  margin-right: 0.5rem;
}

.policy-contact-button::after {
  display: none;
}

.policy-last-updated {
  margin-top: 3rem;
  font-style: italic;
  color: #888;
  text-align: right;
  font-size: 0.9rem;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.policy-table th, 
.policy-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.policy-table th {
  background-color: rgba(6, 173, 215, 0.05);
  color: var(--primary-color);
  font-weight: 600;
}

.policy-table tr:hover {
  background-color: rgba(6, 173, 215, 0.02);
}

@media (max-width: 767px) {
  .hero-overlay {
    padding: 4rem 0;
  }
  
  .page-text {
    padding: 3rem 0;
  }
  
  .page-text .container {
    padding: 2rem;
  }
  
  .policy-table {
    display: block;
    overflow-x: auto;
  }
  
  .policy-contact-section {
    padding: 1.5rem;
  }
}