.what-we-do-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 47px 60px;
  background: #e8e8e9;
  width: 100%;
}

.what-we-do-section .container {
  max-width: 1392px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-inline: 16px;
}

/* Heading Section */
.what-we-do-heading {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.title-containerwe {
  max-width: 800px;
}

.title-containerwe h4 {
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #000000;
}

.title-containerwe h2 {
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 120%;
  text-transform: uppercase;
  color: #000000;
}

.btn-learn-more {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 26px;
  gap: 10px;
  background: #ad2324;
  border-radius: 8px;
  text-decoration: none;
  color: #ffffff;
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  transition: all 0.3s ease;
}

.btn-learn-more:hover {
  background: #870708;
  color: #ffffff;
}

.arrow-right {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
}

.arrow-right:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;

  top: 50%;
  right: 6px;
  transform: translateY(-50%) rotate(45deg);
}

/* Content Section */
.what-we-do-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  width: 100%;
}

/* Tabs Container */
.tabs-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 498px;
}

.tab-btn {
  display: flex;
  text-align: start;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 44px;
  height: 62px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #000000;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: #ad2324;
  color: #ffffff;
}

.tab-btn.active .arrow-right:after,
.tab-btn.active .arrow-right:before {
  border-color: #ffffff;
  background: #ffffff;
}

.tab-btn:hover:not(.active) {
  background: #ad232325;
}

/* Accordion Container */
.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 698px;
}

.accordion-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  cursor: pointer;
}

.accordion-header h3 {
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-weight: 800;
  font-size: 25px;
  line-height: 120%;
  color: #000000;
  margin: 0;
}

.accordion-toggle {
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  position: relative;
  cursor: pointer;
}

.plus-icon,
.minus-icon {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.plus-icon:before,
.plus-icon:after,
.minus-icon:before {
  content: "";
  position: absolute;
  background: #000000;
}

.plus-icon:before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.plus-icon:after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.minus-icon:before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  will-change: max-height;
}

.accordion-item.active .accordion-content {
  max-height: fit-content;
}

.accordion-item:not(.active) .accordion-content {
  transition: max-height 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.content-wrapper {
  display: flex;
  padding: 0 32px 44px;
  gap: 46px;
  align-items: center;
}

.content-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 100% !important;
}

.content-text p {
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: #727377;
  margin: 0;
}

.btn-learn-more-small {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  gap: 10px;
  width: fit-content;
  background: #ad2324;
  border-radius: 8px;
  text-decoration: none;
  color: #ffffff;
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  transition: all 0.3s ease;
}

.btn-learn-more-small:hover {
  background: #870708;
  color: #ffffff;
}

.content-image {
  width: 180px;
  height: 136px;
  overflow: hidden;
  border-radius: 10px;
}

.content-image img {
  width: 100%;
  height: 100%;
}

.content-wrapper.column-layout {
  flex-direction: column;
}

.content-wrapper.column-layout .content-text,
.content-wrapper.column-layout .content-image {
  width: 100%;
}

.content-wrapper.column-layout .content-image {
  margin-top: 20px;
  height: 300px;
}
.content-wrapper.column-layout .content-image img {
  width: 100%;
}
/* Responsive Styles */
@media (max-width: 1200px) {
  .what-we-do-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .title-containerwe h2 {
    font-size: 42px;
  }

  .what-we-do-content {
    flex-direction: column;
  }

  .tabs-container,
  .accordion-container {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .what-we-do-section {
    padding: 40px 20px;
  }

  .title-containerwe h2 {
    font-size: 32px;
  }

  .accordion-header h3 {
    font-size: 24px;
  }

  .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .content-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  .title-containerwe h4 {
    font-size: 18px;
  }

  .title-containerwe h2 {
    font-size: 28px;
  }

  .btn-learn-more,
  .tab-btn {
    width: 100%;
    font-size: 18px;
  }

  .accordion-header {
    padding: 20px;
  }
}
.pillar-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.pillar-item {
  flex: 1;
  min-width: 250px;
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
}

.pillar-item h4 {
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.pillars-list {
  list-style-type: disc;
  padding-left: 20px;
}

.pillars-list li {
  margin-bottom: 8px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .pillar-container {
    flex-direction: column;
  }
}
