/* Policy Pages Styles */

/* Policy Content */
.policy-content {
  padding: 3rem 0 5rem;
  background-color: var(--light-color);
}

.policy-section {
  margin-bottom: 3rem;
}

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

.policy-section h2 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.policy-section h3 {
  color: var(--secondary-color);
  margin: 1.5rem 0 1rem;
}

.policy-section p, .policy-section ul, .policy-section ol {
  margin-bottom: 1rem;
}

.policy-section ul li, .policy-section ol li {
  margin-bottom: 0.5rem;
}

/* Cookie Table */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.cookie-table th, .cookie-table td {
  border: 1px solid var(--border-color);
  padding: 0.75rem;
  text-align: left;
}

.cookie-table th {
  background-color: var(--gray-color);
  font-weight: 600;
}

.cookie-table tr:nth-child(even) {
  background-color: var(--gray-color);
}

/* Support Resources */
.support-resources {
  padding: 5rem 0;
  background-color: var(--gray-color);
  text-align: center;
}

.support-resources h2 {
  margin-bottom: 1.5rem;
}

.support-resources > p {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-card {
  background-color: var(--light-color);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.resource-card p {
  margin-bottom: 0.5rem;
}

.resource-card p:last-child {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-table {
    font-size: 0.9rem;
  }
  
  .cookie-table th, .cookie-table td {
    padding: 0.5rem;
  }
}