@charset "utf-8";
/* CSS Document */

.content-wrappers {
  line-height: 1.7;
  padding: 30px 15px 60px;
  margin: 0 auto;
  max-width: 1200px;
}

/* Scoped reset - SAFE */
.content-wrappers,
.content-wrappers * {
  box-sizing: border-box;
}
.content-wrappers {
  margin: 0;
}



/* Main cards */
.content-wrappers .company-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  margin-bottom: 40px;
  border-top: 5px solid #320e8c;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.content-wrappers .company-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Titles */
.content-wrappers .section_title,
.content-wrappers .company-card > h2 {
  color: #320e8c;
  font-size: 1.8rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}


/* Text */
.content-wrappers .section_description {
  font-size: 15.5px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 18px;
}

/* Sub-cards */
.content-wrappers .company-card-two {
  background: #f8f9ff;
  padding: 22px 24px;
  border-radius: 15px;
  margin: 22px 0;
  border-left: 5px solid #320e8c;
}
.content-wrappers .section2_title {
  font-size: 1.25rem;
  color: #320e8c;
  text-align: initial;
  font-weight: bold;
  margin-bottom: 12px;
}

/* Lists */
.content-wrappers .company-card ul {
  list-style: none;
  padding-left: 0;
}
.content-wrappers .company-card ul li {
  padding: 10px 0 10px 26px;
  position: relative;
}
.content-wrappers .company-card ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #400089;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {

  .content-wrappers .company-card { padding: 22px; }
  .content-wrappers .section_title,
  .content-wrappers .company-card > h2 { font-size: 1.5rem; }
}

/* Footer */
.content-wrappers .footer-note {
  background: #f8f9ff;
  padding: 22px 24px;
  border-radius: 15px;
  margin: 22px 0;
  border-left: 5px solid #5163b6;
  font-size: 5.25rem;
  color: #5163b6;
}




/* MOBILE H2 FIX */
@media (max-width: 768px) {

  .content-wrappers .section_title,
  .content-wrappers .company-card > h2 {

    /* Auto-adjust font size */
    font-size: clamp(1.15rem, 4.5vw, 1.45rem);

    /* Tight line spacing */
    line-height: 1.25;

    /* Allow clean wrapping */
    white-space: normal;

    /* Remove flex height stretching */
    align-items: flex-start;
  }

  /* Icon spacing fix */
  .content-wrappers .section_title::before,
  .content-wrappers .company-card > h2::before {
    margin-top: 2px;
  }
}





/* Show / Hide Toggle */
.content-wrappers .toggle-box {
  margin-top: 15px;
  text-align: justify;
}

/* Remove default arrow */
.content-wrappers .toggle-box summary {
  list-style: none;
  cursor: pointer;
}

/* Custom toggle button */
.content-wrappers .toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #320e8c;
  color: #fff;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

/* Icon */
.content-wrappers .toggle-btn::after {
  content: "\25BC";
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Rotate icon when open */
.content-wrappers .toggle-box[open] .toggle-btn::after {
  transform: rotate(180deg);
}

/* Toggle content animation */
.content-wrappers .toggle-content {
  margin-top: 15px;
  animation: fadeIn 0.3s ease;
}

/* Small fade effect */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}