/* Compliance Pages Styles */

/* Compliance Overview */
.compliance-overview {
  margin-bottom: 60px;
}

.compliance-overview p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Certificate Display */
.certificate-display {
  text-align: center;
  margin: 40px 0;
}

.certificate-display img {
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Compliance Features */
.compliance-features .feature-icon {
  font-size: 2.5rem;
  color: #303163;
  margin-bottom: 15px;
  text-align: center;
}

/* Document Section */
.document-section {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  margin: 40px 0;
}

.document-section h3 {
  margin-top: 0;
  color: #303163;
  margin-bottom: 20px;
}

.document-section p {
  margin-bottom: 20px;
}

.document-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background-color: #f1f1f1;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.2s ease;
}

.document-link i {
  margin-right: 10px;
  color: #DA0032;
}

.document-link:hover {
  background-color: #e9ecef;
  transform: translateY(-2px);
}

/* Compliance Process */
.compliance-process .process-step {
  display: flex;
  margin-bottom: 30px;
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #DA0032;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  margin-right: 20px;
  flex-shrink: 0;
}

.process-details h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

/* FAQ Section */
.compliance-faq .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 15px 20px;
  background-color: #f8f9fa;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 15px 20px;
  max-height: 500px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Section Grid Layout */
.section-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.grid-card {
  flex: 1 1 300px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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