body {
  background: #F5EEDD;
  font-family: 'Nunito', system-ui, sans-serif;
  margin: 0;
  min-height: 100vh;
  color: #434746;
  display: flex;
  flex-direction: column;
}

* {
  box-sizing: border-box;
}

.site-container {
  max-width: 675px;
  margin: 0 auto;
  padding: 0 1.2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  width: 100%;
  margin: 0;
  padding: 1.2rem 0 2.5rem 0;
  background: none;
}

@media (min-width: 600px) {
  /* .site-container max-width override removed to allow 900px width */
  main {
    padding: 2rem 0 3rem 0;
  }
}
header {
  background: #ffffff;
  padding: 0.6rem 0;
  border-bottom: 1px solid #e0ded8;
  text-align: center;
}
.privacy-policy th, .privacy-policy td {
  padding: 0.65rem 0.7rem;
  border: 1px solid #e8e2cc;
  text-align: left;
  font-size: 0.99rem;
}
.privacy-policy tbody tr {
  border-bottom: 1px solid #ede8db;
}
.privacy-policy tbody tr:last-child {
  border-bottom: none;
}

nav {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 1rem;
}
nav a {
  color: #434746;
  text-decoration: none;
  font-weight: 500;
  padding: 0.2rem 0.7rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}
nav a:hover {
  background: #f9b11a22;
  color: #F9B11A;
}


.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  margin-bottom: 1.7rem;
  padding-top: 0.5rem;
}
.hero .logo {
  margin-bottom: 0.8rem;
}
.hero-row {
  width: 100%;
}

.site-logo-bar {
  width: 100%;
  text-align: center;
  margin: 2.2rem 0 1.3rem 0;
}
.logo {
  width: 260px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
@media (min-width: 600px) {
  .site-logo-bar {
    margin: 1.2rem 0 1.2rem 0;
  }
  .logo {
    width: 320px;
  }
}
.hero-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.hero-mascot-col, .hero-text-col {
  width: 100%;
}
@media (min-width: 600px) {
  .hero-row {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  .hero-mascot-col {
    width: 50%;
    min-width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-text-col {
    width: 50%;
    display: flex;
    align-items: center;
  }
}
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0.1rem;
  gap: 0.1rem;
}
@media (min-width: 600px) {
  .hero-text {
    align-items: flex-start;
    padding-left: 0.5rem;
    gap: 0.7rem;
  }
}
.owlo-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download-row {
  
  display: /*flex*/ none;
  justify-content: center;
  align-items: center;
  margin: 1.6rem 0 2.2rem 0;
}
.appstore-badge {
  width: 170px;
  max-width: 80vw;
  height: auto;
  display: block;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
  border-radius: 0.8rem;
}

/* Why AskOwlo Works benefit cards */

.privacy-policy {
  background: #fff !important;
  border-radius: 0.5rem;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.07);
  padding: 0.5rem 1.5rem 0.5rem 1.5rem;
  margin: 0.5rem 0 0.5rem 0;
}


/* How It Works steps */
.how-it-works {
  margin: 2.2rem 0 2.5rem 0;
  padding: 0 0.2rem;
}
.how-it-works h2 {
  font-size: 1.32rem;
  text-align: center;
  margin-bottom: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: stretch;
}
.how-step {
  background: #fff;
  border-radius: 1.1rem;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.04);
  padding: 1.2rem 1.1rem 1.2rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  text-align: center;
}
.how-step-number {
  color: #E0B800;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 0.1rem;
  letter-spacing: 0.01em;
}
.how-emoji {
  font-size: 2rem;
  margin-bottom: 0.7rem;
}
.how-title {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #434746;
}
.how-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}
.how-closing {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.06rem;
  font-style: italic;
  color: #555;
  background: #fff8e1;
  border-radius: 1rem;
  padding: 1.1rem 1rem 0.7rem 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.03);
}
@media (min-width: 600px) {
  .how-steps {
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
  }
  .how-step {
    flex: 1 1 220px;
    max-width: 250px;
    min-width: 180px;
  }
}
.benefits {
  margin: 2.2rem 0 2.5rem 0;
  padding: 0 0.2rem;
}
.benefits h2 {
  font-size: 1.35rem;
  text-align: center;
  margin-bottom: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.benefit-cards {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: stretch;
}
.benefit-card {
  background: #fff;
  border-radius: 1.1rem;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.04);
  padding: 1.1rem 1.1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.benefit-emoji {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  align-self: center;
}
.benefit-title {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #434746;
  text-align: center;
  width: 100%;
}
.benefit-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  text-align: center;
  width: 100%;
}
@media (min-width: 600px) {
  .benefit-cards {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.3rem;
    justify-content: center;
  }
  .benefit-card {
    flex: 1 1 220px;
    max-width: 250px;
    align-items: flex-start;
    min-width: 180px;
  }
}
.owlo {
  width: 70%;
  max-width: 320px;
  height: auto;
  margin: 0.2rem auto 0.2rem auto;
  border-radius: 1.5rem;
  display: block;
}
.owlo-caption {
  text-align: center;
  font-size: 0.92rem;
  color: #888;
  margin-top: 0.2rem;
  font-style: italic;
  letter-spacing: 0.01em;
}
@media (min-width: 600px) {
  .owlo {
    width: 100%;
    max-width: 100%;
    min-width: 120px;
    height: auto;
  }
}
.hero h1 {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0.7rem 0 0.5rem 0;
  color: #434746;
  line-height: 1.5;
}

