:root {
  --color-bg: #f0e8dc;
  --color-accent: #886976;
  --color-text: #2c2522;
  --color-text-on-accent: #fff;
  --color-section-alt: #e5dcd2;
  --color-placeholder: #808080;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 8px 12px;
  background: var(--color-accent);
  color: var(--color-text-on-accent);
  z-index: 1001;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 8px;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
}

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

@media (max-width: 320px) {
  .container {
    padding: 0 12px;
  }
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.site-header {
  background: var(--color-accent);
  color: var(--color-text-on-accent);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header a {
  color: var(--color-text-on-accent);
}

.site-header a:hover {
  opacity: 0.9;
  text-decoration: none;
}

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

.logo img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 56px;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.nav-list a {
  padding: 4px 8px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-text-on-accent);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: var(--color-accent);
    padding: 60px 20px 20px;
    transition: right 0.3s ease;
    z-index: 99;
    overflow-y: auto;
  }

  .main-nav.is-open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
  }

  .nav-toggle {
    display: block;
  }

}

@media (max-width: 320px) {
  .main-nav {
    width: 100%;
  }
}

.section {
  padding: 48px 0;
  background: var(--color-bg);
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-alt {
  background: var(--color-section-alt);
  color: var(--color-text);
}

.section h2 {
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--color-text);
  font-size: 1.75rem;
}

.section-alt h2 {
  color: var(--color-text);
}

.icon-contrast {
  color: var(--color-accent);
  margin-right: 8px;
}

.hero-section {
  padding: 48px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(136, 105, 118, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-image-wrap {
  perspective: 800px;
}

.hero-image {
  position: relative;
  display: inline-block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(44, 37, 34, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 20px 50px rgba(44, 37, 34, 0.18);
}

.hero-image img {
  width: 100%;
  max-width: 440px;
  min-height: 320px;
  height: auto;
  display: block;
  background: var(--color-placeholder);
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

.hero-image-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-text-on-accent);
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  opacity: 0.95;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-content {
  opacity: 0;
  animation: heroFadeIn 0.8s ease forwards;
}

.hero-content .hero-title {
  animation: heroSlideUp 0.6s ease 0.2s both;
}

.hero-content .hero-tagline {
  animation: heroSlideUp 0.6s ease 0.3s both;
}

.hero-content .hero-desc {
  animation: heroSlideUp 0.6s ease 0.35s both;
}

.hero-content .hero-price,
.hero-content .hero-format {
  animation: heroSlideUp 0.6s ease 0.4s both;
}

.hero-content .hero-form {
  animation: heroSlideUp 0.6s ease 0.5s both;
}

@keyframes heroFadeIn {
  to { opacity: 1; }
}

@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1.hero-title {
  margin: 0 0 12px;
  font-size: 2.5rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: 1.125rem;
  margin-bottom: 12px;
  color: var(--color-text);
  font-weight: 500;
}

.hero-desc {
  margin-bottom: 16px;
  color: var(--color-text);
  line-height: 1.6;
}

.hero-price {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-text);
}

.hero-price-label {
  color: var(--color-accent);
}

.hero-format {
  margin-bottom: 8px;
  color: var(--color-text);
}

.hero-id {
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
}

.advisory-fi {
  padding: 12px 16px;
  background: rgba(136, 105, 118, 0.08);
  border-left: 4px solid var(--color-accent);
  border-radius: 4px;
}

.hero-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  margin-bottom: 8px;
}

.hero-input {
  flex: 1;
  min-width: 140px;
  max-width: 200px;
}

.hero-cta {
  margin-top: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(136, 105, 118, 0.35);
  text-decoration: none;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-text-on-accent);
  transition: transform 0.3s ease, background 0.2s;
  animation: heroBounce 2s ease-in-out infinite;
}

.hero-scroll-link:hover {
  background: var(--color-text);
  color: var(--color-text-on-accent);
  text-decoration: none;
  transform: translateY(4px);
  animation: none;
}

@keyframes heroBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .hero-image-wrap {
    order: -1;
    margin: 0 auto;
  }

  .hero-image-label {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-form {
    justify-content: center;
  }

  .hero-form-row {
    justify-content: center;
  }

  .hero-input {
    max-width: 100%;
  }
}

@media (max-width: 320px) {
  .hero-content h1.hero-title {
    font-size: 1.75rem;
  }

  .hero-section {
    padding: 32px 0 56px;
  }

  .section {
    padding: 32px 0;
  }
}

