/* Page fade-out animation for navigation */
body.page-fade-out {
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1);
}

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f5f1e6;
  color: #222;
  min-height: 100vh;
  position: relative;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1);
}

header {
  background: #f5f1e6;
  padding: 2rem 0;
  text-align: center;
  border-bottom: 2px solid #e0d7c3;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 120px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  margin: 0;
  font-family: 'Georgia', serif;
  color: #222;
}

h2 {
  color: #222;
  font-size: 2rem;
  margin-top: 2rem;
}

nav {
  margin: 1rem 0;
}

/* Rounded button style for nav links */
nav a {
  display: inline-block;
  background: #f6f0df;
  color: #000;
  padding: 0.5em 1.2em;
  margin: 0 0.3em;
  border-radius: 2em;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #e2d2a7;
  box-shadow: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
}

nav a:hover, nav a:focus {
  background: #c6b175;
  color: #fff;
  border: 2px solid #c6b175;
}

/* Make all links brown and black on hover */
a, a:visited {
  color: #8B6F28;
  text-decoration: underline;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #000;
}

main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.cta {
  background: #bfa76a;
  color: #fff;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 2rem auto;
  font-size: 1.3rem;
  box-shadow: 0 2px 12px #e0d7c3;
  transition: transform 0.2s;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta:hover {
  transform: scale(1.03);
}

section {
  margin-bottom: 2.5rem;
}

/* Centered section headings */
.centered-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Pricing cards layout */
.pricing-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0 1.5rem 0;
}

.pricing-card {
  background: #f6f0df;
  border: 2px solid #e2d2a7;
  border-radius: 1.5em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 2rem 2.2rem 1.5rem 2.2rem;
  min-width: 220px;
  max-width: 270px;
  text-align: center;
  margin-bottom: 1rem;
  transition: box-shadow 0.2s, border 0.2s;
}

.pricing-card:hover {
  box-shadow: 0 6px 24px rgba(139,111,40,0.13);
  border: 2px solid #c6b175;
}

.pricing-title {
  font-size: 1.25em;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #8B6F28;
}

.pricing-price {
  font-size: 2em;
  font-weight: 800;
  margin-bottom: 0.3em;
  color: #000;
}

.pricing-onetime, .pricing-yearly {
  font-size: 0.6em;
  font-weight: 500;
  color: #8B6F28;
  margin-left: 0.2em;
}

.pricing-desc {
  font-size: 1em;
  color: #444;
  margin-bottom: 0.2em;
}

/* Footer mimic styles */
.site-footer-mimic {
  width: 100%;
  background: #2d2d2d;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2.5rem 4vw 0.5rem 4vw;
  position: relative;
  box-sizing: border-box;
  border-top: 6px solid #e0d7c3;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin-top: 3rem;
  gap: 2vw;
  min-height: 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  min-width: 140px;
}

.footer-logo-col {
  align-items: flex-start;
  min-width: 180px;
}

.footer-logo-img {
  width: 90px;
  margin-bottom: 0.5em;
}

.footer-logo-title {
  font-family: 'Georgia', serif;
  font-size: 1.2em;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #fff;
  opacity: 0.95;
  margin-top: 0.2em;
}

.footer-heading {
  font-weight: bold;
  font-size: 1.15em;
  letter-spacing: 0.04em;
  margin-bottom: 0.7em;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin: 0.3em 0;
  font-size: 1.15em;
  font-family: 'Georgia', serif;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.footer-col ul li::before {
  content: '\203A';
  color: #bfa76a;
  margin-right: 0.6em;
  font-size: 1.1em;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #bfa76a;
}

.footer-contact-col {
  align-items: flex-end;
  min-width: 140px;
}

.footer-contact-icons {
  display: flex;
  gap: 1.1em;
  margin-top: 0.5em;
}

.footer-contact-icons a {
  display: inline-block;
  background: #444;
  border-radius: 6px;
  padding: 0.3em 0.4em;
  transition: background 0.2s;
}

.footer-contact-icons a:hover {
  background: #bfa76a;
}

.footer-contact-icons img {
  width: 28px;
  height: 28px;
  vertical-align: middle;
}

.footer-copyright {
  width: 100%;
  text-align: left;
  font-size: 1rem;
  color: #ccc;
  background: none;
  margin: 1.5rem 0 0 0;
  padding: 0;
  border: none;
}

@media (max-width: 900px) {
  .site-footer-mimic {
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 2vw 1.5rem 2vw;
  }
}

@media (max-width: 600px) {
  .site-footer-mimic {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.2rem 1vw 1.2rem 1vw;
  }
  .footer-contact-col {
    align-items: flex-start;
  }
}