@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --primary-color: #0f172a;
  --secondary-color: #003381;
  --accent-color: #003381;
  --accent-hover: #002960;
  --bg-main: #ffffff;
  --bg-alt: #f8fafc;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

*, ::after, ::before, body {
  box-sizing: border-box;
}

html {
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  background-color: var(--bg-main);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  padding-right: 24px;
  padding-left: 24px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
}

@media (min-width: 768px) {
  .header__content {
    justify-content: space-between;
  }
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--primary-color);
}

.logo .highlight {
  color: var(--secondary-color);
  margin-left: 4px;
}

.header-nav__list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}

@media (min-width: 768px) {
  .header-nav__list {
    display: flex;
  }
}

.header-nav__link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.header-nav__link:hover {
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  padding: 120px 0 60px;
  background-color: var(--bg-alt);
  border-bottom: 1px solid var(--border-color);
}

@media (min-width: 992px) {
  .hero {
    padding: 140px 0 80px;
  }
}

.hero__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero__heading { order: 1; }
.hero__form { order: 2; width: 100%; }
.hero__body { order: 3; }

@media (min-width: 992px) {
  .hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
      "heading form"
      "body form";
    align-items: start;
    row-gap: 16px;
    column-gap: 48px;
  }
  .hero__heading { grid-area: heading; }
  .hero__body { grid-area: body; }
  .hero__form { grid-area: form; margin-top: 0; }
}

.hero__subtitle {
  color: var(--secondary-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.hero__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--primary-color);
  letter-spacing: -1px;
}

.hero__title span {
  display: block;
}

.hero__title .text-gradient {
  color: var(--secondary-color);
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 48px;
  }
}

.hero__desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero__desc {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

/* Form Container */
.form-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .form-card {
    padding: 32px;
  }
}

/* Features */
.features {
  padding: 80px 0;
  background: #ffffff;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  font-size: 48px;
  display: block;
  margin: 0 auto 20px;
  color: var(--secondary-color);
  line-height: 1;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--primary-color);
}

.feature-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Checkmark List */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--text-main);
  font-weight: 500;
}

.check-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-color);
  flex-shrink: 0;
}

/* Footer */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 40px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  gap: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .footer-nav {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

@media (min-width: 992px) {
  .footer-nav {
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
  }
}

.footer-nav li {
  list-style: none;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: block;
  transition: color 0.2s ease;
  line-height: 1.8;
}

.footer-nav a:hover {
  color: var(--secondary-color);
}

.footer__disclosures p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Inner Pages Adaptation */
.main-content {
  padding: 120px 0 80px;
  min-height: 80vh;
}

.main-content .row {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 992px) {
  .main-content .row {
    flex-direction: row;
    align-items: flex-start;
  }
  .main-content .col--text {
    flex: 1;
  }
  .main-content .col--short-form {
    width: 380px;
    flex-shrink: 0;
  }
}

/* About Us Page */
.about-hero {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 0;
  border-bottom: 2px solid var(--border-color);
}

.about-hero h1 {
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.about-tagline {
  font-size: 18px;
  color: var(--secondary-color);
  margin: 0;
  font-weight: 600;
}

@media (min-width: 768px) {
  .about-hero h1 {
    font-size: 48px;
  }
}

.about-intro {
  margin-bottom: 60px;
  text-align: center;
}

.intro-text {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .intro-text {
    font-size: 18px;
  }
}

.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .about-values {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-alt);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.value-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--primary-color);
}

.value-item p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.about-mission {
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.05), rgba(13, 71, 161, 0.02));
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 48px 32px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .about-mission {
    padding: 60px 48px;
  }
}

.about-mission h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 28px;
  color: var(--primary-color);
}

.mission-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.mission-content p:last-child {
  margin-bottom: 0;
}

.wysiwyg {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.wysiwyg h1 {
  font-size: 32px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.wysiwyg h2, .wysiwyg h3, .wysiwyg h4 {
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
}

.wysiwyg a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.wysiwyg ul, .wysiwyg ol {
  padding-left: 20px;
  margin-bottom: 24px;
}

.wysiwyg li {
  margin-bottom: 10px;
}

.card, .short-form {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
}

.short-form__header {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--primary-color);
  text-align: center;
}

.short-form .select, .short-form .input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: #ffffff;
  color: var(--text-main);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: all 0.2s;
}

.short-form .select:focus, .short-form .input:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-size: 14px;
}

.privacy-table th, .privacy-table td {
  border: 1px solid var(--border-color);
  padding: 12px;
  text-align: left;
}

.privacy-table th {
  background: var(--bg-alt);
  color: var(--primary-color);
  font-weight: 600;
}

/* Contact Page */
.contact-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 0;
}

.contact-header h1 {
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--primary-color);
}

.contact-header p {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0;
}

@media (min-width: 768px) {
  .contact-header h1 {
    font-size: 48px;
  }
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .contact-methods {
    grid-template-columns: repeat(3, 1fr);
  }
}

