/* Disclosures Hero */
.disclosures-hero {
  background: linear-gradient(rgba(29, 32, 36, 0.8), rgba(29, 32, 36, 0.8)),
    url("../../images/hero-bg11.jpg") center/cover no-repeat;
  height: 100vh;
  min-height: 500px;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
  margin-top: 80px;
}

.disclosures-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.disclosures-hero .lead {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Disclosures Content */
.disclosures-content {
  padding: 80px 0;
}

.disclosures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.disclosure-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.disclosure-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(57, 125, 241, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--accent-color);
  font-size: 28px;
}

.disclosure-card h2 {
  text-align: center;
  color: var(--secondary-color);
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.disclosure-item {
  margin-bottom: 25px;
}

.disclosure-item h3 {
  color: var(--accent-color);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.disclosure-item p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Detailed Disclosures */
.detailed-disclosures {
  margin-top: 60px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 15px auto 0;
}

/* Accordion */
/* Accordion Styles */
.accordion {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 40px;
}

.accordion-item {
  border-bottom: 1px solid #eaeaea;
  background-color: var(--white);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  padding: 20px 25px;
  background-color: var(--white);
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.accordion-header:hover {
  background-color: #f9f9f9;
}

.accordion-header.active {
  background-color: var(--light-color);
  color: var(--accent-color);
}

.accordion-header i {
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.accordion-header.active i {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #f9f9f9;
}

.accordion-content.active {
  padding: 25px;
}

.accordion-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

.accordion-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.accordion-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Additional Disclosure Sections */
.disclosure-section {
  margin-bottom: 50px;
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.disclosure-section h2 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.disclosure-section h3 {
  color: var(--secondary-color);
  margin: 25px 0 15px;
  font-size: 1.2rem;
}

.disclosure-notice {
  background-color: rgba(57, 125, 241, 0.1);
  border-left: 4px solid var(--accent-color);
  padding: 20px;
  margin: 30px 0;
  font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .accordion-header {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .accordion-content {
    padding: 0 20px;
  }

  .accordion-content.active {
    padding: 20px;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .disclosures-hero h1 {
    font-size: 2.5rem;
  }

  .disclosures-hero .lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .disclosures-grid {
    grid-template-columns: 1fr;
  }

  .disclosures-hero {
    height: 50vh;
    min-height: 400px;
  }

  .accordion-header {
    padding: 15px 20px;
  }

  .accordion-header span {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .disclosures-hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

.accordion-header.active i {
  transform: rotate(180deg);
}
