/* ===== HEADER ===== */
.site-header {
  background: #ffffff;
  min-height: 160px;   /* evt 120px */
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 110px;
  display: block;
}

/* ===== NAV ===== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link,
.nav-item > span {
  font-size: 16px;
  color: #111;
  cursor: pointer;
  text-decoration: none;
}

.nav-link:hover,
.nav-item > span:hover {
  text-decoration: underline;
}

/* CTA */
.nav-cta {
  background: #f5b400;
  color: #000;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
}

.nav-cta:hover {
  background: #e6a900;
}
/* ===== DROPDOWN MENY – BOKSER ===== */

.has-dropdown {
  position: relative;
}

.has-dropdown > span::after {
  content: "▾";
  font-size: 11px;
  opacity: 0.8;
  margin-left: 4px;
}


.has-dropdown > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* selve boksen */
.dropdown {
  position: absolute;
  top: calc(100% + 6px); /* liten visuell luft */
  background: #ffffff;
  border-radius: 10px;
  min-width: 360px;

  padding: 14px 0;

  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);

  display: none;
  z-index: 2000;
}

/* liten "peker" opp mot meny */
.dropdown::before {
  top: -7px;   /* overlapper litt */
  pointer-events: none; /* viktig */
}

/* lenker i boksen */
.dropdown a {
  display: block;
  padding: 12px 22px;

  font-size: 15px;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
}

/* hover på hvert valg */
.dropdown a:hover {
  background: #f9fafb;
  color: #000;
}

/* vis dropdown på hover */
.has-dropdown:hover .dropdown {
  display: block;
}

/* selve boksen */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;

  background: #ffffff;
  border-radius: 10px;
  min-width: 360px;
  padding: 14px 0;

  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);

  /* NY LOGIKK */
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;

  z-index: 2000;
}

/* vis dropdown på hover */
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}



/* ===== MOBIL ===== */
@media (max-width: 900px) {

  .main-nav {
    display: none; /* kan erstattes med burger senere */
  }

}
/* ===== FORSIDE ===== */
.front-hero {
  padding: 40px 24px;
    position: relative;
  z-index: 1;
}

.front-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: center;
}

.front-hero-text h1 {
  font-size: 44px;
  margin-bottom: 16px;
}

.front-hero-text p {
  font-size: 20px;
  line-height: 1.6;
  max-width: 750px;
}



.delivery-note {
  font-size: 18px;
  opacity: 0.8;
}

.front-hero-info {
  text-align: center;
}

.front-hero-info {
  text-align: center;
}


/* Garantimerke */
.guarantee-badge {
  margin-top: 24px;
}

.guarantee-badge img {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 12px;
}

.guarantee-badge p {
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.85;
}


.price-box {
  background: #f5b400;
  padding: 20px;
  border-radius: 8px;
  font-weight: bold;
  margin-bottom: 20px;
}

.price-label {
  display: block;
  font-size: 14px;
}

.price-value {
  font-size: 32px;
}

.guarantee {
  font-size: 16px;
  opacity: 0.9;
}

/* KATEGORIER */
.front-categories {
  padding: 40px 24px;
}

.front-categories h2 {
  text-align: center;
  margin-bottom: 40px;
}

.category-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.category-card {
  border: 1px solid #e5e7eb;
  padding: 30px;
  border-radius: 8px;
  text-decoration: none;
  color: #111;

  display: flex;
  flex-direction: column;

  transition: box-shadow 0.2s ease;
}


.category-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.category-card h3 {
  margin-bottom: 10px;
}

.category-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
}

/* STEG */
.front-steps {
  padding: 60px 24px;
  background: #f9fafb;
  }

