/*  */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #f9f6f2 0%, #e0e7e9 100%);
  color: #222;
}
header, .main-header {
  background: #1b5e20;
  color: #fff;
  padding: 0;
  height: 60px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  line-height: 60px;
}
.navbar, .main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}
.logo img {
  height: 40px;
  margin-right: 12px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}
nav a, .footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.2s;
}
nav a:hover, .footer-links a:hover {
  color: #ffd600;
}
nav a.active {
  color: #ffd600;
  font-weight: 700;
}

/*  Hero  */
.hero, .contact-hero {
  background: url('./assets/section_bg.jpg') center/cover no-repeat;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero::after, .contact-hero .overlay {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27,94,32,0.55);
  z-index: 1;
}
.hero-content, .contact-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.hero-content h1, .contact-hero .hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.hero-content p, .contact-hero .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 32px;
}
.cta-btn {
  background: linear-gradient(90deg, #ffd600, #ff6f00);
  color: #1b5e20;
  padding: 14px 36px;
  border: none;
  border-radius: 32px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,111,0,0.12);
  transition: transform 0.2s;
}
.cta-btn:hover {
  transform: scale(1.06);
}

/*  */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 64px auto 0;
  padding: 0 24px;
}
.feature-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s;
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.03);
}
.feature-card img {
  height: 56px;
  margin-bottom: 18px;
}
.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #1b5e20;
}
.feature-card p {
  font-size: 1rem;
  color: #444;
}

/*  */
.download {
  text-align: center;
  margin: 64px 0 32px;
}
.download-btn {
  display: inline-block;
  margin: 0 12px;
  background: #fff;
  border: 2px solid #ffd600;
  border-radius: 12px;
  padding: 12px 28px;
  font-size: 1.1rem;
  color: #1b5e20;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.download-btn:hover {
  background: #ffd600;
  color: #fff;
}

/*  */
.about-section {
  max-width: 900px;
  margin: 48px auto 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 40px 32px;
}
.about-section h1 {
  color: #1b5e20;
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.about-section h2 {
  color: #ff6f00;
  font-size: 1.3rem;
  margin-top: 32px;
}
.about-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}
.about-section ul {
  padding-left: 20px;
}
.about-section li {
  margin-bottom: 8px;
}

/* / */
.policy-section {
  max-width: 900px;
  margin: 48px auto 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 40px 32px;
}
.policy-section h1 {
  color: #1b5e20;
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.policy-section h2 {
  color: #ff6f00;
  font-size: 1.3rem;
  margin-top: 32px;
}
.policy-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}
.policy-section ul {
  padding-left: 20px;
}
.policy-section li {
  margin-bottom: 8px;
}

/*  */
.contact-section {
  padding: 48px 0 0 0;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.contact-grid {
  display: flex;
  gap: 48px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-info {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 32px 24px;
  margin-bottom: 32px;
}
.contact-info h2 {
  color: #1b5e20;
  margin-bottom: 18px;
}
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}
.contact-info li {
  margin-bottom: 12px;
  font-size: 1.08rem;
  color: #444;
}
.contact-info i {
  color: #ff6f00;
  margin-right: 8px;
}
.social-media {
  margin-top: 18px;
}
.social-media a {
  color: #1b5e20;
  font-size: 1.5rem;
  margin-right: 18px;
  transition: color 0.2s;
}
.social-media a:hover {
  color: #ff6f00;
}
.contact-form {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 32px 24px;
  margin-bottom: 32px;
}
.contact-form h2 {
  color: #1b5e20;
  margin-bottom: 18px;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form input, .contact-form textarea {
  border: 1.5px solid #e0e7e9;
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
}
.contact-form button {
  background: linear-gradient(90deg, #ffd600, #ff6f00);
  color: #1b5e20;
  border: none;
  border-radius: 24px;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: linear-gradient(90deg, #ff6f00, #ffd600);
}

/* FAQ  */
.faq-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin: 32px auto 0 auto;
  max-width: 900px;
  padding: 40px 32px;
}
.faq-section h2 {
  color: #1b5e20;
  margin-bottom: 24px;
  text-align: center;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item h3 {
  color: #ff6f00;
  margin-bottom: 6px;
  font-size: 1.1rem;
}
.faq-item p {
  color: #444;
  font-size: 1rem;
  margin: 0;
}

/*  */
footer, .main-footer {
  background: #1b5e20;
  color: #fff;
  text-align: center;
  padding: 24px 0;
  margin-top: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-logo img {
  height: 32px;
  margin-right: 8px;
}
.footer-links {
  margin-bottom: 8px;
}
.footer-contact {
  margin-bottom: 8px;
}
.footer-contact span {
  margin-right: 18px;
}
.footer-bottom {
  font-size: 0.95rem;
  color: #ffd600;
}

/*  */
@media (max-width: 992px) {
  .navbar, .main-header .container, .container {
    padding: 0 12px;
  }
  .features, .about-section, .policy-section, .faq-section {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 700px) {
  .navbar, .main-header .container {
    flex-direction: column;
    gap: 12px;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .hero-content h1, .contact-hero .hero-content h1 {
    font-size: 2rem;
  }
  .about-section, .policy-section, .faq-section {
    padding: 24px 8px;
  }
  .contact-grid {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 480px) {
  .about-section, .policy-section, .faq-section {
    padding: 12px 2px;
  }
  .contact-info, .contact-form {
    padding: 18px 6px;
  }
}
.app-screenshots {
  max-width: 1100px;
  margin: 56px auto 0 auto;
  padding: 0 24px;
  text-align: center;
}
.app-screenshots h2 {
  color: #1b5e20;
  font-size: 2rem;
  margin-bottom: 24px;
}
.screenshots-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.screenshots-row img {
  height: 420px;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  background: #fff;
  transition: transform 0.2s;
}
.screenshots-row img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 24px rgba(255,111,0,0.18);
}
@media (max-width: 900px) {
  .screenshots-row img { height: 320px; }
}
@media (max-width: 600px) {
  .screenshots-row { gap: 8px; }
  .screenshots-row img { height: 180px; }
}