.findings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 40px 0;
  padding: 0 20px;
}

.finding-card {
  background-color: rgba(0, 212, 255, 0.05);
  border: 2px solid #00d4ff;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
}

.finding-card:hover {
  background-color: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 20px #00d4ff, 0 0 40px rgba(0, 212, 255, 0.3);
  transform: translateY(-5px);
}

.finding-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #66ffff;
}

.finding-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.conclusion {
  background-color: rgba(102, 255, 255, 0.05);
  border: 2px solid #66ffff;
  border-radius: 8px;
  padding: 30px;
  margin: 40px auto;
  max-width: 600px;
  text-align: center;
}

.conclusion h3 {
  margin-top: 0;
  color: #66ffff;
  font-size: 1.5rem;
}

.conclusion p {
  margin: 10px 0;
  font-size: 1rem;
  line-height: 1.6;
}

.conclusion strong {
  color: #00d4ff;
  font-weight: 700;
}

.extra-section {
  background-color: rgba(102, 255, 255, 0.03);
  border-left: 4px solid #66ffff;
  padding: 30px;
  margin: 40px auto;
  max-width: 800px;
  border-radius: 4px;
}

.extra-section h3 {
  margin-top: 0;
  color: #66ffff;
  font-size: 1.3rem;
}

.extra-section p {
  margin: 15px 0;
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
}

.extra-section strong {
  color: #00d4ff;
  font-weight: 700;
}

.testimonials {
  margin: 50px 0;
  padding: 0 20px;
}

.testimonials h3 {
  text-align: center;
  color: #66ffff;
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.testimonial-card {
  background-color: rgba(0, 212, 255, 0.05);
  border-left: 4px solid #00d4ff;
  padding: 20px;
  margin: 20px auto;
  max-width: 700px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background-color: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
  transform: translateX(5px);
}

.testimonial-card p {
  margin: 10px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.testimonial-card p:first-child {
  font-style: italic;
  color: #66ffff;
}

.testimonial-card p:last-child {
  text-align: right;
  color: #00d4ff;
  font-weight: bold;
}
