@import url(https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap);

:root {
  --bg-body: #f9fafb;
  --bg-white: #ffffff;
  --text-main: #374151; /* Gray 700 */
  --text-heading: #111827; /* Gray 900 */
  --text-meta: #6b7280; /* Gray 500 */
  --color-primary: #2563eb; /* Blue 600 */
  --color-primary-hover: #1d4ed8; /* Blue 700 */
  --bg-cta: #eff6ff; /* Blue 50 */
  --border-color: #e5e7eb; /* Gray 200 */

  --font-heading: Lora, Georgia, "Times New Roman", serif;
  --font-body: Lora, Georgia, "Times New Roman", serif;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 0.5em;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 0;
  /* position: sticky; */
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.site-header:not(.sticky-mobile) {
  font-size: 20px;
}

.sticky-mobile {
  position: relative;
}

.site-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 60px;
}

.site-header .logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: #000;
}
.main-margin {
  padding-top: 40px !important;
}
.site-header .logo2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: #000;
}

.site-header .header-date {
  font-size: 16px;
  color: var(--text-meta);
  font-weight: 400;
  font-family: "Source Sans 3", sans-serif;
}

/* Main Content Area */
.main-content {
  padding: 0px 0 0px;
  background-color: white;
}

.article-container {
  max-width: 850px; /* Narrower width for optimal reading */
  /* background: var(--bg-white); */
  padding: 10px 60px;
  border-radius: 8px;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 14px;
  color: var(--text-meta);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.breadcrumbs a {
  color: #27559b;
  text-decoration: underline;
}
.breadcrumbs span {
  color: var(--text-heading);
  font-weight: 600;
}
.access-header {
  font-size: 30px !important;
  color: #1d212be6;
}
.access-para-header h3 {
  font-size: 20px !important;
}
.access-li {
  font-size: 16px !important;
  color: #1d212be6;
}
/* Article Header */
.article-header {
  margin-bottom: 12px;
}

.article-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1d212b;
}

div.article-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #788191;
  font-weight: 400;
  font-family: Lora, Georgia, "Times New Roman", serif !important;
}

.article-meta .author {
  color: var(--text-heading);
  font-weight: 600;
}

/* Hero Image */
.hero-image {
  margin-bottom: 40px;
}

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

figcaption {
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  color: var(--text-meta);
  margin-top: 8px;
  text-align: left;
  font-style: normal;
}

/* Article Body Typography */
.article-body p {
  margin-bottom: 24px;
}

.article-body p.intro-text {
  font-family: "Source Sans 3", sans-serif;
  font-size: 20px;
  color: #1a2a3a;
  margin-bottom: 24px;
  margin-top: 36px;
}

.intro-text {
  font-size: 20px;
}

p.intro-text1 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 17px;
  color: #1a2a3a;
  margin-bottom: 24px;
  margin-top: 36px;
}

.article-body hr {
  border: 0;
  height: 1px;
  background-color: #e5e7eb;
  margin: 24px 0;
}

.article-body h2 {
  font-size: 26px;
  margin-top: 32px;
  margin-bottom: 16px;
}

/* Inline Images */
.inline-image {
  margin: 32px 0;
}
.inline-image img {
  border-radius: 6px;
}
.inline-image.right {
  float: right;
  width: 45%;
  margin: 8px 0 24px 32px;
}
.inline-image.full img {
  width: 100%;
}

/* Testimonial Block */
.testimonial-block {
  display: flex;
  gap: 24px;
  background-color: var(--bg-body);
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
  margin: 40px 0;
}

.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-content .quote {
  font-style: italic;
  font-size: 18px;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.testimonial-content .author-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-meta);
  margin: 0;
}

/* CTA Box */
.cta-box {
  background-color: var(--bg-cta);
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  margin: 56px 0 32px;
}

.cta-box h3 {
  font-size: 28px;
  color: #1e3a8a; /* Blue 900 */
  margin-bottom: 16px;
}

.cta-box p {
  margin-bottom: 24px;
  color: #1e40af; /* Blue 800 */
}

.btn-primary {
  display: inline-block;
  background-color: var(--color-primary);
  color: white;
  font-weight: 600;
  font-size: 18px;
  padding: 16px 40px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px -1px rgba(37, 99, 235, 0.5);
}

