html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* Fix potential image overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f1eee7;
  color: #00333a;
}

.header {
  background: white;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  max-height: 60px;
  display: block;
}
.hero-section {
  padding: 40px 20px;
}

.hero-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00333a;
}

.hero-text p {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 1.5rem;
  color: #333;
}

.launch-button {
  background-color: #b14f34;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 24px;
  font-size: 1rem;
  cursor: pointer;
}

.hero-images {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 10px 0;
  background-color: transparent;
}

.hero-images img {
  height: auto;
  max-height: 300px;
  border-radius: 20px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  background-color: transparent;
}


.hero-images img:hover {
  transform: scale(1.05);
}

.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.feature-box {
  background: white;
  border-radius: 12px;
  padding: 20px;
  width: 350px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.feature-box img {
  height: 30px;
  margin-bottom: 10px;
}

.feature-box h3 {
  margin: 10px 0;
  color: #00333a;
}

.feature-box p {
  color: #555; 
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px 0;
  background: #ffffff; /* white background */
  font-size: 1rem;
  border-top: 1px solid #e0e0e0;
}

.footer-link {
  color: #00333a;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.footer-icon {
  height: 20px;
  width: 20px;
}


