html {
  height: 100%;
  width: 100%;
}

img:not(.logo img) {
  border: 2px solid #8ecbde;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

img:not(.logo img):hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.benefits {
  padding: 25px;
  max-width: 800px;
  margin: 0 auto;
}

.benefit-item {
  font-size: 1.25rem;
  padding: 12px 0;
  display: flex;
  align-items: center;
  color: #666;
  gap: 12px;
}

.benefit-item i {
  font-size: 1.4rem;
  color: #2ecc71;
  flex-shrink: 0;
}

.text-success {
  color: #2ecc71 !important;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero h2 {
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.text-success {
  color: #28a745 !important;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--kcolor-accent-gold, #ffd700);
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-indicator i {
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.scroll-indicator:hover i {
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
}

.scroll-indicator:hover {
  transform: translateX(-50%) scale(1.1);
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-20px) translateX(-50%);
  }

  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

section:nth-child(odd) {
  background-color: #e9ecef;
}

section:nth-child(even) {
  background-color: #f8f9fa;
}

section {
  padding: 60px 0;
  overflow: hidden;
}

.latest-updates {
  background: #f8f9fa;
}

.latest-updates .section-header {
  text-align: center;
  padding-bottom: 40px;
}

.latest-updates .section-header h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.latest-updates .section-header p {
  color: #666;
}

.content {
  padding: 40px;
  background: #f6f9ff;
  border-left: 3px solid #4154f1;
  border-radius: 12px;
}