body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: #451e17;
  background-color: #F5F1E6;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.header {
  background-color: #F5F1E6;
  position: fixed;
  top: 44px;
  width: 100%;
  z-index: 30;
}
.announcement-bar {
  background: #B77339;
  color: #F2EEE3;
  text-align: center;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 30;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto; /* This pushes the nav links to the right */
}
.nav-links a {
  color: #451e17;
  text-decoration: none;
  font-size: 16px;
}
.hero {
  padding-top: 150px;
  min-height: calc(100vh - 116px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: calc(100vh - 200px);
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.cta-button {
  background-color: #451e17;
  color: #F5F1E6;
  padding: 8px 16px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 500;
}
.dashboard {
  background-color: #441d16;
  color: #f2eee3;
  padding: 120px 0;
}
.dashboard-container {
  display: flex;
  justify-content: space-between;
  gap: 64px;
}
.dashboard-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dashboard-stats {
  width: 44%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.stat-card {
  background-color: transparent;
  border: 1px solid rgba(242, 238, 227, 0.2);
  padding: 32px;
  border-radius: 12px;
}
.stat-row {
  display: flex;
  gap: 32px;
}
.how-it-works {
  background-color: #f5f1e6;
  padding: 100px 0;
}
.how-it-works-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
.title-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.features {
  padding: 100px 0;
  background: url('/_next/static/media/whyChakraBg.257faf06.svg') top;
}
.features-list {
  display: flex;
  gap: 32px;
}
.feature-card {
  background-color: #fff;
  padding: 48px;
  border-radius: 12px;
  border: 1px solid rgba(54, 53, 30, 0.1);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.feature-card img {
  width: 100px;
  height: 100px;
}
.feature-card h3 {
  font-size: 24px;
  margin: 0;
}
.integrate {
  padding: 100px 0;
}
.integrate-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
.integrate-cards {
  display: flex;
  gap: 32px;
}
.integrate-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
}
.integrate-card-body {
  background-color: #fcebde;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid rgba(182, 114, 56, 0.5);
  flex: 1;
}
.integrate-card:nth-child(2) .integrate-card-body {
  background-color: #FFF6DB;
  color: #B96A1E;
}
.integrate-card-footer {
  background-color: #fcebde;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.integrate-card:nth-child(2) .integrate-card-footer {
  background-color: #FFF6DB;
}
.footer {
  background-color: #451E17;
  color: #FCEBDE;
  padding: 120px 0;
}
.footer-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 24px;
}
.footer-nav a {
  color: #FCEBDE;
  text-decoration: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.social-links {
  display: flex;
  gap: 24px;
}

/* Typography styles */
h1 {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
}
h2 {
  font-size: 46px;
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
}
h3 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
}
p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}
.italic {
  font-style: italic;
}
.text-highlight {
  color: #b67238;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .dashboard-container {
    flex-direction: column;
  }
  .dashboard-stats {
    width: 100%;
  }
  .features-list {
    flex-direction: column;
  }
  .integrate-cards {
    flex-direction: column;
  }
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .stat-row {
    flex-direction: column;
  }
  .hero-content {
    flex-direction: column;
    gap: 48px;
  }
  .footer-top {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    gap: 24px;
    align-items: flex-start;
  }
}

/* Add these new classes */
.logo-image {
  width: 200px;
}

.hero-image-placeholder {
  width: 400px;
  height: 300px;
}

.powered-by {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 68px;
}

.stat-title {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
}

.stat-subtitle {
  font-size: 14px;
  opacity: 0.7;
}

.feature-icon {
  fill: #b67238;
  width: 100px;
  height: 100px;
}

.ticker-container {
  background-color: #451e17;
  padding: 48px 0;
  overflow: hidden;
}

.ticker-scroll {
  display: flex;
  gap: 24px;
  animation: scroll 20s linear infinite;
}

.ticker-item {
  color: #fcebde;
  border: 1px solid #fcebde;
  padding: 8px 16px;
  border-radius: 24px;
}

.footer-logo {
  width: 150px;
  filter: brightness(0) invert(1);
}