main {
    padding: 160px 0 30px;
}

/* Policy Section Styles */
.policy-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.policy-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: rgb(255, 98, 0);
}

.policy-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.policy-item {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.policy-item:hover {
  transform: translateY(-10px);
}

.policy-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: rgb(225, 0, 0);
}

.policy-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