.steps-grid {
  max-width: 900px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.step-number {
  font-size: 32px;
  font-weight: bold;
  color: #f5b400;
}

/* CTA */
.front-cta {
  text-align: center;
  padding: 80px 24px;
}

.btn-primary.large {
  font-size: 18px;
  padding: 18px 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #f5b400;
  color: #000;
  padding: 14px 30px;
  border-radius: 6px;

  font-size: 16px;
  font-weight: 700;
  text-decoration: none;

  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: #e6a900;
  transform: translateY(-1px);
}
.delivery-note {
  font-size: 16px;
  font-weight: 600;
  color: #111;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  opacity: 0.9;
}

/* liten gul pil – matcher resten av uttrykket */
.delivery-note::before {
  content: "›";
  color: #f5b400;
  font-weight: bold;
  font-size: 18px;
}

/* MOBIL */
@media (max-width: 900px) {
  .front-hero-inner {
    grid-template-columns: 1fr;
  }
}
/* TOPPMENY – TYDELIGERE */
.nav-item > span,
.nav-link {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937; /* litt mørkere enn vanlig tekst */
  padding: 8px 6px;
  position: relative;
}

/* hover-effekt som føles som meny */
.nav-item > span:hover,
.nav-link:hover {
  text-decoration: none;
  color: #000;
}

/* gul markering under ved hover */
.nav-item > span::before,
.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #f5b400;
  transition: width 0.2s ease;
}

.nav-item > span:hover::before,
.nav-link:hover::before {
  width: 100%;
}

.front-steps-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Tving CTA-knapp i hero til å være knapp – aldri lenke */

.front-hero-cta a.btn-primary {
  color: #000 !important;
  text-decoration: none !important;
}

.front-hero-cta {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.front-hero-cta {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.delivery-note {
  font-size: 16px;
  font-weight: 600;
  
}
.category-card {
  border-radius: 12px;
  padding: 32px;
  text-align: left; /* ← viktig */
  transition: transform .2s ease, box-shadow .2s ease;
}

.category-card .category-link {
  margin-top: auto;
  font-weight: bold;
  display: inline-block;
}


.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}
.category-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.category-card h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 8px;
  background: currentColor;
}
.category-card.wedding h3 {
  color: #7c2d12; /* varm vinrød */
}

.category-card.confirmation h3 {
  color: #1e40af; /* rolig blå */
}

.category-card.anniversary h3 {
  color: #92400e; /* gyllen */
}
.category-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
}
.category-link {
  margin-top: 14px;
  display: inline-block;
  font-weight: 600;
  color: #111;
}


.category-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 4px;
  border-radius: 2px;
  background: #f5b400; /* standard gul */
}
.category-card.bryllup::before { background: #7c2d12; }
.category-card.konfirmasjon::before { background: #1d4ed8; }
.category-card.jubileum::before { background: #92400e; }
.category-card.bryllup {
  background: #fff7ed;
}

.category-card.konfirmasjon {
  background: #f0f6ff;
}

.category-card.jubileum {
  background: #fdf6e3;
}
/* ===== SLIK FUNGERER DET – NY DESIGN ===== */

.front-steps {
  padding: 80px 24px;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.front-steps h2 {
  text-align: center;
  margin-bottom: 90px;
}

/* Flyt: kort → pil → kort */
.steps-flow {
  align-items: stretch; /* ← viktig */
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

/* Kort */
.step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.step-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 16px;
  line-height: 1.5;
  color: #374151;
}

.step-meta {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

/* Pil mellom kort */
.step-arrow {
  width: 36px;
  height: 2px;
  background: #e5e7eb;
  position: relative;
}

.step-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -5px;

  border-left: 8px solid #e5e7eb;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* Avslutning mot neste seksjon */
.front-steps::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin: 70px auto 0;
  background: #e5e7eb;
}

/* ===== MOBIL ===== */
@media (max-width: 900px) {
  .steps-flow {
    align-items: stretch; /* ← viktig */
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .step-arrow {
    display: none;
  }
}
.steps-cta {
  margin-top: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.info-highlight {
  
  padding: 90px 24px;
  background: #f9fafb;
}

.info-eyebrow {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f5b400;
  margin-bottom: 12px;
}

.info-highlight h2 {
  margin-bottom: 28px;
}

.info-highlight p {
  font-size: 18px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 18px;
}
.info-split {
  padding: 90px 24px;
}

.info-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

.info-problem p,
.info-solution p {
  font-size: 17px;
  line-height: 1.7;
  color: #374151;
}

.info-solution {
  background: #fff7ed;
  border-radius: 16px;
  padding: 36px;
}

.info-solution h3 {
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  .info-split-grid {
    grid-template-columns: 1fr;
  }
}
.testimonials {
  padding: 90px 24px;
  background: #f9fafb;
  padding: 90px 24px 120px; /* topp / side / bunn */
  }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
  align-items: stretch; /* ⬅️ viktig */
}


.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}


.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;

}

.testimonial-author {
  display: block;
  margin-top: 20px;
  font-weight: 600;
  color: #111;
}
.site-footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 50px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-left {
  font-size: 14px;
  color: #374151;
}

.footer-brand {
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-meta {
  font-size: 14px;
  margin-bottom: 10px;
  color: #6b7280;
}

.footer-contact a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-right {
  text-align: right;
}

.footer-payment-label {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 6px;
}

.footer-payment-img {
  max-height: 36px;
  width: auto;
}

/* MOBIL */
@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }
}
.category-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: #111;
  background: #f5b400;
  padding: 10px 18px;
  border-radius: 6px;
  width: fit-content;
  transition: background 0.2s ease, transform 0.15s ease;
}

.category-card:hover .category-link {
  background: #e6a900;
  transform: translateY(-1px);
}
.product-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.product-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
}

