@font-face {
  font-family: "Lora";
  src: url(../fonts/Lora-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --heading-font: 'Lora', serif;
  --body-font: 'Inter', sans-serif;
  --color-primary: #2A555A;
  --color-accent: #f3ce75;
  --color-accent-dark: #edb52f;
  --color-text: #1a1a1a;
  --color-text-light: #4a4a4a;
  --color-bg: #fcfbfa;
  --color-border: #e4e4e4;
  --radius: 10px;
  --container-width: 950px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
  margin: 1.5em 0 0.8em;
}

h1 {
  font-size: 2.5rem;
  margin-top: 0.5em;
}

h2 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.5em;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  margin: 1.5em auto;
}

ul, ol {
  margin: 1.5em 0;
  padding-left: 1.5em;
}

.header {
  background: white;
  border-bottom: 1px solid var(--color-border);
  padding: 15px 0;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo img {
  width: 60px;
  height: 60px;
  margin: 0;
}

.header__logo-text {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.header__notice {
  font-size: 0.9rem;
  color: #666;
  background: #f0f0f0;
  padding: 6px 16px;
  border-radius: 30px;
}

.advertorial-label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 10px;
}

.blog-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.post-meta {
  margin-bottom: 20px;
}

.stars {
  color: #f5b342;
  font-weight: bold;
}

.featured-image img {
  width: 100%;
  margin: 20px 0;
}

.testimonial-quote {
  font-style: italic;
  font-weight: 500;
  text-align: center;
  margin: 20px 0;
  font-size: 1.2rem;
}

.image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.feature-box {
  background: #fff;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius);
  margin: 30px 0;
}

.feature-box__title {
  background: #e3e1db;
  padding: 20px;
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 600;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.feature-box__content {
  padding: 20px 40px;
}

.feature-box__content ul {
  list-style: disc;
}

.special-offer {
  margin: 40px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.special-offer__header {
  background: #25ae4e;
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.special-offer__body {
  background: white;
  padding: 30px;
  text-align: center;
}

.btn {
  display: inline-block;
  background: linear-gradient(to bottom, #f3ce75, #edb52f);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: 0.2s;
  text-align: center;
}

.btn:hover {
  background: #f3ce75;
  color: #000;
}

.btn--large {
  font-size: 1.5rem;
  padding: 20px 40px;
}

.btn--block {
  display: block;
  width: 100%;
}

.btn i {
  margin-left: 10px;
}

.reviews {
  margin: 40px 0;
}

.review {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}

.review .stars {
  margin-bottom: 10px;
}

.order-section {
  background: var(--color-primary);
  color: white;
  padding: 50px 0;
  margin: 50px 0;
  border-radius: var(--radius);
}

.order-section h2 {
  color: white;
  text-align: center;
  margin-top: 0;
}

.order-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
}

.order-form__image img {
  margin: 0;
  border-radius: var(--radius);
}

.order-form__content {
  background: white;
  color: var(--color-text);
  padding: 30px;
  border-radius: var(--radius);
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.price-old {
  text-decoration: line-through;
  color: #888;
  font-size: 1.2rem;
}

.price-new {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.price-saving {
  background: #dcfce7;
  color: #166534;
  padding: 4px 12px;
  border-radius: 30px;
  font-weight: 600;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group--checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-group--checkbox input {
  width: auto;
}

.secure-note {
  text-align: center;
  margin-top: 20px;
  color: #666;
  font-size: 0.9rem;
}

.faq {
  margin: 50px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-item {
  background: #f8f8f8;
  padding: 20px;
  border-radius: var(--radius);
}

.footer {
  background: #f6f4f0;
  padding: 40px 20px;
  margin-top: auto;
  font-size: 0.95rem;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer__brand img {
  width: 50px;
  height: 50px;
  margin: 0 0 15px;
}

.footer__address {
  color: #666;
  margin-top: 10px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: var(--color-primary);
  text-decoration: none;
}

.footer__links a:hover {
  text-decoration: underline;
}

.footer__contacts p {
  margin-bottom: 5px;
  color: #666;
}

.footer__disclaimer {
  grid-column: span 4;
  font-size: 0.8rem;
  color: #777;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  margin-top: 20px;
}

.footer__copy {
  grid-column: span 4;
  text-align: center;
  color: #888;
  margin-top: 20px;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .order-form-container { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer__container { grid-template-columns: 1fr; }
  .footer__disclaimer, .footer__copy { grid-column: span 1; }
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.legal-content h1 { font-size: 2rem; }
.legal-content h2 { font-size: 1.8rem; }
.legal-content p { margin-bottom: 1em; }