.urgency-text {
  font-size: 14px !important;
  color: #b91c1c !important; /* Red 700 */
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 0 !important;
}

.font-source {
  font-family: "Source Sans 3", sans-serif;
  color: black;
}

/* Custom Alert Boxes */
.why-now-box {
  background-color: #cc8f331a;
  border-left: 4px solid #e7b008;
  padding: 24px 32px;
  margin: 32px 0;
}

.why-now-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-heading);
  margin-top: 0;
  margin-bottom: 36px;
}

.why-now-box p {
  font-family: "Source Sans 3", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #000;
  margin: 0;
}

.system-quote-box p {
  font-size: 17px;
  color: #6a7181;
  font-weight: 400;
}

.eligibility-box {
  background-color: #f5f4ef;
  border: 1px solid #e1e0db;
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  margin: 32px 0 48px;
}

.eligibility-box h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-heading);
  margin-top: 0;
  margin-bottom: 50px;
}

.eligibility-btn {
  display: inline-block;
  background-color: #22344f;
  color: #ffffff;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s;
}

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

.header-text {
  font-size: 24px;
  color: #111827;
}
.paragraph-text {
  font-size: 17px;
  font-family: "Source Sans 3", sans-serif;
  color: #1d212b;
}

.eligibility-btn:hover {
  background-color: #141e2f;
  color: white;
  text-decoration: none;
}

/* Section Divider */
.section-divider {
  border: 0;
  height: 1px;
  background-color: #e5e7eb;
  margin: 48px 0;
}

.stats-box {
  background-color: #fbf8f1;
  border: 1px solid #eaddc0;
  padding: 32px 24px;
  text-align: center;
  margin: 40px 0;
  border-radius: 4px;
}

.stats-box h4 {
  font-size: 18px;
  margin-bottom: 28px;
}

.stats-box p {
  font-family: "Source Sans 3", sans-serif;
  color: #000;
  margin-bottom: 24px;
  font-size: 17px;
}

.what-to-expect-box {
  background-color: #f2f3f5;
  border-left: 4px solid #1a2a3a;
  padding: 24px 32px;
  margin: 32px 0;
}

.what-to-expect-box h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 19px;
  margin-bottom: 16px;
}

.what-to-expect-box p {
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.final-cta-container {
  text-align: center;
  margin: 48px 0;
}

.final-cta-container-bottom {
  margin-bottom: 40px;
}

/* Lead Widget */
.lead-widget {
  margin-top: 24px;
  margin-bottom: 32px;
}

.submit-steps-box {
  background-color: #f7f9fa;
  border: 1px solid #e2e5e9;
  border-radius: 4px;
  padding: 24px 32px;
  margin: 40px 0;
}
.submit-steps-box h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  margin-bottom: 20px;
  color: #1f2c41;
}
.submit-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header2 {
  font-size: 24px;
}
.para2-text {
  font-size: 16px;
}
.submit-steps-list li {
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #374151;
}
.submit-steps-list li .check-icon {
  color: #e5a43b;
  font-weight: bold;
}

.verification-text {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: var(--text-heading);
  margin: 40px auto 24px;
}

.section-divider {
  border: 0;
  height: 1px;
  background-color: #e5e7eb;
  margin: 48px 0;
}

