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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

/* Header */
header {
  background-color: #ffc703;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s;
}

.logo-link:hover {
  opacity: 0.8;
}

.logo {
  height: 50px;
  width: auto;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

nav a:hover {
  opacity: 0.7;
}

/* Header Buttons */
.header-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-login,
.btn-signup {
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.btn-login {
  color: #000;
  background-color: transparent;
  border: 2px solid #000;
}

.btn-login:hover {
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.btn-signup {
  color: #fff;
  background-color: #000;
  border: 2px solid #000;
}

.btn-signup:hover {
  background-color: #333;
  border-color: #333;
  opacity: 1;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background-color: #ffc703;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-small-title {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  margin-bottom: 1rem;
}

.hero-main-title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #000;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 2rem;
  max-width: 500px;
}

.app-store-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.app-badge {
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
}

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

.app-badge img {
  height: 50px;
  width: auto;
  display: block;
}

.hero-trial-text {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-screenshots {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  max-width: 100%;
}

.screenshot-desktop {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.screenshot-mobile {
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Features Section */
.features {
  padding: 4rem 0;
  background-color: #fff;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #000;
}

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

.feature-card {
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #000;
}

.feature-card p {
  color: #666;
  line-height: 1.8;
}

/* Support Section */
.support {
  padding: 4rem 0;
  background-color: #f5f5f5;
  text-align: center;
}

.support h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #000;
}

.support p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.support-contact {
  font-size: 1.2rem;
}

.support-contact a {
  color: #ffc703;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.support-contact a:hover {
  color: #e6b303;
  text-decoration: underline;
}

/* About Section */
.about {
  padding: 4rem 0;
  background-color: #fff;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #000;
}

.about p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

footer p {
  color: #ccc;
}

footer a {
  color: #ffc703;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Legal Content Pages */
.legal-content {
  padding: 4rem 0;
  background-color: #fff;
}

.legal-content .container {
  max-width: 900px;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #000;
  border-bottom: 3px solid #ffc703;
  padding-bottom: 1rem;
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #000;
}

.legal-content h3 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.legal-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: #ffc703;
  text-decoration: none;
  transition: color 0.3s;
}

.legal-content a:hover {
  color: #e6b303;
  text-decoration: underline;
}

.legal-content strong {
  color: #000;
  font-weight: 600;
}

.legal-content em {
  color: #666;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-screenshots {
    flex-direction: column;
    align-items: center;
  }

  .screenshot-mobile {
    max-width: 150px;
  }

  nav ul {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .app-store-badges {
    flex-direction: column;
    align-items: center;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .logo {
    height: 40px;
  }

  .header-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .btn-login,
  .btn-signup {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0;
  }

  .hero-main-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .app-store-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .screenshot-desktop {
    max-width: 100%;
  }

  .screenshot-mobile {
    max-width: 120px;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .features h2,
  .support h2,
  .about h2 {
    font-size: 2rem;
  }
}

