html
{
  overflow-x: hidden;
  overscroll-behavior: none;
}

body, html
{
  width: 100%;
  padding: 0;
  margin: 0;
}

body
{
  overflow-x: clip;
  overscroll-behavior: none;
}

main
{
  padding-top: 120px;
}

.site-info
{
  padding: 60px 40px;
  background: white;
}

.site-info .info-heading
{
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
  text-align: center;
  margin-bottom: 20px;
}

.site-info .info-description
{
  text-align: center;
  font-size: 1rem;
  color: #6F6E72;
  margin-top: 8px;
  margin-bottom: 70px;
  font-family: Arial;
  line-height: 2;
}


.info-buttons
{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.info-btn
{
  background: rgb(195, 28, 47);
  border: none;
  border-radius: 8px;
  padding: 14px 40px;
  cursor: pointer;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 240px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  font-size: large;
}

.info-btn:hover,
.info-btn.fade-in.visible:hover,
.info-btn.done:hover
{
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.info-buttons a:nth-child(2) .info-btn { transition-delay: 0.15s; }

.fade-in
{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: transform, opacity;
  overflow-anchor: none;
}

.fade-in.visible
{
  opacity: 1;
  transform: translateY(0);
}

.fade-in.done
{
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition-delay: 0s !important;
}

.fade-in-right
{
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: transform, opacity;
  overflow-anchor: none;
}

.fade-in-right.visible
{
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right.done
{
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition-delay: 0s !important;
}

.info-btn img
{
  border-radius: 50%;
}

.success-message {
  position: fixed;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  background: #e6f4ea;
  color: #2d6a4f;
  border: 1.5px solid #52b788;
  border-radius: 8px;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  text-align: center;
}


@media (max-width: 600px)
{
  .info-buttons
  {
    flex-direction: column;
    align-items: center;
  }

  .info-btn
  {
    width: 240px;
  }
}

@media (max-width: 768px)
{
  .stats-section
  {
    flex-direction: column;
    gap: 32px;
  }
}