/* methodology.html styles */

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #252a53;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-content {
  padding: 100px 0px 40px 0px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.container {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  gap: 2rem;
}

.methodology-content {
  width: 100%;
  flex-wrap: wrap;
  padding: 3rem;
  font-size: 0.75rem;
}

.page-title {
  position: relative;
  margin-bottom: 2.5rem;
  font-size: 1.6rem;
  color: #252a53;
  line-height: 1.3;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: -0.8rem;
  left: 0;
  width: 4rem;
  height: 3px;
  background: #ac5737;
  border-radius: 2px;
}

.content-section {
  margin-bottom: 2.5rem;
  line-height: 1.7;
  color: #252a53;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(172, 87, 55, 0.15);
}

.content-section:last-child {
  border-bottom: none;
}

.content-section p {
  margin: 0 0 1rem 0;
  font-weight: 400;
}

.content-section p strong {
  color: #ac5737;
  font-weight: 600;
}

.content-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #252a53;
  margin: 0 0 1.2rem 0;
  font-family: 'Lora', sans-serif;
  position: relative;
  padding-bottom: 0.5rem;
}

.content-section h3::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2rem;
  height: 2px;
  background: #ac5737;
  border-radius: 1px;
}



.bullet-point {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin: 0.8rem 0;
}

.bullet-point::before {
  content: '•';
  color: #ac5737;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.bullet-point span {
  font-size: 0.75rem;
}

@media (max-width: 1600px) {
  .main-content {
    padding: 4rem 1rem 1.5rem 1rem;
  }

  .methodology-content {
    padding: 2rem;
  }

  .methodology-content {
    font-size: 0.65rem;
  }

  .page-title {
    font-size: 1.4rem;
  }

}

@media (min-width: 2400px) {
  .methodology-content {
    font-size: 1rem;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .content-section h3::before {
    width: 2.5rem;
  }
}

@media (max-width: 1200px) {
  .container {
    flex-direction: column;
    gap: 1.5rem;
  }

}

@media (max-width: 768px) {
  .main-content {
    padding: 6rem 0.5rem 1rem 0.5rem;
  }

  .methodology-content {
    padding: 1.5rem;
  }


  .content-section h3::before {
    width: 1.5rem;
  }
}