.product-info h3 {
  margin: 0 0 6px;
}

.product-info p {
  margin: 0;
  color: #555;
}

.product-action {
  flex-shrink: 0;
}
/* --- SEO sections (bryllup/konfirmasjon/jubileum) --- */
.content-section{
  padding: 60px 0;
}

.content-section .content-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-section.alt-bg{
  background: #faf7ef;
}

.content-section h2{
  margin: 0 0 14px;
}

.content-section p{
  font-size: 20px;
  line-height: 1.6;
  max-width: 750px; /* samme som hero */
  margin: 0 0 18px;
}

/* lister */
.seo-list{
  margin: 14px 0 14px 18px;
  padding: 0;
  columns: 2;
  column-gap: 40px;
}

.seo-list li{
  break-inside: avoid;
  margin: 0 0 6px;
}

.seo-steps{
  margin: 14px 0 14px 18px;
  padding: 0;
}

.seo-steps li{
  margin: 0 0 8px;
  line-height: 1.6;
}

.center-cta{
  margin-top: 22px;
}

/* mobil */
@media (max-width: 700px){
  .content-section{
    padding: 36px 0;
  }
  .seo-list{
    columns: 1;
  }
  .content-section .content-inner{
    padding: 0 18px;
  }
}
.content-section h2{
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 18px;
}

.content-section p{
  font-size: 18px;
  line-height: 1.7;
  color: #374151;
}
.process-steps{
  margin-top: 30px;
  display: grid;
  gap: 20px;
}

.process-step{
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.process-step .step-number{
  background: #f5b400;
  color: #000;
  font-weight: 700;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-step p{
  margin: 0;
  font-size: 18px;
}

.process-note{
  margin-top: 20px;
  font-size: 16px;
  color: #374151;
}
.seo-steps li{
  font-size: 20px;        /* matcher hero */
  line-height: 1.6;
  margin-bottom: 12px;
}

.seo-steps{
  max-width: 750px;       /* matcher hero-tekstbredde */
}
/* ==============================
   TYPOGRAFI – BRYLLUPSSIDER
============================== */

/* Felles brødtekst */
.content-section p,
.content-section li {
  font-size: 20px;      /* matcher hero */
  line-height: 1.6;
  font-family: inherit;
  color: #111;
}

/* H2 (seksjonsoverskrifter) */
.content-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* H3 (FAQ-spørsmål) */
.content-section h3 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 8px;
}

/* Listeavstand */
.seo-list,
.seo-steps {
  margin-top: 24px;
  margin-bottom: 24px;
}

/* Litt mer luft mellom listepunkter */
.seo-list li,
.seo-steps li {
  margin-bottom: 10px;
}

/* Behold maks bredde lik hero */
.content-section .content-inner {
  max-width: 1200px;
}
/* =========================================
   MEDLEMSOMRÅDE
========================================= */

.member-wrapper {
    max-width: 900px;
    margin: 80px auto;
    padding: 40px 20px;
}

.member-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.member-card h1 {
    margin-bottom: 20px;
}

.member-info p {
    margin: 6px 0;
    font-size: 16px;
}

.order-box {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
}

.order-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
}

.member-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 22px;
    background: #b58b00;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.2s ease;
}

.member-btn:hover {
    opacity: 0.9;
}

.logout-link {
    float: right;
    font-size: 14px;
    text-decoration: none;
}

.logout-link:hover {
    text-decoration: underline;
}

/* =========================================
   LOGIN BOKS
========================================= */

.login-wrapper {
    max-width: 500px;
    margin: 100px auto;
    padding: 40px 20px;
}

