:root {
  color-scheme: light;
  color: #111;
  background: #ffffff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
}

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 250px;
  height: auto;
  object-fit: contain;
}

.logo2 {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.site-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.top-bar {
  width: 100%;
  height: 8px;
  background: #75b83f;
  border-radius: 999px;
  margin-bottom: 28px;
}

main {
  display: grid;
  gap: 32px;
}

.link-section {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-end;
}

.image-link {
  display: inline-flex;
  text-decoration: none;
}

.image-link:hover {
  opacity: 0.95;
}

.link-image {
  display: block;
  height: 72px;
  width: auto;
  max-width: 220px;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .brand-row {
    justify-content: center;
  }

  .link-section {
    justify-content: center;
  }
}

.carousel-section {
  position: relative;
}

.carousel {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #ececec;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
}

.carousel-track {
  display: flex;
  transition: transform 0.7s ease;
}

.carousel-item {
  width: 100%;
  min-width: 100%;
  display: block;
  height: auto;
}

.bottom-bar {
  width: 100%;
  height: 8px;
  background: #3c4368;
  border-radius: 999px;
  margin: 0 auto 32px;
}

.site-footer {
  padding: 24px 0 12px;
  text-align: center;
}

.footer-title {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
}

.footer-text {
  margin: 0;
  color: #555;
  line-height: 1.75;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 700px) {
  .page-shell {
    padding: 18px;
  }

  .link-section {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .link-image {
    height: 60px; /* Slightly smaller for mobile */
  }

  .action-button {
    width: 100%;
  }
}
