/* Section spacing fixes */
.about { padding: 15px 0 }
.facts { padding: 25px 0 !important; }
.services-section { padding: 25px 0 !important; }
.py-132 { padding: 25px 0 !important; }
.mt-150px { margin-top: 25px !important; }

/* List styling fixes */
.problem-list {
  list-style: disc !important;
  padding-left: 25px !important;
  margin: 15px 0 !important;
  line-height: 1.6 !important;
}

.problem-list h3 {
  text-align: left !important;
  margin: 0 0 15px 0 !important;
}

.problem-list h4 {
  text-align: left !important;
  margin: 0px 20px 15px 0 !important;
}

.problem-list li {
  margin: 8px 0 !important;
  padding-left: 5px !important;
}

/* Content spacing */
.about-top { margin-bottom: 0 !important; }
.single-text { margin: 8px 0 !important; }
.about-title { margin: 20px 0 15px 0 !important; text-align: left !important; }
.problem-list .about-title { text-align: left !important; }
.section-title { margin-bottom: 30px !important; }
.sub-title { margin-bottom: 15px !important; }

.highlight-text { font-weight: 700; font-size: 20px; margin: 20px 0; }
.text-center { text-align: center; }

/* Facts section - same styling as HOW IT WORKS section */
.facts .ss-list {
  padding-bottom: 15px;
  margin: 58px -10px 0;
  display: flex;
  gap: 20px !important;
  align-items: stretch;
}

.facts .ss-block {
  flex: 1 1 33.333%;
  max-width: 33.333%;
  min-height: 200px;
  padding: 45px 25px 30px 25px;
  border-radius: 62px;
  background: #f1f1f1;
  display: flex;
  color: #000;
  flex-direction: column;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
  box-sizing: border-box;
}

/* Override any conflicting hover effects from main.css */
.facts .ss-block * {
  transition: none !important;
}

/* Default state - first card black, others light */
.facts .ss-block:first-child {
  background: #000 !important;
  color: #fff !important;
}

.facts .ss-block:first-child .ss-title {
  color: #fff !important;
}

.facts .ss-block:first-child .card-description {
  color: #fff !important;
}

.facts .ss-block:first-child .card-list li {
  color: #fff !important;
}

/* When hovering over the container, first card becomes light by default */
.facts .ss-list:hover .ss-block:first-child {
  background: #f1f1f1 !important;
}

.facts .ss-list:hover .ss-block:first-child .ss-title {
  color: #000 !important;
}

.facts .ss-list:hover .ss-block:first-child .card-description {
  color: #666 !important;
}

.facts .ss-list:hover .ss-block:first-child .card-list li {
  color: #666 !important;
}

/* When hovering over first card specifically, it stays black */
.facts .ss-list:hover .ss-block:first-child:hover {
  background: #000 !important;
}

.facts .ss-list:hover .ss-block:first-child:hover .ss-title {
  color: #fff !important;
}

.facts .ss-list:hover .ss-block:first-child:hover .card-description {
  color: #fff !important;
}

.facts .ss-list:hover .ss-block:first-child:hover .card-list li {
  color: #fff !important;
}

/* Cards 2 and 3 - default light state */
.facts .ss-block:nth-child(2),
.facts .ss-block:nth-child(3) {
  background: #f1f1f1 !important;
}

.facts .ss-block:nth-child(2) .ss-title,
.facts .ss-block:nth-child(3) .ss-title {
  color: #000 !important;
}

.facts .ss-block:nth-child(2) .card-description,
.facts .ss-block:nth-child(3) .card-description {
  color: #666 !important;
}

.facts .ss-block:nth-child(2) .card-list li,
.facts .ss-block:nth-child(3) .card-list li {
  color: #666 !important;
}

/* Only card 2 changes when hovered - first card stays black */
.facts .ss-block:nth-child(2):hover {
  background: #000 !important;
}

.facts .ss-block:nth-child(2):hover .ss-title {
  color: #fff !important;
}

.facts .ss-block:nth-child(2):hover .card-description {
  color: #fff !important;
}

.facts .ss-block:nth-child(2):hover .card-list li {
  color: #fff !important;
}

/* Only card 3 changes when hovered - first card stays black */
.facts .ss-block:nth-child(3):hover {
  background: #000 !important;
}

.facts .ss-block:nth-child(3):hover .ss-title {
  color: #fff !important;
}