/* About section: one photo + content */
.about-block-single {
  display: grid;
  grid-template-columns: minmax(280px, 480px) 1fr;
  gap: 40px;
  align-items: start;
}

.about-section .about-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about-section .about-image-wrap img {
  width: 100%;
  display: block;
  min-height: 320px;
  object-fit: cover;
  background: var(--color-placeholder);
}

.about-content {
  min-width: 0;
}

.about-checklist {
  margin-top: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-checklist .template-checklist-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.about-checklist .template-checklist-item:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .about-block-single {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-section .about-image-wrap {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 320px) {
  .about-section .about-image-wrap {
    max-width: 100%;
  }
}

.about-section .about-block {
  align-items: start;
}

.about-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(44, 37, 34, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(44, 37, 34, 0.15);
}

.about-image-wrap img {
  display: block;
  width: 100%;
  min-height: 300px;
  background: var(--color-placeholder);
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-image-wrap:hover img {
  transform: scale(1.04);
}

.about-image-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--color-accent);
  color: var(--color-text-on-accent);
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

.about-text .about-product-name {
  margin: 0 0 12px;
  font-size: 1.5rem;
  color: var(--color-accent);
  font-weight: 700;
}

.about-desc {
  margin-bottom: 12px;
  color: var(--color-text);
}

.about-note {
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--color-text);
  opacity: 0.9;
}

.about-price {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-text);
}

.about-format {
  margin-bottom: 20px;
  color: var(--color-text);
}

.about-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.about-input {
  max-width: 220px;
  min-width: 160px;
}

.about-form .ant-btn {
  transition: transform 0.2s ease;
}

.about-form .ant-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

@media (max-width: 768px) {
  .about-form {
    flex-direction: column;
    align-items: stretch;
  }

  .about-input {
    max-width: 100%;
  }
}

/* Template 1: split layout (image + headline + checklist) */
.template-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.template-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.template-image-block {
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-placeholder);
}

.template-image-block-top .template-image-wrap {
  position: relative;
}

.template-image-block-top img,
.template-image-block-large img {
  width: 100%;
  display: block;
  min-height: 300px;
  object-fit: cover;
}

.template-image-caption {
  padding: 16px 0 0;
  margin: 0;
  color: var(--color-text);
  line-height: 1.6;
}

.template-right .template-headline {
  margin: 0 0 24px;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.template-image-checklist {
  margin-bottom: 24px;
}

.template-checklist-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.template-checklist-image img {
  width: 100%;
  max-width: 380px;
  display: block;
  min-height: 280px;
  object-fit: cover;
  background: var(--color-placeholder);
}

.template-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.template-checklist-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.template-checklist-item:last-child {
  border-bottom: none;
}

.template-checklist-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--color-text);
  text-align: left;
  transition: color 0.2s;
}

.template-checklist-btn:hover {
  color: var(--color-accent);
}

.template-checklist-btn[aria-expanded="true"] .template-checklist-arrow {
  transform: rotate(180deg);
}

.template-checklist-arrow {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--color-accent);
  transition: transform 0.25s ease;
}

.template-checklist-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
}

.template-checklist-item.is-open .template-checklist-detail {
  max-height: 300px;
  padding: 0 0 12px 0;
}

.section-title-center {
  text-align: center;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .template-split-inner {
    grid-template-columns: 1fr;
  }

  .template-right .template-headline {
    font-size: 1.5rem;
  }
}

/* Template 2: agency style (intro + feature items with icon, line, expand) */
.template-agency-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.template-agency-intro h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

.template-agency-intro p {
  margin: 0;
  color: var(--color-text);
  line-height: 1.6;
}

.template-agency-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.template-feature-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.template-feature-item:last-child {
  border-bottom: none;
}

