/* Base */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #f6f9fc;
  color: #232d41;
  line-height: 1.6;
}

h1, h2, h3 {
  margin: 0 0 0.5rem 0;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: #19242f;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1290px;
  margin: 0 auto;
  padding: 1rem 0;
}

/* Hero */
.hero {
  text-align: center;
  padding: 6rem 1rem;
  background: linear-gradient(106deg, #1f8efa 0, #04c884 100%);
  color: white;
}

.logo-container {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.logo-svg {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.logo-container img {
  max-width: 100%;
  height: auto;
  /* Enhance the logo to complement the theme */
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #f8f9fa;
}

.buttons a {
  margin: 0 0.5rem;
  text-decoration: none;
  font-weight: 600;
}

/* Buttons */
.btn-primary {
  background: #04c884;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #19242f;
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #19242f;
}

.btn-product {
  background: #1f8efa;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-product:hover {
  background: #04c884;
  color: #ffffff;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.about {
  background: #ffffff;
}

.features {
  background: #f6f9fc;
}

.products {
  background: #ffffff;
}

.contact {
  background: #f6f9fc;
}

/* Products Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.product-card {
  background: #ffffff;
  border: 1px solid #EDF2F7;
  border-radius: 30px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(106deg, #1f8efa 0, #04c884 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.product-icon .material-icons {
  font-size: 30px;
  color: #ffffff;
}

.product-card:hover {
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.07);
}

.product-card h3 {
  color: #19242f;
  font-size: 1.5rem;
  margin-top: 0;
}

.product-card p {
  color: #3f4a69;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* App Store Badge */
.app-store-buttons {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.app-store-badge {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.app-store-badge:hover {
  transform: scale(1.05);
}

/* Features */
.features .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #EDF2F7;
  border-radius: 6px;
  padding: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #1f8efa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon .material-icons {
  font-size: 24px;
  color: #ffffff;
}

.feature-card h3 {
  color: #19242f;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #3f4a69;
  font-size: 1rem;
}

/* Contact */
.contact-form {
  display: grid;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
}

/* Footer */
.footer {
  text-align: center;
  background: #ffffff;
  padding: 2rem;
  font-size: 0.9rem;
  color: #232d41;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #1f8efa;
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  text-decoration: underline;
}

.separator {
  color: #232d41;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1rem;
  }

  .section {
    padding: 2rem 0;
  }

  .container {
    padding: 1rem 0;
  }
}