.login-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.login-card h1 {
    margin-bottom: 20px;
}

.login-card input[type="email"] {
    width: 100%;
    padding: 14px;
    margin-top: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.login-card button {
    margin-top: 20px;
    padding: 14px;
    width: 100%;
    background: #b58b00;
    border: none;
    color: #ffffff;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s ease;
}

.login-card button:hover {
    opacity: 0.9;
}
/* =========================================
   LOGIN SIDE
========================================= */

.login-wrapper {
    max-width: 500px;
    margin: 100px auto;
    padding: 40px 20px;
}

.login-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.login-card h1 {
    margin-bottom: 20px;
}

.login-card p {
    margin-bottom: 15px;
}

.login-card input[type="email"] {
    width: 100%;
    padding: 14px;
    margin-top: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.login-card button {
    margin-top: 20px;
    padding: 14px;
    width: 100%;
    background: #b58b00;
    border: none;
    color: #ffffff;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s ease;
}

.login-card button:hover {
    opacity: 0.9;
}

.login-message {
    margin-top: 15px;
}

.login-error {
    color: #c0392b;
}

.login-success {
    color: #2c7a2c;
}
.typeform-box iframe {
  width: 100% !important;
  height: 25vh !important;
  min-height: 500px !important;
  max-height: none !important;
  border: 0 !important;
  height: 500px;
}

.typeform-box {
  height: auto !important;
}
/* ===== MEDLEMSOMRÅDE HERO ===== */

.member-hero {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
}

.member-eyebrow {
  display:block;
  font-size:13px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-weight:700;
  color:#b58b00;
  margin-bottom:6px;
}

.member-hero h1 {
  margin:0;
  font-size:32px;
}

.member-meta {
  margin-top:8px;
  font-size:14px;
  color:#6b7280;
}
.order-status {
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.02em;
}

.status-pending {
  background:#f3f4f6;
  color:#374151;
}

.status-ventertypeform {
  background:#fff7ed;
  color:#92400e;
}

.status-mottatt {
  background:#f0fdf4;
  color:#166534;
}

.status-ferdig1,
.status-ferdig2 {
  background:#fef3c7;
  color:#92400e;
}
.btn.large {
  font-size:18px;
  padding:16px 36px;
}
.order-progress {
  display:flex;
  gap:16px;
  align-items:flex-start;
  margin-top:10px;
}

.progress-icon {
  width:40px;
  height:40px;
  border-radius:50%;
  background:#166534;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
  font-size:18px;
}
.card {
  background:#ffffff;
  border-radius:20px;
  padding:32px;
  margin:24px 0;
  box-shadow:0 25px 60px rgba(0,0,0,0.08);
  border:1px solid #f1f1f1;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  color: #111;

  padding: 14px 30px;
  border-radius: 6px;

  font-size: 16px;
  font-weight: 700;
  text-decoration: none;

  border: 2px solid #e5e7eb;

  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: #f9fafb;
  border-color: #f5b400;
  color: #000;

  transform: translateY(-1px);
}
.tale-content {
  font-size: 19px;
  line-height: 1.9;
  max-width: 750px;
  margin: 0 auto;
  font-family: Georgia, serif;
}

.tale-content h1,
.tale-content h2,
.tale-content h3 {
  margin-top: 28px;
}

.tale-content p {
  margin-bottom: 18px;
}
.tale-content p {
    margin-bottom: 1.2em;
}

.tale-content {
    font-family: Georgia, serif;
}
.approve-section {
    margin-top: 50px;
    padding: 30px;
    background: #f8f6ef;
    border-radius: 12px;
    text-align: center;
}

.approved-box {
    margin-top: 40px;
    padding: 20px;
    background: #e8f6ec;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}
.tale-content {
    font-size: 18px;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

@media print {

    body {
        background: #fff !important;
    }

    header,
    footer,
    .site-header,
    .site-footer,
    .btn,
    .member-card:first-child {
        display: none !important;
    }

    .member-card {
        box-shadow: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .tale-content {
        max-width: 100% !important;
        margin: 0 !important;
        font-size: 18px;
    }
}
.company-info-box {
  margin: 40px 0;
  padding: 30px;
  background: #f6f8fa;
  border: 1px solid #e2e6ea;
  border-radius: 8px;
}

.company-info-box h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.company-info-box p {
  margin: 6px 0;
}
