
/* =========================
   GLOBAL
========================= */
:root {
  --green: #809d85;
  --dark: #333;
  --light: #fafafa;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--light);
  color: #222;
  text-align: center;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =========================
   HEADER & NAV
========================= */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-weight: bold;
  font-size: 22px;
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
}

nav a:hover {
  color: var(--green);
}

.register-btn {
  background: var(--green);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
}

.burger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* =========================
   SECTIONS (GLOBAL)
========================= */
section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

h2, h3, h4 {
  text-transform: uppercase;
}

/* =========================
   HOME PAGE
========================= */
.main-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin-bottom: 25px;
}

/* App store buttons */
.apps {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.apps a {
  width: 190px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apps img {
  max-width: 100%;
  max-height: 100%;
}

/* Order button */
.order-btn {
  background: #000;
  color: #fff;
  padding: 22px 48px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

/* =========================
   CONTACT PAGE
========================= */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info,
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.05);
  text-align: left;
}

.contact-info h2,
.contact-form h2 {
  margin-top: 0;
}

.contact-info p {
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Forms */
form {
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  background: #000;
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

iframe {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  border: 0;
  margin-top: 40px;
}

/* =========================
   FAQ PAGE
========================= */
.faq-accordion {
  max-width: 900px;
  margin: auto;
  text-align: left;
}

.faq-item {
  background: #fff;
  margin-bottom: 14px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}

.faq-question {
  width: 100%;
  background: #f4f4f4;
  border: none;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: bold;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question span {
  font-size: 22px;
  color: var(--green);
}

.faq-answer {
  display: none;
  padding: 16px 20px 20px;
  line-height: 1.7;
  color: #555;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
  }

  nav.show {
    display: flex;
  }

  nav a {
    padding: 14px;
    border-top: 1px solid #eee;
  }

  .burger {
    display: block;
  }

  section {
    padding: 40px 16px;
  }

  .apps a {
    width: 170px;
    height: 56px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
