@scope(.industriesandsectors){
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
  color: #333;
  line-height: 1.6;
  width: 100%;
  min-height: 100vh;
  padding: 40px 20px;
}

.industries-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0px;
}

.container {
  width: 100%;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: 3.75rem;
  font-weight: 300;
  color: #000000;
  margin-bottom: 24px;
  line-height: 1.25;
}

.section-description {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  font-style: italic;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.accordion-container {
  padding-right: 20px;
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion-item {
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

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

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  position: relative;
}

.accordion-header:hover {
  opacity: 0.8;
}


.accordion-title {
  font-size: 22px;
  font-weight: 400;
  color: #333;
  line-height: 1.4;
  font-family: 'neue-haas-grotesk-text';
  flex: 1;
}

.accordion-content {
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  max-height: 0;
}

.accordion-content.expanded {
  max-height: 200px;
  padding-bottom: 24px;
}

.accordion-body {
  position: relative;
  max-width: 450px ;
}

.accordion-item.active::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #007bff;
  z-index: 1;
}

.accordion-body p {
  line-height: 1.5;
    color: #717171;
  padding-left: 0;
}

.chevron-icon {
  transition: transform 0.2s ease;
  color: #666;
  flex-shrink: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.chevron-icon.rotated {
  transform: translateY(-50%) rotate(180deg);
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-image {
  width: 100%;
  height: 500px;
  border-radius: 8px;
  object-fit: cover;
  background-color: #999;
}

@media (max-width: 768px) {
  .industries-section {
    max-width: 768px;
  }

  .section-title {
    font-size: 36px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .accordion-container {
    padding-right: 0;
  }

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

  .accordion-title {
    font-size: 16px;
  }

  .accordion-body p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .section-description {
    font-size: 14px;
  }
}
}