.method-card {
  background: #ffffff;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.method-card:hover {
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.method-icon {
  font-size: 44px;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.method-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--primary-color);
}

.method-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 20px;
  line-height: 1.6;
}

.method-link {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.method-link:hover {
  color: var(--accent-hover);
}

/* FAQ Accordion */
.faq-header {
  margin-bottom: 60px;
  text-align: center;
  padding: 40px 0;
  border-bottom: 2px solid var(--border-color);
}

.faq-header h1 {
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--primary-color);
}

.faq-intro {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 16px;
  line-height: 1.7;
}

.faq-subtitle {
  font-size: 16px;
  color: var(--secondary-color);
  margin: 0;
  font-weight: 600;
}

@media (min-width: 768px) {
  .faq-header h1 {
    font-size: 48px;
  }
}

.faq-accordion {
  margin-bottom: 60px;
}

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.accordion-item:hover {
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  background: #ffffff;
  border: none;
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  transition: all 0.2s ease;
}

.accordion-header:hover {
  background: var(--bg-alt);
}

.accordion-header.active {
  background: var(--secondary-color);
  color: #ffffff;
}

.accordion-title {
  text-align: left;
  flex: 1;
}

.accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  background: var(--bg-alt);
  padding: 24px;
  display: none;
}

.accordion-content.active {
  display: block;
}

.accordion-content p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 12px;
  line-height: 1.7;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

.accordion-content ol {
  margin: 0;
  padding-left: 20px;
}

.accordion-content li {
  margin-bottom: 8px;
  color: var(--text-muted);
}

/* Why Choose Us Page */
.why-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 0;
  border-bottom: 2px solid var(--border-color);
}

.why-header h1 {
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--primary-color);
}

.why-header p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .why-header h1 {
    font-size: 48px;
  }
}

.why-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .why-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-block {
  padding: 32px 24px;
  background: var(--bg-alt);
  border-radius: 12px;
  border-left: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.feature-block:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.feature-block h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--primary-color);
}

.feature-block p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.why-closing {
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.05), rgba(13, 71, 161, 0.02));
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 48px 32px;
}

.why-closing h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--primary-color);
}

.why-closing p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* FAQ Accordion */
.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-header h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 12px;
}

.faq-header .faq-intro {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 12px;
  line-height: 1.6;
}

.faq-header .faq-subtitle {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.08);
}

.accordion-header {
  width: 100%;
  padding: 18px;
  border: none;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  font-family: inherit;
}

.accordion-item.active .accordion-header {
  background: rgba(13, 71, 161, 0.03);
}

.accordion-header:hover {
  background: #f8fafc;
}

.accordion-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  text-align: left;
}

.accordion-icon {
  font-size: 20px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  margin-left: 16px;
  flex-shrink: 0;
  font-weight: bold;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 18px;
  background: #ffffff;
}

.accordion-item.active .accordion-content {
  max-height: 2000px;
  padding: 0 18px 18px;
}

.accordion-content p {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.6;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

.accordion-content ol {
  margin: 12px 0;
  padding-left: 24px;
}

.accordion-content li {
  margin-bottom: 8px;
  color: var(--text-main);
  font-size: 15px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .accordion-item {
    border-radius: 10px;
  }

  .accordion-header {
    padding: 20px;
  }

  .accordion-content {
    padding: 0 20px;
  }

  .accordion-item.active .accordion-content {
    padding: 0 20px 20px;
  }
}

/* Definitions Glossary */
.definitions-header {
  text-align: center;
  margin-bottom: 48px;
}

.definitions-header h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 12px;
}

.definitions-header p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.definitions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .definitions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.definition-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.definition-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.definition-term {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-color);
}

.definition-content {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.6;
  margin: 0;
}

/* Rates & Fees Page */
.rates-header {
  text-align: center;
  margin-bottom: 48px;
}

.rates-header h1 {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.rates-intro {
  font-size: 16px;
  color: var(--text-main);
  max-width: 600px;
  margin: 0 auto 0 auto;
  line-height: 1.6;
}

.rates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .rates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rates-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s ease;
}

.rates-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 16px rgba(0, 51, 129, 0.1);
  transform: translateY(-2px);
}

.rates-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}

.rates-card-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.rates-card-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.rates-card-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-main);
  margin: 0;
}

.rates-disclaimer {
  background: #f5f5f5;
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  border-radius: 4px;
  margin-top: 40px;
}

.rates-disclaimer p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-main);
  margin: 0;
}

@media (max-width: 768px) {
  .rates-header h1 {
    font-size: 24px;
  }

  .rates-intro {
    font-size: 14px;
  }

  .rates-card {
    padding: 16px;
  }

  .rates-card-header h3 {
    font-size: 16px;
  }

  .rates-card-icon {
    font-size: 24px;
  }
}

/* Policy on Responsible Lending */
.policy-header {
  text-align: center;
  margin-bottom: 48px;
}

