* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #fff9c4, #ffb74d);
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  padding: 30px 0;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: #ff6d00;
}

.logo i {
  margin-right: 10px;
  font-size: 32px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #ff6d00;
}

.cta-button {
  background-color: #ff6d00;
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 109, 0, 0.3);
}

.cta-button:hover {
  background-color: #ff8a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 109, 0, 0.4);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.hero-content {
  flex: 1;
  padding-right: 50px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #333;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #555;
}

.hero-image {
  flex: 1;
  text-align: center;
  position: relative;
}

.app-mockup {
  width: 300px;
  height: 620px;
  /* background: white; */
  border-radius: 30px;
  border: 10px solid white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}


.app-mockup i {
  font-size: 80px;
  color: #ff9800;
  z-index: 1;
}

/* Features Section */
.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  position: relative;
  color: #333;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #ff9800;
  border-radius: 2px;
}

.features {
  padding: 80px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-item:nth-child(even) .feature-content {
  padding-left: 0;
  padding-right: 50px;
}

.feature-image {
  flex: 1;
  text-align: center;
}

.feature-screenshot {
  width: 250px;
  height: 500px;
  background: white;
  border-radius: 20px;
  border: 8px solid white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}


.feature-screenshot i {
  font-size: 60px;
  color: #ff9800;
  z-index: 1;
}

.feature-content {
  flex: 1;
  padding-left: 50px;
}

.feature-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.feature-content p {
  font-size: 18px;
  color: #555;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

.cta-section p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.download-btn {
  display: flex;
  align-items: center;
  background: #ff6d00;
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 109, 0, 0.3);
}

.download-btn i {
  font-size: 24px;
  margin-right: 10px;
}

.download-btn:hover {
  background: #ff8a00;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 109, 0, 0.4);
}

/* Footer */
footer {
  background: rgba(255, 255, 255, 0.3);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.copyright {
  font-size: 16px;
  color: #666;
}

.support-email {
  font-size: 16px;
  color: #666;
}

.support-email a {
  color: #ff6d00;
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: #666;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #ff6d00;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .feature-item,
  .feature-item:nth-child(even) {
    flex-direction: column;
  }

  .feature-content,
  .feature-item:nth-child(even) .feature-content {
    padding: 30px 0 0 0;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links li {
    margin: 0 10px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .app-mockup,
  .feature-screenshot {
    width: 90%;
    max-width: 300px;
  }
}
