body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: linear-gradient(180deg, #FFFFFF 0%, #FDF1F8 40%, #EAD4F8 100%);
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  width: 100%;
}

.logo-link {
  text-decoration: none;
  display: block;
  width: fit-content;
}

.logo {
  position: absolute;
  top: 52px;
  left: 80px;
  width: 302px;
  height: 52px;
  display: flex;
  align-items: center;
  z-index: 10;
}

.logo img {
  width: 302px;
  max-height: 52px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .logo, .logo-link {
    position: static;
    margin: 32px auto 0 auto;
    left: 0;
    top: 0;
    justify-content: center;
    width: 100%;
    max-width: 302px;
    display: flex;
  }
}

/* Move hero/content down 100px more */
.hero, .content-main, .centered-content {
  margin-top: 192px !important;
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .hero, .content-main, .centered-content {
    margin-top: 80px !important; /* Reduced for mobile */
  }
}

.hero-container, .content-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 0 20px;
}

.hero-images, .content-hero-image {
  flex: 1;
  max-width: 598px; /* 520px * 1.15 = 598px, 15% larger */
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-images img, .content-hero-image img {
  width: 115%; /* scale up by 15% */
  height: auto;
  display: block;
  max-height: 552px; /* 480px * 1.15 = 552px */
}

.hero-text, .content-hero-text {
  flex: 1;
  max-width: 500px;
  min-width: 260px;
  text-align: left;
}

.hero-text h1, .content-hero-text h1 {
  font-size: 44px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 24px;
}

.hero-text p, .content-hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-text .built-for, .content-hero-text .built-for {
  font-size: 18px;
  margin-bottom: 32px;
  display: block;
}

.store-buttons, .content-store-buttons {
  display: flex;
  gap: 16px;
}

.store-buttons a img, .content-store-buttons a img {
  height: 50px;
  width: auto;
  display: inline-block;
}

@media (max-width: 900px) {
  .hero-container, .content-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    align-items: center;
  }
  .hero-text, .content-hero-text {
    text-align: center;
    max-width: 100%;
  }
  .hero-images, .content-hero-image {
    max-width: 320px;
  }
  .hero-images img, .content-hero-image img {
    width: 100%;
    max-height: 320px;
  }
}

/* Footer always at bottom */
.site-footer {
  padding: 40px 0 0 0;
  background-color: #000;
  color: #fff;
  width: 100%;
  margin-top: auto;
  font-size: 15px;
}

.site-footer .footer-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 40px; /* Extra 40px before footer bottom */
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
  font-size: 15px;
  font-weight: 500;
  transition: text-decoration 0.2s;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer .copyright {
  margin: 0 8px;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}

@media (max-width: 600px) {
  .site-footer .footer-row {
    flex-direction: column;
    gap: 10px;
    padding-bottom: 40px;
  }
}

/* Content Pages (Terms, Privacy, etc.) */
.content-main {
  margin-bottom: 0;
}

.content-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 0 20px;
}

.content-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 100%;
}

.content-section {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.content-section h2, .content-section h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  margin-top: 0;
}

.content-section p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #333;
}

.content-section ul {
  padding-left: 20px;
}

.content-section a {
  color: #6C13FF;
  text-decoration: underline;
}

.content-section a:hover {
  text-decoration: none;
}

/* Contact/Unsubscribe Form Styles */
.centered-content {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 192px !important;
  text-align: left;
  padding: 40px 20px 0 20px;
}

.centered-content h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.centered-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  text-align: left;
}

.contact-form {
  margin: 0 auto;
  max-width: 400px;
  text-align: left;
}

.select-wrapper {
  position: relative;
  margin: 0 auto 32px auto;
  width: 100%;
  max-width: 320px;
}

.select-wrapper select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #a084f7;
  border-radius: 12px;
  font-size: 16px;
  background: #fff;
  color: #6C13FF;
  appearance: none;
  outline: none;
  transition: border 0.2s;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 24px rgba(160, 132, 247, 0.08);
}

.select-wrapper select:focus, .select-wrapper select:active {
  border: 2px solid #6C13FF;
  background: #f3e7fb;
  color: #6C13FF;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #6C13FF;
  transform: translateY(-50%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .centered-content {
    margin-top: 40px !important;
    padding: 32px 10px 0 10px;
  }
}