.facts .ss-block:nth-child(3):hover .card-description {
  color: #fff !important;
}

.facts .ss-block:nth-child(3):hover .card-list li {
  color: #fff !important;
}

.facts .card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.facts .ss-title {
  font-size: 28px;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 400;
}

.facts .card-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 0;
  line-height: 1.4;
  margin-top: auto;
  flex-shrink: 0;
}



/* How It Works Section - Stacked Card Animation */
.how-it-works-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.steps-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.step-card {
  position: sticky;
  top: 50px;
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 100px;
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 200px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center top;
}

.step-card:nth-child(1) { 
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
  z-index: 1;
}
.step-card:nth-child(2) { 
  background: linear-gradient(135deg, #e3f2fd 0%, #f1f8ff 100%);
  z-index: 2;
  top: 70px;
}
.step-card:nth-child(3) { 
  background: linear-gradient(135deg, #fff3e0 0%, #fff8f0 100%);
  z-index: 3;
  top: 90px;
}
.step-card:nth-child(4) { 
  background: linear-gradient(135deg, #fce4ec 0%, #fff0f3 100%);
  z-index: 4;
  top: 110px;
}

/* Animation states */
.step-card.card-stack {
  transform: scale(0.95) translateY(-15px);
  opacity: 0.8;
  filter: blur(0.5px);
}

.step-card.card-exit {
  transform: scale(0.9) translateY(-30px);
  opacity: 0.6;
  filter: blur(1px);
}

.step-number {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.step-content {
  flex: 1;
  text-align: left;
}

.step-indicator {
  display: inline-block;
  background: transparent;
  color: #000;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
}

.step-title {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.step-description {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
}

/* Hover effects */
.step-card:hover:not(.card-stack):not(.card-exit) {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.step-card:hover .step-number {
  background: #333;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .how-it-works-section {
    padding: 60px 0;
  }
  
  .steps-container {
    padding: 20px 15px;
  }
  
  .step-card {
    position: relative !important;
    top: auto !important;
    padding: 30px 25px;
    border-radius: 20px;
    flex-direction: column;
    text-align: center;
    gap: 30px;
    min-height: auto;
    margin-bottom: 30px;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
  
  .step-number {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
  
  .step-title {
    font-size: 24px;
  }
  
  .step-description {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .step-card {
    padding: 25px 20px;
    border-radius: 16px;
  }
  
  .step-number {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  
  .step-title {
    font-size: 20px;
  }
  
  .step-description {
    font-size: 14px;
  }
}
.card-list {
  list-style: disc !important;
  padding-left: 20px !important;
  margin: 15px 0 !important;
  line-height: 1.6 !important;
  flex-grow: 1;
}

.card-list li {
  margin: 8px 0 !important;
  padding-left: 5px !important;
  color: inherit;
  font-size: 16px;
}

/* Responsive styling for Facts section */
@media (max-width: 1024px) {
  .facts .ss-list {
    gap: 15px;
  }

  .facts .ss-block {
    padding: 35px 25px;
    min-height: 350px;
  }

  .facts .ss-title {
    font-size: 24px;
  }

  .facts .card-description {
    font-size: 15px;
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .facts .ss-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .facts .ss-block {
    flex: none;
    max-width: 90%;
    width: 90%;
    min-height: 300px;
    padding: 30px 25px;
  }

  .facts .ss-title {
    font-size: 20px;
  }

  .facts .card-description {
    font-size: 16px;
    margin-top: 40px;
    line-height: 27px;
  }
}

@media (max-width: 480px) {
  .facts .ss-block {
    max-width: 100%;
    width: 100%;
    padding: 25px 20px;
    border-radius: 20px;
    min-height: 280px;
  }

  .facts .ss-title {
    font-size: 18px;
  }

  .facts .card-description {
    font-size: 16px;
    margin-top: 30px;
    line-height: 27px;
  }

  .card-list li {
    font-size: 16px;
  }
}

.comparison-table { margin: 40px auto; border: 2px solid #ddd; border-radius: 8px; overflow: hidden; max-width: 800px; }
.comparison-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.comparison-cell { padding: 25px; border-bottom: 2px solid #ddd; text-align: center; }
.comparison-row:last-child .comparison-cell { border-bottom: none; }
.comparison-cell:first-child { border-right: 2px solid #ddd; }
.comparison-header { background: #f5f5f5; font-weight: 700; }
.industries-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.industries-list { display: flex; flex-direction: column; gap: 15px; }
.industry-item { padding: 20px 25px; background: #f9f9f9; border-radius: 8px; font-weight: 600; font-size: 16px; transition: all 0.3s; }
.industry-item:hover { background: #000; color: #fff; transform: translateX(10px); }
.industries-images { position: relative; height: 400px; }
.industry-slider { position: relative; width: 100%; height: 100%; }
.industry-slide { position: absolute; width: 100%; height: 100%; object-fit: cover; border-radius: 12px; opacity: 0; transition: opacity 1s; }
.industry-slide.active { opacity: 1; }

.governance-timeline {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100vw;
  margin: 80px 0;
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
  margin-left: calc(-50vw + 50%);
}

.timeline-line {
  position: absolute;
  top: 120px;
  left: 3%;
  right: 3%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    transparent,
    transparent 8px,
    #000 8px,
    #000 16px
  );
  z-index: 1;
}

.timeline-star {
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  position: absolute;
  z-index: 3;
  top: 100px;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.timeline-star:first-of-type {
  left: 1%;
}

.timeline-star:last-of-type {
  right: 1%;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 5;
  max-width: 250px;
}

.timeline-number {
  width: 80px;
  height: 80px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}

.timeline-content {
  width: 100%;
  max-width: 250px;
  text-align: center;
  margin-top: 0px;
}

.timeline-content h4 {
  margin: 0 0 35px 0;
  font-size: 20px;
  font-weight: 800;
  color: #000;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}

.timeline-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #495057;
  font-weight: 400;
  text-align: center;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Problem Timeline Layout - Black background with diamonds */
.problem-timeline {
  padding: 80px 0;
  background: #000;
  color: #fff;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.problem-timeline-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  gap: 60px;
}

.problem-timeline-line {
  position: absolute;
  top: 117px;
  left: 4%;
  right: 4%;
  height: 5px;
  background: repeating-linear-gradient(
    to right,
    transparent,
    transparent 8px,
    #666 8px,
    #666 16px
  );
  z-index: 1;
}

.problem-timeline-diamond {
  position: absolute;
  top: 112px;
  width: 14px;
  height: 14px;
  background: #ffa500;
  transform: rotate(45deg);
  z-index: 3;
}

.problem-timeline-diamond:first-child {
  left: 4%;
}

.problem-timeline-diamond:last-child {
  right: 4%;
}

.problem-timeline-item {
  flex: 0 1 280px;
  max-width: 280px;
  position: relative;
  z-index: 2;
  text-align: left;
}

.problem-timeline-item::after {
  content: '';
  position: absolute;
  top: 112px;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #ffa500;
  z-index: 3;
}

.problem-timeline-item:nth-child(2)::after {
  left: 15%;
}

.problem-timeline-item:nth-child(3)::after {
  left: 140%;
}

.problem-timeline-item:nth-child(4)::after {
  left: 140%;
}
.problem-timeline-item:nth-child(5)::after {
  left: 140%;
}
.problem-timeline-item:nth-child(6)::after {
  display: none;
}

.problem-timeline-day {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

.problem-timeline-phase {
  font-size: 21px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 70px;
  line-height: 1.2;
}

.problem-timeline-description {
  font-size: 16px;
  line-height: 1.5;
  color: #ccc;
  text-align: left;
  margin-top: 60px;
}

.advisors-grid { 
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}

.featured-advisor {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.featured-advisor .advisor-card {
  background: linear-gradient(135deg, #2c2c2c 0%, #000 100%);
  color: #fff;
  border-radius: 30px;
  padding: 80px 60px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.featured-advisor .advisor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.featured-advisor .advisor-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 40px;
  object-fit: cover;
  border: 6px solid rgba(255,255,255,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.featured-advisor .advisor-name {
  font-size: 42px;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 900;
  letter-spacing: -1px;
}

.featured-advisor .advisor-info {
  color: rgba(255,255,255,0.95);
  font-size: 20px;
  margin: 15px 0;
  font-weight: 500;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #fff;
  color: #000;
}

.other-advisors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.other-advisors .advisor-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: none;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.other-advisors .advisor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #000 0%, #333 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.other-advisors .advisor-card:hover::before {
  transform: scaleX(1);
}

.other-advisors .advisor-card:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.other-advisors .advisor-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 25px;
  object-fit: cover;
  border: 4px solid #f0f0f0;
  transition: all 0.3s ease;
}

.other-advisors .advisor-card:hover .advisor-img {
  border-color: #000;
}

.other-advisors .advisor-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
  letter-spacing: -0.5px;
}

.other-advisors .advisor-info {
  font-size: 15px;
  color: #555;
  margin: 8px 0;
  text-align: center;
  line-height: 1.4;
}

.other-advisors .social-icons {
  gap: 10px;
  margin-top: 20px;
}

.other-advisors .social-icon {
  width: 35px;
  height: 35px;
  background: #f5f5f5;
  color: #666;
  font-size: 16px;
}

.other-advisors .social-icon:hover {
  background: #000;
  color: #fff;
}

.hero-button {
  background-color: #d4d4d4;
  color: #000;
  transition: background-color 0.3s, color 0.3s;
}

.hero-button:hover {
  background-color: #000;
  color: #fff;
}

.mobile-comparison { display: none !important; }
.mobile-section { margin-bottom: 30px; }
.mobile-section h3 { margin-bottom: 15px; font-size: 20px; }

/* Layout fixes for about-wrap sections */
.about-wrap {
  display: flex !important;
  gap: 40px !important;
  align-items: center !important;
  margin-top: 30px !important;
}

.about-right {
  flex: 1 !important;
  padding-left: 0 !important;
}

.about-img {
  flex: 0 0 45% !important;
  max-width: 45% !important;
}

.about-image {
  width: 100% !important;
  height: auto !important;
  border-radius: 12px !important;
  object-fit: cover !important;
}

.about-top .container {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Specific spacing fixes for Headonsys Difference section */
.about .about-right .single-text {
  margin: 2px 0 !important;
  line-height: 1.4 !important;
}

.about .about-right .problem-list {
  margin: 0px 0 !important;
  padding-left: 20px !important;
}

.about .about-right .problem-list li {
  margin: 2px 0 !important;
}



#problem .about-wrap {
  align-items: flex-start !important;
  gap: 15px !important;
}

/* When image is on left side in problem section */
#problem .about-wrap .about-img:first-child + .about-right {
  max-width: 54% !important;
}

/* When image is on right side in problem section */
#problem .about-wrap .about-right:first-child + .about-img {
  flex: 0 0 46% !important;
  max-width: 46% !important;
}

#problem .about-right {
  text-align: left !important;
  max-width: 54% !important;
}

#problem .about-img {
  flex: 0 0 46% !important;
  max-width: 46% !important;
}

#problem .about-top {
  grid-row-gap: 14px !important;
  row-gap: 14px !important;
}

#problem .about-top .single-text {
  margin: 0 !important;
}

#problem .about-top .about-title {
  display: block !important;
  justify-content: flex-start !important;
  padding-top: 0 !important;
  margin: 0 !important;
}

#problem .problem-list {
  margin: 0 0 8px !important;
  margin-left: 0 !important;
  padding-left: 22px !important;
}

@media (max-width: 768px) {
  .comparison-table { display: block !important; max-width: 100%; margin: 20px auto; }
  .mobile-comparison { display: none !important; }

  .about-wrap {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .about-right {
    padding-left: 0 !important;
  }

  .about-img {
    max-width: 100% !important;
    flex: none !important;
  }

  #problem .about-right,
  #problem .about-img {
    max-width: 100% !important;
    flex: none !important;
  }

  .comparison-row { grid-template-columns: 1fr 1fr; }
  .comparison-cell { padding: 10px; font-size: 12px; }
  .comparison-cell:first-child { border-right: 2px solid #ddd; border-bottom: 2px solid #ddd; }
  .industries-layout { grid-template-columns: 1fr; gap: 20px; }
  .industries-images { height: 250px; }
  .advisors-grid { grid-template-columns: 1fr; gap: 20px; }
  .governance-item { min-width: 200px; padding: 20px 30px; }
  .governance-flow { margin: 20px 0; }
  .advisor-card { padding: 20px 15px; }
  .advisor-img { height: 150px; }
  .industry-item { padding: 15px 20px; font-size: 14px; }
}

@media (max-width: 480px) {
  .advisors-grid { grid-template-columns: 1fr; gap: 15px; }
  .advisor-card { padding: 15px 10px; }
  .advisor-img { height: 120px; }
  .advisor-name { font-size: 18px; }
  .advisor-info { font-size: 12px; }
  .governance-item { padding: 15px 20px; font-size: 14px; }
  .governance-arrow { font-size: 25px; }
  .industry-item { padding: 12px 15px; font-size: 13px; }
  .industries-images { height: 200px; }
  .comparison-cell { padding: 10px; font-size: 12px; }
  .comparison-table { margin: 15px 0; }
  .highlight-text { font-size: 18px; }
}
.team-section {
  padding: 60px 0;
  background: #fff;
}

.team-section .container {
  background: #F5F5F5;
  border-radius: 20px;
  padding: 40px 30px;
  margin: 0 auto;
}

.team-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.team-title {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.3;
}

.team-subtitle {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.featured-team {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  justify-content: center;
}

.featured-member {
  text-align: left;
  position: relative;
}

.featured-img {
  width: 500px;
  height: 400px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 16px;
  border: none;
  box-shadow: none;
}

.featured-name {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.featured-role {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.linkedin-icon {
  display: none !important;
}

.team-grid-section {
  margin-top: 40px;
}

.team-grid-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  text-align: left;
  background: #fff;
  padding: 0;
  border-radius: 16px;
  box-shadow: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.team-member:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.team-img {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 16px;
  border: none;
  background: #fff;
  padding: 8px;
  box-sizing: border-box;
}

.team-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
  line-height: 1.2;
  padding: 0 16px;
}

.team-role {
  font-size: 14px;
  color: #666;
  margin: 0;
  padding: 0 16px 16px;
}

@media (max-width: 768px) {
  .featured-team {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .team-section .container {
    padding: 30px 20px;
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .team-section .container {
    padding: 25px 15px;
    border-radius: 12px;
  }
}
.team-member {
  position: relative;
}

.team-linkedin-icon {
  display: none !important;
}
.featured-location {
  font-size: 16px;
  color: #666;
  margin: 4px 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-location::before {
  content: '';
  width: 14px;
  height: 18px;
  background: #666;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
}

.team-info {
  font-size: 16px;
  color: #666;
  margin: 4px 0;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-info::before {
  content: '';
  width: 14px;
  height: 18px;
  background: #666;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
}

/* Force What You Gain section to be single column on mobile */
@media (max-width: 768px) {
  /* Most aggressive approach - target all Bootstrap columns on mobile */
  .col-lg-4,
  .col-md-4,
  .col-sm-12,
  .col-12,
  [class*="col-lg-"],
  [class*="col-md-"],
  [class*="col-sm-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    margin-bottom: 20px !important;
  }
  
  .row {
    flex-direction: column !important;
  }
  
  /* Target any card-like elements */
  .card,
  [class*="card"],
  .bg-light,
  .rounded {
    width: 100% !important;
    margin-bottom: 15px !important;
    display: block !important;
  }
}
/* Specific targeting for What You Gain section */
@media (max-width: 768px) {
  .facts-wrap {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }
  
  .fact-block {
    width: 100% !important;
    margin-bottom: 20px !important;
    flex: none !important;
  }
}

@media (max-width: 480px) {
  .facts-wrap {
    gap: 15px !important;
  }
  
  .fact-block {
    margin-bottom: 15px !important;
    padding: 15px !important;
  }
  
  .fact-block h3 {
    font-size: 18px !important;
  }
  
  .fact-block p {
    font-size: 14px !important;
  }
  
  .fact-block ul li {
    font-size: 13px !important;
  }
}
/* Problem Timeline / Governance Model Responsive Styles */
@media (max-width: 992px) {
  .problem-timeline-container {
    flex-direction: column !important;
    gap: 40px !important;
    padding: 0 20px !important;
    align-items: center !important;
  }
  
  .problem-timeline-line {
    display: none !important;
  }
  
  .problem-timeline-diamond {
    display: none !important;
  }
  
  .problem-timeline-item::after {
    display: none !important;
  }
  
  .problem-timeline-item {
    text-align: center !important;
    max-width: 100% !important;
    flex: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 768px) {
  .problem-timeline {
    padding: 40px 0 !important;
  }
  
  .problem-timeline-container {
    padding: 0 15px !important;
    gap: 30px !important;
  }
  
  .problem-timeline-item {
    max-width: 350px !important;
    margin: 0 auto !important;
    padding: 20px !important;
  }
  
  .problem-timeline-day {
    font-size: 14px !important;
    margin-bottom: 10px !important;
    text-align: center !important;
  }
  
  .problem-timeline-phase {
    font-size: 20px !important;
    margin-bottom: 15px !important;
    text-align: center !important;
  }
  
  .problem-timeline-description {
    font-size: 14px !important;
    margin-top: 15px !important;
    text-align: center !important;
    line-height: 1.5 !important;
  }
}

@media (max-width: 480px) {
  .problem-timeline {
    padding: 30px 0 !important;
  }
  
  .problem-timeline-container {
    padding: 0 10px !important;
    gap: 25px !important;
  }
  
  .problem-timeline-item {
    max-width: 300px !important;
    padding: 15px !important;
  }
  
  .problem-timeline-day {
    font-size: 12px !important;
  }
  
  .problem-timeline-phase {
    font-size: 18px !important;
    margin-bottom: 10px !important;
  }
  
  .problem-timeline-description {
    font-size: 13px !important;
    margin-top: 10px !important;
  }
}
/* The Real Problem Section Responsive Styles */
@media (max-width: 992px) {
  #problem .about-wrap {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  #problem .about-img {
    flex: none !important;
    max-width: 100% !important;
    order: 1 !important;
  }
  
  #problem .about-right {
    flex: none !important;
    order: 2 !important;
  }
  
  #problem .about-top {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }
  
  #problem .content-left,
  #problem .content-right {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  #problem {
    padding: 40px 0 !important;
  }
  
  #problem .section-title {
    margin-bottom: 30px !important;
  }
  
  #problem .about-title {
    font-size: 24px !important;
    margin-bottom: 20px !important;
    text-align: left !important;
  }
  
  #problem .single-text {
    font-size: 16px !important;
    margin-bottom: 15px !important;
  }
  
  #problem .problem-list {
    margin: 15px 0 !important;
    padding-left: 20px !important;
  }
  
  #problem .problem-list li {
    font-size: 14px !important;
    margin-bottom: 8px !important;
  }
  
  #problem .about-image {
    border-radius: 8px !important;
  }
  
  /* Style both h3 elements consistently on mobile */
  #problem h3[style*="text-align: center"],
  #problem .about-title {
    font-size: 22px !important;
    
    padding: 0 15px !important;
    margin: 20px 0 !important;
    text-align: left !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 480px) {
  #problem {
    padding: 30px 0 !important;
  }
  
  #problem .about-title,
  #problem h3[style*="text-align: center"] {
    font-size: 24px !important;
   
    line-height: 1.4 !important;
    margin: 15px 0 !important;
    text-align: left !important;
  }
  
  #problem .single-text {
    font-size: 14px !important;
  }
  
  #problem .problem-list li {
    font-size: 13px !important;
  }
  
  #problem .about-wrap {
    gap: 20px !important;
  }
}
/* The Real Problem Section - Content Left, Image Right */
@media (min-width: 993px) {
  #problem .about-wrap.problem-reverse {
    flex-direction: row !important;
    align-items: center !important;
  }
  
  #problem .about-wrap.problem-reverse .about-right {
    flex: 1 !important;
    order: 1 !important;
    margin-right: 20px !important;
    margin-left: 0 !important;
  }
  
  #problem .about-wrap.problem-reverse .about-img {
    flex: 0 0 45% !important;
    max-width: 45% !important;
    order: 2 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  #problem .about-wrap.problem-reverse .about-top {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    align-items: start !important;
    width: 100% !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
  }
}

/* Keep mobile layout as is (image on top, content below) */
@media (max-width: 992px) {
  #problem .about-wrap.problem-reverse {
    flex-direction: column !important;
    gap: 30px !important;
    align-items: center !important;
  }
  
  #problem .about-wrap.problem-reverse .about-img {
    flex: none !important;
    max-width: 60% !important;
    order: 1 !important;
    margin: 0 auto !important;
  }
  
  #problem .about-wrap.problem-reverse .about-right {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    order: 2 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  #problem .about-wrap.problem-reverse .about-top {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  #problem .about-wrap.problem-reverse .content-left,
  #problem .about-wrap.problem-reverse .content-right {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}
/* Fix content sections styling in problem section */
@media (min-width: 993px) {
  #problem .about-wrap.problem-reverse .content-left,
  #problem .about-wrap.problem-reverse .content-right {
    width: 100% !important;
    background: transparent !important;
    padding: 0 !important;
    margin-bottom: 25px !important;
    margin-left: 270px;
    display: block !important;
  }
  
  #problem .about-wrap.problem-reverse .content-left .single-text,
  #problem .about-wrap.problem-reverse .content-right .single-text {
    margin-bottom: 10px !important;
  }
  
  #problem .about-wrap.problem-reverse .content-left .problem-list,
  #problem .about-wrap.problem-reverse .content-right .problem-list {
    margin-top: 5px !important;
    margin-bottom: 0 !important;
  }
}
/* Mobile image sizing for The Real Problem section */
@media (max-width: 768px) {
  #problem .about-wrap.problem-reverse .about-img {
    max-width: 90% !important;
    width: 90% !important;
    margin: 0 auto 30px auto !important;
  }
  
  #problem .about-wrap.problem-reverse .about-image {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
  }
}

