/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  background-color: #f9f9f9;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #1a5276;
  text-decoration: underline;
}

a:hover {
  color: #0d3b56;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
  background-color: #ffffff;
  border-bottom: 3px solid #1a5276;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  background-color: #1a5276;
  color: #ffffff;
  font-family: Georgia, serif;
  font-weight: bold;
  font-size: 18px;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
}

.logo-text {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: bold;
  color: #1a5276;
  letter-spacing: -0.3px;
}

/* ===== ADVERTORIAL BAR ===== */
.advertorial-bar {
  background-color: #fff;
  text-align: center;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}

.advertorial-label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  padding: 30px 0 50px;
}

/* ===== ARTICLE META ===== */
.article-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.category-tag {
  background-color: #1a5276;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 3px;
}

.meta-date {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #888;
}

/* ===== ARTICLE TITLE ===== */
.article-title {
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 20px;
}

/* ===== AUTHOR BLOCK ===== */
.author-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #1a5276;
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.author-role {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #888;
}

/* ===== FEATURED IMAGE ===== */
.featured-image {
  margin-bottom: 30px;
}

.featured-image img {
  width: 100%;
  border-radius: 6px;
}

.featured-image figcaption,
.inline-image figcaption {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #888;
  margin-top: 8px;
  font-style: italic;
}

/* ===== ARTICLE BODY ===== */
.article-body p {
  margin-bottom: 20px;
  font-size: 18px;
}

.lead-paragraph {
  font-size: 20px !important;
  line-height: 1.6;
}

.article-body h2 {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 35px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.article-body h3 {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

/* ===== LISTS ===== */
.article-list {
  margin-bottom: 25px;
  padding-left: 25px;
}

.article-list li {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.6;
}

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

.checklist li {
  position: relative;
  padding-left: 30px;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #27ae60;
  font-weight: 700;
  font-size: 18px;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background-color: #eaf2f8;
  border-left: 4px solid #1a5276;
  padding: 25px 25px 25px 25px;
  margin: 30px 0;
  border-radius: 0 6px 6px 0;
}

.highlight-box h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  margin-bottom: 12px;
  color: #1a5276;
}

.highlight-box ul {
  padding-left: 20px;
  margin: 0;
}

.highlight-box li {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 6px;
  color: #333;
}

/* ===== INLINE IMAGE ===== */
.inline-image {
  margin: 30px 0;
}

.inline-image img {
  width: 100%;
  border-radius: 6px;
}

/* ===== CTA BOX ===== */
.cta-box {
  background: linear-gradient(135deg, #1a5276 0%, #1e6f9f 100%);
  border-radius: 10px;
  padding: 35px 30px;
  margin: 35px 0;
  text-align: center;
}

.cta-box h3 {
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 24px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.cta-button {
  display: inline-block;
  background-color: #f39c12;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.cta-button:hover {
  background-color: #e67e22;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
}

.cta-button-large {
  font-size: 20px;
  padding: 18px 50px;
}

.cta-note {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 0 !important;
  margin-top: 12px;
}

.cta-box-secondary {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.final-cta {
  text-align: center;
  margin: 40px 0 20px;
}

/* ===== STEPS ===== */
.steps-block {
  margin: 25px 0 35px;
}

.step {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.step-number {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background-color: #1a5276;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonial {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px !important;
}

.testimonial-author {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a5276;
  margin-bottom: 0 !important;
}

.testimonial-author span {
  font-weight: 400;
  color: #888;
}

/* ===== DISCLAIMER ===== */
.disclaimer-section {
  background-color: #f0f0f0;
  padding: 30px 0;
  border-top: 1px solid #ddd;
}

.disclaimer-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.7;
  color: #777;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: #1a1a1a;
  padding: 30px 0;
}

.footer-inner {
  text-align: center;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #aaa;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-copyright p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #666;
}

/* ===== PAGE CONTENT (Privacy, Terms, Contact) ===== */
.page-content {
  background-color: #ffffff;
  padding: 40px 35px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.page-content h1 {
  font-family: Georgia, serif;
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.last-updated {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #888;
  margin-bottom: 30px;
}

.page-content h2 {
  font-family: Georgia, serif;
  font-size: 22px;
  color: #1a1a1a;
  margin-top: 30px;
  margin-bottom: 10px;
}

.page-content p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #444;
}

.page-content ul {
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-content li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 6px;
  color: #444;
}

/* ===== CONTACT FORM ===== */
.contact-info-block {
  background-color: #eaf2f8;
  padding: 25px;
  border-radius: 6px;
  margin: 25px 0;
}

.contact-info-block h2 {
  margin-top: 0;
}

.contact-form-wrapper {
  margin-top: 30px;
}

.contact-form-wrapper h2 {
  margin-top: 0;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.2s;
  background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a5276;
  background-color: #fff;
}

.submit-button {
  background-color: #1a5276;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 35px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.submit-button:hover {
  background-color: #0d3b56;
}

.form-success {
  background-color: #d5f5e3;
  border: 1px solid #27ae60;
  border-radius: 6px;
  padding: 25px;
  text-align: center;
}

.form-success p {
  color: #1e8449;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .article-title {
    font-size: 26px;
  }

  .article-body h2 {
    font-size: 22px;
  }

  .cta-box {
    padding: 25px 20px;
  }

  .cta-box h3 {
    font-size: 20px;
  }

  .cta-button {
    font-size: 16px;
    padding: 14px 30px;
    display: block;
  }

  .cta-button-large {
    font-size: 17px;
    padding: 15px 30px;
  }

  .logo-text {
    font-size: 17px;
  }

  .page-content {
    padding: 25px 20px;
  }

  .step {
    gap: 12px;
  }

  .highlight-box {
    padding: 20px;
  }

  .footer-links a {
    display: inline-block;
    margin: 5px 10px;
  }
}

@media (max-width: 480px) {
  .article-title {
    font-size: 23px;
  }

  .lead-paragraph {
    font-size: 17px !important;
  }

  .article-body p {
    font-size: 16px;
  }

  .cta-button {
    font-size: 15px;
    padding: 13px 20px;
  }
}
