@charset "UTF-8";
/* Policies Page Styles */

/* Hero Section */
.policies-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #5a3560 100%);
  color: var(--white);
  padding: 140px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.policies-hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.policies-hero .highlight {
  color: var(--secondary);
}

.policies-hero p {
  font-size: clamp(1rem, 3vw, 1.3rem);
  margin-bottom: 0;
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Policy Cards Grid */
.policies-grid-section {
  padding: 80px 20px;
  background: var(--white-alt);
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.policy-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--secondary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.policy-card-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.policy-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.policy-card h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.policy-card p {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.policy-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.policy-card-link:hover {
  background: #2a1730;
}

.policy-card-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Contact Section */
.policies-contact {
  padding: 60px 20px;
  background: var(--white);
  text-align: center;
}

.policies-contact p {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.policies-contact a {
  color: var(--primary);
  text-decoration: underline;
}

.policies-contact a:hover {
  color: var(--secondary);
}

/* Responsive */
@media (max-width: 768px) {
  .policies-hero {
    padding: 120px 15px 60px;
  }

  .policies-grid-section {
    padding: 60px 15px;
  }

  .policies-grid {
    grid-template-columns: 1fr;
  }

  .policies-contact {
    padding: 40px 15px;
  }
}

@media (max-width: 480px) {
  .policies-hero h1 {
    font-size: 1.75rem;
  }

  .policy-card {
    padding: 2rem 1.5rem;
  }
}