@media (max-width: 480px) {
  #problem .about-wrap.problem-reverse .about-img {
    max-width: 95% !important;
    width: 95% !important;
  }
  
  #problem .about-wrap.problem-reverse .about-image {
    height: 220px !important;
  }
}
/* Mobile section spacing reductions */
@media (max-width: 768px) {
  .about { 
    padding: 10px 0 !important; 
  }
  
  .facts { 
    padding: 15px 0 !important; 
  }
  
  .services-section { 
    padding: 15px 0 !important; 
  }
  
  .py-132 { 
    padding: 15px 0 !important; 
  }
  
  .mt-150px { 
    margin-top: 15px !important; 
  }
  
  .section-title {
    margin-bottom: 15px !important;
  }
  
  .about-wrap {
    margin-top: 15px !important;
  }
}

@media (max-width: 480px) {
  .about { 
    padding: 8px 0 !important; 
  }
  
  .facts { 
    padding: 12px 0 !important; 
  }
  
  .services-section { 
    padding: 12px 0 !important; 
  }
  
  .py-132 { 
    padding: 12px 0 !important; 
  }
  
  .mt-150px { 
    margin-top: 12px !important; 
  }
}
/* Move image slightly to the left in The Real Problem section */
@media (min-width: 993px) {
  #problem .about-wrap.problem-reverse .about-img {
    margin-right: 100px !important;
  }
}
/* Better mobile single-column styling for The Real Problem section */
@media (max-width: 992px) {
  #problem .about-wrap.problem-reverse .content-left,
  #problem .about-wrap.problem-reverse .content-right {
    padding: 0 !important;
    background: transparent !important;
    margin: 0 0 20px 0 !important;
    width: 100% !important;
  }
  
  #problem .about-wrap.problem-reverse .content-left .single-text,
  #problem .about-wrap.problem-reverse .content-right .single-text {
    font-size: 16px !important;
    margin-bottom: 12px !important;
    line-height: 1.5 !important;
    font-weight: 500 !important;
  }
  
  #problem .about-wrap.problem-reverse .content-left .problem-list,
  #problem .about-wrap.problem-reverse .content-right .problem-list {
    margin: 10px 0 0 0 !important;
    padding-left: 20px !important;
  }
  
  #problem .about-wrap.problem-reverse .content-left .problem-list li,
  #problem .about-wrap.problem-reverse .content-right .problem-list li {
    font-size: 15px !important;
    margin-bottom: 8px !important;
    line-height: 1.4 !important;
  }
}

@media (max-width: 480px) {
  #problem .about-wrap.problem-reverse .about-top {
    gap: 15px !important;
  }
  
  #problem .about-wrap.problem-reverse .content-left,
  #problem .about-wrap.problem-reverse .content-right {
    margin: 0 0 15px 0 !important;
  }
  
  #problem .about-wrap.problem-reverse .content-left .single-text,
  #problem .about-wrap.problem-reverse .content-right .single-text {
    font-size: 14px !important;
  }
  
  #problem .about-wrap.problem-reverse .content-left .problem-list li,
  #problem .about-wrap.problem-reverse .content-right .problem-list li {
    font-size: 13px !important;
  }
}
/* Fix mobile full width for The Real Problem section */
@media (max-width: 992px) {
  #problem .container,
  #problem .w-container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin: 0 !important;
  }
  
  #problem .about-wrap.problem-reverse {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  #problem .about-wrap.problem-reverse .about-right {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  #problem .about-wrap.problem-reverse .about-top {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  #problem .container,
  #problem .w-container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  
  #problem .about-wrap.problem-reverse .about-top {
    gap: 15px !important;
  }
}