.hero p {
  font-size: 1.25rem;
  color: #555;
  margin: 0.5rem 0 0.7rem 0;
  line-height: 1.5;
}

.hero p {
  font-size: 1.08rem;
  color: #555;
  margin: 0 0 0.5rem 0;
}
.story {
  margin-bottom: 1.4rem;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.1rem 1rem 0.7rem 1rem;
  box-shadow: 0 2px 10px #e0ded822;
}
.story h2 {
  margin-top: 0;
  font-size: 1.23rem;
  color: #F9B11A;
  font-weight: 700;
}
.story p {
  font-size: 1.06rem;
  color: #434746;
}
.faq {
  margin-bottom: 1.2rem;
  background: #fffbe7;
  border-radius: 1rem;
  padding: 1.1rem 1rem 0.7rem 1rem;
  box-shadow: 0 2px 10px #e0ded822;
}
.faq h2 {
  margin-top: 0;
  font-size: 1.18rem;
  color: #4CD6CF;
}
.accordion-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.accordion-item {
  background: #fff;
  border-radius: 1.1rem;
  box-shadow: none;
  padding: 0;
  border: 1.5px solid #f5eedc;
  border-bottom: none;
  overflow: hidden;
}
.accordion-item:not(:last-child) {
  border-bottom: 1.5px solid #e8e2cc;
}
.accordion-item:first-child {
  border-top-left-radius: 1.1rem;
  border-top-right-radius: 1.1rem;
}
.accordion-item:last-child {
  border-bottom-left-radius: 1.1rem;
  border-bottom-right-radius: 1.1rem;
  border-bottom: 1.5px solid #f5eedc;
}
.accordion-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 800;
  color: #434746;
  padding: 0 1.5rem 0 1.5rem;
  cursor: pointer;
  transition: background 0.14s;
  position: relative;
}
.accordion-question::after {
  content: '\25BC';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.22s;
  font-size: 1.1rem;
  color: #E0B800;
}
.accordion-question[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}
.accordion-answer {
  background: #fffbe7;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.23s, padding 0.18s;
}
.accordion-answer[style*="max-height"], .accordion-answer.open {
  opacity: 1;
  padding: 1rem 1.5rem 1.2rem 1.5rem;
  max-height: none;
  display: block;
}

@media (min-width: 600px) {
  .accordion-list {
    gap: 0;
  }
}
.accordion-item {
  background: #fff;
  border-radius: 1.1rem;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.07);
  padding: 0;
  border: 1.5px solid #f5eedc;
  overflow: hidden;
}
.accordion-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 800;
  color: #434746;
  padding: 1.2rem 1.5rem 1.2rem 1.5rem;
  cursor: pointer;
  transition: background 0.14s;
  position: relative;
}
.accordion-question::after {
  content: '\25BC';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.22s;
  font-size: 1.1rem;
  color: #E0B800;
}
.accordion-answer {
  background: #fffbe7;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.34s cubic-bezier(0.4,0,0.2,1), opacity 0.23s, padding 0.18s;
}
.accordion-answer[style*="max-height"] {
  opacity: 1;
  padding: 1rem 1.5rem 1.2rem 1.5rem;
}
.accordion-question[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}
@media (min-width: 600px) {
  .accordion-list {
    gap: 0.1rem;
  }
}
footer {
  background: #ffffff;
  color: #888;
  text-align: center;
  padding: 1.1rem 0 0.8rem 0;
  font-size: 0.96rem;
  border-top: 1px solid #e0ded8;
  letter-spacing: 0.01em;
}
.footer-content {
  margin: 0;
  padding: 0;
}