/* Comments Section */
.comments-widget {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  margin: 48px 0;
  font-family: "Source Sans 3", sans-serif;
}
.comments-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
}
.comments-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a2a3a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.comments-count {
  font-size: 13px;
  color: #6b7280;
}
.comments-write {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  align-items: center;
}
.comments-write-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #1a2a3a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}
.comments-write-input {
  flex: 1;
  background-color: #f2f0ed;
  border: 1px solid #e5e7eb;
  padding: 10px 16px;
  border-radius: 20px;
  color: #9ca3af;
  font-size: 14px;
}
.comments-sort {
  padding: 12px 20px;
  font-size: 13px;
  color: #6b7280;
  border-bottom: 1px solid #e5e7eb;
}
.comments-sort span {
  font-weight: 600;
  cursor: pointer;
}
.comment-list {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.comment-item {
  display: flex;
  gap: 12px;
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.comment-content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.comment-bubble {
  background-color: #f2f0ed;
  padding: 12px 16px;
  border-radius: 12px;
}
.comment-author-row {
  margin-bottom: 4px;
}
.comment-author-name {
  font-weight: 600;
  font-size: 14px;
  color: #111827;
}
.comment-location {
  font-size: 12px;
  color: #6b7280;
  margin-left: 6px;
}
.comment-text {
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}
.comment-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
  font-size: 12px;
  color: #6b7280;
  padding-left: 12px;
}
.comment-actions-left {
  display: flex;
  gap: 12px;
}
.comment-action-btn {
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
}
.comment-action-btn:hover {
  text-decoration: underline;
}
.comment-likes {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #6b7280;
}

/* Author Section */
.author-bio {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
  margin-top: 48px;
}

.author-bio .avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.author-bio h4 {
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-size: 16px;
}

.author-bio p {
  font-size: 14px;
  color: var(--text-meta);
  margin: 0;
}

/* Footer */
.site-footer {
  background-color: #f2f0ed;
  border-top: 1px solid #e5e7eb;
  padding: 80px 0 60px;
  font-family: "Source Sans 3", sans-serif;
}
.footer-access {
  padding-top: 20px;
  padding-bottom: 20px;
}
.new-footer-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  text-align: center;
  margin-bottom: 20px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.footer-subtitle {
  font-size: 14px;
  color: #788191;
  margin: 0;
}

.footer-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  margin: 20px 0 30px;
  text-align: left;
}

.footer-links-col h5 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  color: #1a212b;
  margin-bottom: 10px;
  font-weight: 700;
}

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

.footer-links-col li {
  margin-bottom: 8px;
}

.footer-links-col a {
  color: #27559b;
  font-size: 14px;
  text-decoration: underline;
  line-height: 1;
}

.footer-links-col a:hover {
  color: #1d4ed8;
}

.footer-divider {
  border: 0;
  height: 1px;
  background-color: #e5e7eb;
  margin: 40px 0;
}

.footer-disclaimer-new {
  text-align: left;
}

.footer-disclaimer-new h5 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a212b;
}

.footer-disclaimer-new p {
  font-size: 12px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 20px;
}

.footer-divider-subtle {
  border: 0;
  height: 1px;
  background-color: #cbcfd7;
  margin: 40px 0 32px;
}

.new-copyright {
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
}

/* Clearfix for inline images */
.article-body::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .footer-grid-new {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .article-container {
    padding: 24px 16px;
    border-radius: 0;
    box-shadow: none;
  }

  .article-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .article-body p.intro-text {
    font-size: 17px;
  }

  .inline-image.right {
    float: none;
    width: 100%;
    margin: 24px 0;
  }

  .testimonial-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .site-header {
    position: relative;
  }

  .site-header .header-inner {
    flex-direction: row;
    justify-content: flex-start;
    padding: 12px 16px !important;
  }

  .site-header .header-date {
    display: none;
  }

  .site-header .logo {
    font-size: 20px;
  }

  .breadcrumbs {
    font-size: 12px;
  }

  /* Component Mobile Resizing */
  .why-now-box,
  .eligibility-box,
  .stats-box,
  .what-to-expect-box,
  .submit-steps-box {
    padding: 20px 16px;
    margin: 24px 0;
  }

  .why-now-box p {
    font-size: 16px;
  }

  .system-quote-box p {
    font-size: 16px;
  }

  .what-to-expect-box h4,
  .submit-steps-box h4,
  .stats-box h4,
  .eligibility-box h4 {
    font-size: 17px;
    line-height: 1.4;
  }

  .submit-steps-list li {
    font-size: 14px;
  }

  .eligibility-btn {
    padding: 14px 20px;
    width: 100%;
    text-align: center;
    display: block;
    box-sizing: border-box;
  }

  .comment-item {
    flex-direction: column;
  }

  .comment-avatar {
    margin-bottom: 8px;
  }

  .comment-actions-left {
    gap: 8px;
    flex-wrap: wrap;
  }

  .site-footer {
    padding: 40px 0 24px;
  }

  .verification-text {
    font-size: 16px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

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

/* Terms of Use Page Specific Styles */
.back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: #788191;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.back-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.last-updated {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 40px;
}

.terms-content section {
  margin-bottom: 32px;
}

.terms-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  color: var(--text-heading);
}

.terms-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #1a212b;
}

@media (max-width: 768px) {
  .article-container {
    padding: 20px;
  }

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