.template-feature-trigger {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.template-feature-trigger:hover {
  background: rgba(136, 105, 118, 0.06);
}

.template-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 8px;
  background: var(--color-accent);
  color: var(--color-text-on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.template-feature-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.template-feature-line {
  flex: 1;
  height: 2px;
  min-width: 40px;
  background: var(--color-accent);
  opacity: 0.6;
  transition: opacity 0.2s;
}

.template-feature-trigger:hover .template-feature-line {
  opacity: 1;
}

.template-feature-chevron {
  font-size: 0.75rem;
  color: var(--color-accent);
  transition: transform 0.25s ease;
}

.template-feature-item.is-open .template-feature-chevron {
  transform: rotate(180deg);
}

.template-feature-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 0 20px 56px;
}

.template-feature-item.is-open .template-feature-detail {
  max-height: 300px;
}

.template-feature-detail p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .template-agency-inner {
    grid-template-columns: 1fr;
  }

  .template-feature-detail {
    padding-left: 0;
    padding-right: 0;
  }
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.content-image img {
  width: 100%;
  max-width: 420px;
  min-height: 300px;
  height: auto;
  background: var(--color-placeholder);
  object-fit: cover;
}

.section-prose p {
  margin-bottom: 14px;
  color: var(--color-text);
  line-height: 1.6;
}

.section-prose p:last-child {
  margin-bottom: 0;
}

.content-text p {
  margin-bottom: 12px;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-image img {
    max-width: 100%;
  }
}

.advantages-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advantages-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--color-text);
}

.advantages-list li i {
  position: absolute;
  left: 0;
}

/* Modern listing cards */
.list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 12px;
}

.list-card {
  position: relative;
  padding: 16px 16px 18px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(44, 37, 34, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.section-alt .list-card {
  background: #fff;
}

.list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(44, 37, 34, 0.12);
  border-color: rgba(136, 105, 118, 0.5);
}

.list-card-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(136, 105, 118, 0.08);
  color: var(--color-accent);
  margin-bottom: 8px;
}

.list-card-title {
  margin: 0 0 4px;
  font-weight: 600;
  color: var(--color-text);
}

.list-card-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
}

.ant-btn {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  border: 1px solid transparent;
  transition: opacity 0.2s;
}

.ant-btn:hover {
  opacity: 0.9;
  text-decoration: none;
}

.ant-btn-primary {
  background: var(--color-accent);
  color: var(--color-text-on-accent);
  border-color: var(--color-accent);
}

.ant-btn-default {
  background: var(--color-bg);
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.ant-input {
  width: 100%;
  max-width: 400px;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  color: var(--color-text);
  background: #fff;
}

.ant-input:focus {
  border-color: var(--color-accent);
  outline: none;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 4px;
  color: var(--color-text);
  font-weight: 500;
}

.order-form textarea.ant-input {
  resize: vertical;
  min-height: 80px;
}

.faq-accordion {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-icon {
  font-size: 0.75rem;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  margin: 0 0 16px;
  padding: 0 0 8px;
  color: var(--color-text);
  line-height: 1.6;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--color-bg);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
}

.section-alt .review-card {
  background: #fff;
}

.review-text {
  margin: 0 0 12px;
  font-style: italic;
  color: var(--color-text);
}

.review-author {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text);
  opacity: 0.85;
}

.disclaimer-section p {
  margin-bottom: 12px;
  color: var(--color-text);
}

.map-wrap {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  max-width: 100%;
}

.map-wrap iframe {
  width: 100%;
  height: 450px;
  max-height: 60vh;
}

@media (max-width: 320px) {
  .map-wrap iframe {
    height: 280px;
  }
}

.site-footer {
  background: var(--color-accent);
  color: var(--color-text-on-accent);
  padding: 24px 0;
}

.site-footer a {
  color: var(--color-text-on-accent);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 16px;
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-text);
  color: var(--color-text-on-accent);
  padding: 16px;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.cookie-inner p {
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-inner a {
  color: #b8d4ff;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-buttons .ant-btn-default {
  background: transparent;
  color: var(--color-text-on-accent);
  border-color: rgba(255, 255, 255, 0.7);
}

.cookie-buttons .ant-btn-default:hover {
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 320px) {
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}

.page-header {
  padding: 32px 0 24px;
  background: var(--color-accent);
  color: var(--color-text-on-accent);
}

.page-header h1 {
  margin: 0;
  font-size: 1.75rem;
}

.page-content {
  padding: 32px 0 48px;
}

.page-content p {
  margin-bottom: 16px;
  color: var(--color-text);
}

.page-content h2 {
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--color-text);
  font-size: 1.25rem;
}

.page-content ul {
  margin-bottom: 16px;
  color: var(--color-text);
}

.success-page .page-content {
  text-align: center;
  padding: 48px 0;
}

.success-page .ant-btn {
  margin-top: 16px;
}

img[src*="picture"] {
  background: var(--color-placeholder);
}
