.facts-container {
  /* max-width: 900px; */
  margin: 40px auto;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fact-image-container {
  flex: 0 0 400px;
  width: 400px;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border-right: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.fact-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  background: #eee;
  display: block;
  transition: transform 0.3s;
}

.fact-card:hover .fact-image {
  transform: scale(1.04) rotate(-1deg);
}

.fact-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  margin-bottom: 0;
  border: 1px solid #f3f3f3;
}

.fact-content-container {
  flex: 1 1 0%;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fcfcfc;
}

.fact-header {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a2233;
  margin-bottom: 12px;
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 8px;
  letter-spacing: 0.01em;
}

.fact-body {
  font-size: 1.12rem;
  color: #3a3a3a;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .facts-container {
    max-width: 99vw;
    padding: 10px 2vw;
  }
  .fact-content-container {
    padding: 22px 12px;
  }
  .fact-header {
    font-size: 1.1rem;
  }
}

@media (max-width: 800px) {
  .fact-card {
    flex-direction: column;
    align-items: center;
    border-radius: 18px;
  }
  .fact-image-container {
    width: 100vw;
    height: 220px;
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    justify-content: center;
    border-radius: 0;
    background: #f6f8fa;
    padding: 0;
  }
  .fact-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    margin: 0 auto 10px auto;
    display: block;
    background: #fff;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    border: none;
  }
  .fact-content-container {
    padding: 16px 8px;
    border-radius: 0 0 18px 18px;
  }
}

@media (max-width: 500px) {
  .fact-image-container {
    width: 100vw;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f6f8fa;
    padding: 0;
    border-radius: 0;
    margin: 0 auto 10px auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    border: none;
  }
  .fact-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    box-shadow: none;
    border: none;
    margin: 0;
    background: #fff;
    display: block;
  }
  .fact-content-container {
    padding: 10px 4px 18px 4px;
    border-radius: 0 0 12px 12px;
    background: #fcfcfc;
  }
  .fact-header {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  .fact-body {
    font-size: 0.95rem;
  }
}