* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  padding: 10px 0;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  gap: 20px;
  flex-wrap: nowrap;
}

.logo-container {
  flex: 0 0 auto;
  margin-right: 20px;
}

.logo-container img {
  height: 280px;
  max-width: 100%;
}

.hero-content {
  flex: 1;
  min-width: 250px;
}

.hero-image {
  flex: 0 0 auto;
  text-align: right;
  width: 150px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Make the app preview image smaller */
.hero-image.small img {
  max-width: 100%;
  margin: 0 auto;
}

h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #c1a751; /* Gold color matching the logo */
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #555;
}

.description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.app-stores {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.store-button img {
  height: 50px;
  transition: transform 0.3s ease;
}

.store-button:hover img {
  transform: scale(1.05);
}

/* Features Section */
.features {
  padding: 30px 0;
  background-color: #fff;
  border-radius: 15px;
  margin: 15px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.features h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.2rem;
  color: #333;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background-color: #f9f9f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.feature h3 {
  margin-bottom: 15px;
  color: #c1a751;
}

/* Contact Section */
.contact {
  text-align: center;
  padding: 20px 0;
}

.contact h2 {
  margin-bottom: 20px;
  color: #333;
}

.contact-info {
  margin-top: 20px;
}

.contact-info a {
  color: #c1a751;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 10px 0;
  margin-top: 10px;
  color: #777;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .logo-container {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .hero-content {
    flex: 1 0 100%;
    order: 2;
  }

  .hero-image {
    width: auto;
    margin-top: 20px;
    order: 3;
    text-align: center;
  }

  .description {
    margin-left: auto;
    margin-right: auto;
  }

  .app-stores {
    justify-content: center;
  }

  h1 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .hero-image.small img {
    max-width: 150px;
  }
}