.policy-header h1 {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.policy-intro {
  font-size: 16px;
  color: var(--text-main);
  max-width: 650px;
  margin: 0 auto 0 auto;
  line-height: 1.6;
}

.policy-sections {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.policy-section {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.policy-section:hover {
  border-color: var(--primary-color);
  box-shadow: 0 6px 12px rgba(0, 51, 129, 0.08);
}

.policy-section-header {
  background: linear-gradient(135deg, rgba(0, 51, 129, 0.03), rgba(0, 51, 129, 0.01));
  padding: 24px;
  border-bottom: 2px solid #e0e0e0;
}

.policy-section-header h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.policy-section-content {
  padding: 24px;
}

.policy-section-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-main);
  margin: 0;
}

@media (max-width: 768px) {
  .policy-header h1 {
    font-size: 24px;
  }

  .policy-intro {
    font-size: 14px;
  }

  .policy-section-header {
    padding: 16px;
  }

  .policy-section-header h2 {
    font-size: 18px;
  }

  .policy-section-content {
    padding: 16px;
  }

  .policy-section-content p {
    font-size: 14px;
  }
}

/* Disclaimer Page */
.disclaimer-header {
  text-align: center;
  margin-bottom: 48px;
}

.disclaimer-header h1 {
  font-size: 32px;
  color: var(--primary-color);
  margin: 0;
}

.disclaimer-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .disclaimer-sections {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.disclaimer-section {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s ease;
}

.disclaimer-section:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 51, 129, 0.08);
}

.disclaimer-section h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 12px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}

.disclaimer-section p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-main);
  margin: 0;
}

.disclaimer-section a {
  color: var(--primary-color);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .disclaimer-header h1 {
    font-size: 24px;
  }

  .disclaimer-section {
    padding: 16px;
  }

  .disclaimer-section h2 {
    font-size: 16px;
  }

  .disclaimer-section p {
    font-size: 13px;
  }
}

/* E-Consent Page */
.econsent-header {
  text-align: center;
  margin-bottom: 40px;
}

.econsent-header h1 {
  font-size: 32px;
  color: var(--primary-color);
  margin: 0 0 12px 0;
}

.econsent-intro {
  font-size: 15px;
  color: var(--text-main);
  margin: 0;
  font-style: italic;
}

.econsent-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .econsent-sections {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.econsent-section {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s ease;
}

.econsent-section:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 51, 129, 0.08);
}

.econsent-section h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 12px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}

.econsent-section p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-main);
  margin: 0;
}

.econsent-consent {
  grid-column: 1 / -1;
  background: rgba(0, 51, 129, 0.03);
}

.econsent-consent h2 {
  color: var(--primary-color);
}

.econsent-consent p {
  font-size: 13px;
}

@media (max-width: 768px) {
  .econsent-header h1 {
    font-size: 24px;
  }

  .econsent-section {
    padding: 16px;
  }

  .econsent-section h2 {
    font-size: 16px;
  }

  .econsent-section p {
    font-size: 13px;
  }

  .econsent-consent {
    grid-column: 1;
  }
}

/* Privacy Policy & Terms of Use Tables */
.card table.rates-table,
.card table.privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.card table.rates-table th,
.card table.privacy-table th,
.card table.rates-table td,
.card table.privacy-table td {
  padding: 16px;
  text-align: left;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  line-height: 1.6;
}

.card table.rates-table th,
.card table.privacy-table th {
  background: rgba(0, 51, 129, 0.05);
  color: var(--primary-color);
  font-weight: 600;
}

.card table.rates-table tr:hover,
.card table.privacy-table tr:hover {
  background-color: rgba(0, 51, 129, 0.02);
}

.card table.rates-table tbody tr:nth-child(even),
.card table.privacy-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.card table.rates-table tbody tr:nth-child(even):hover,
.card table.privacy-table tbody tr:nth-child(even):hover {
  background-color: rgba(0, 51, 129, 0.03);
}

@media (max-width: 768px) {
  .card table.rates-table,
  .card table.privacy-table {
    font-size: 12px;
  }

  .card table.rates-table th,
  .card table.privacy-table th,
  .card table.rates-table td,
  .card table.privacy-table td {
    padding: 12px;
  }
}




/* Logo Badge Styling */
.logo-badge {
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-right: 12px;
  border-radius: 12px;
  background: var(--secondary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo__txt {
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* Brand Icon Styling */
.brand-icon {
  font-size: 24px;
  margin-right: 8px;
  display: inline-block;
}

.header h1 .brand-icon {
  margin-right: 12px;
  font-size: 32px;
}



/* CashUSA Brand Style */
.hero__title { letter-spacing: -0.5px; font-weight: 800; }
.feature-card { border: 1px solid #e0e0e0; background: #f9f9f9; }
.feature-card:hover { border-color: var(--secondary-color); background: white; box-shadow: 0 4px 12px rgba(0, 51, 129, 0.1); }
/* Size SVG icons properly */
.feature-icon[stroke],
.feature-icon svg {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
}
