/* Policy Pages Shared Styles */
.policy-content-wrapper {
  background: linear-gradient(180deg, rgba(108, 99, 255, 0.03) 0%, transparent 100%);
  padding: 80px 0;
}

.policy-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
  padding: 50px 60px;
  position: relative;
  overflow: hidden;
}

.policy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #6c63ff, #00d9ff, #6c63ff);
  background-size: 200% 100%;
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.policy-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(108, 99, 255, 0.1);
}

.policy-header h2 {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, #6c63ff, #00d9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.policy-header .last-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108, 99, 255, 0.1);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  color: #6c63ff;
  font-weight: 500;
}

/* Philosophy/Promise Box */
.philosophy-box, .promise-box {
  border-radius: 16px;
  padding: 35px 40px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(108, 99, 255, 0.3);
}

.philosophy-box {
  background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
}

.promise-box {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  box-shadow: 0 15px 40px rgba(76, 175, 80, 0.3);
}

.philosophy-box::before, .promise-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.philosophy-box .icon-circle, .promise-box .icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.philosophy-box .icon-circle i, .promise-box .icon-circle i {
  font-size: 28px;
  color: #fff;
}

.philosophy-box h4, .promise-box h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.philosophy-box p, .promise-box p {
  color: rgba(255,255,255,0.95);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* Section Styling */
.policy-section {
  margin-bottom: 45px;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.policy-section:last-of-type {
  border-bottom: none;
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #6c63ff, #5a52d5);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border-radius: 12px;
  margin-right: 15px;
  box-shadow: 0 8px 25px rgba(108, 99, 255, 0.3);
}

.section-title {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.section-title h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.subsection-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 30px 0 15px;
  padding-left: 20px;
  border-left: 3px solid #6c63ff;
}

.policy-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* List Styling */
.policy-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.policy-list li {
  position: relative;
  padding: 15px 20px 15px 55px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(0, 217, 255, 0.03));
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.policy-list li:hover {
  transform: translateX(5px);
  border-color: rgba(108, 99, 255, 0.2);
  box-shadow: 0 5px 20px rgba(108, 99, 255, 0.1);
}

.policy-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 20px;
  top: 17px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #6c63ff, #5a52d5);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.policy-list.warning-list li::before {
  content: '\f00d';
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
}

.policy-list.info-list li::before {
  content: '\f05a';
  background: linear-gradient(135deg, #2196F3, #1976D2);
}

/* Info Boxes */
.info-box {
  border-radius: 16px;
  padding: 25px 30px;
  margin: 25px 0;
  position: relative;
}

.info-box.blue {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(33, 150, 243, 0.05));
  border-left: 4px solid #2196F3;
}

.info-box.red {
  background: linear-gradient(135deg, rgba(244, 67, 54, 0.1), rgba(244, 67, 54, 0.05));
  border-left: 4px solid #F44336;
}

.info-box.orange {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(255, 152, 0, 0.05));
  border-left: 4px solid #FF9800;
}

.info-box.green {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
  border-left: 4px solid #4CAF50;
}

.box-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.box-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.info-box.blue .box-icon { background: linear-gradient(135deg, #2196F3, #1976D2); }
.info-box.red .box-icon { background: linear-gradient(135deg, #F44336, #D32F2F); }
.info-box.orange .box-icon { background: linear-gradient(135deg, #FF9800, #F57C00); }
.info-box.green .box-icon { background: linear-gradient(135deg, #4CAF50, #388E3C); }

.info-box h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.info-box.blue h5 { color: #1976D2; }
.info-box.red h5 { color: #D32F2F; }
.info-box.orange h5 { color: #F57C00; }
.info-box.green h5 { color: #388E3C; }

.info-box p {
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* CTA Section */
.policy-cta {
  background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
  border-radius: 20px;
  padding: 45px;
  text-align: center;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.policy-cta h4 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.policy-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-bottom: 25px;
}

.policy-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #6c63ff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.policy-cta .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.policy-cta .cta-btn i {
  transition: transform 0.3s ease;
}

.policy-cta .cta-btn:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .policy-card { padding: 30px 25px; }
  .policy-header h2 { font-size: 26px; }
  .philosophy-box, .promise-box { padding: 25px; }
  .policy-cta { padding: 30px 20px; }
  .section-title h3 { font-size: 20px; }
}
