/* Shipping & Delivery Policy Styles */

/* Policy Content Styling */
.policy-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.policy-content h4 {
  font-size: 28px;
  color: #1B3764;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'Richela Kids', sans-serif;
}

.policy-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  font-family: 'Urbanist', sans-serif;
}

/* Policy Sections */
.policy-section {
  margin-bottom: 30px;
}

.policy-section h5 {
  font-size: 22px;
  color: #FF6B35;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: 'Urbanist', sans-serif;
}

/* Policy Lists */
.policy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.policy-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  font-family: 'Urbanist', sans-serif;
}

.policy-list li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Pro';
  position: absolute;
  left: 0;
  top: 2px;
  color: #87CEEB;
}

.policy-list li strong {
  color: #1B3764;
  font-weight: 600;
}

/* Contact Section */
.policy-contact {
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.1) 0%, rgba(255, 248, 214, 0.1) 100%);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #87CEEB;
  margin-top: 30px;
}

.policy-contact p {
  margin-bottom: 0;
}

.policy-contact a {
  color: #1B3764;
  font-weight: 600;
  transition: all 0.3s ease;
}

.policy-contact a:hover {
  color: #FF6B35;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .policy-content {
    padding: 25px;
  }
  
  .policy-content h4 {
    font-size: 24px;
  }
  
  .policy-section h5 {
    font-size: 20px;
  }
  
  .policy-list li {
    padding-left: 25px;
  }
}