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

:root {
  --app-blue: #255be3;
  --app-blue-dark: #0b2e6b;
  --app-blue-darker: #081b40;
  --app-red: #ff3c28;
  --app-ink: #141414;
  --app-gray: #5b6470;
  --app-line: #e3e7ec;
  --app-band-blue: #dcebfc;
  --app-band-gray: #f2f4f7;
  --app-radius: 10px;
}

.app-page {
  margin: 0;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--app-ink);
  background: #fff;
}
.app-page * {
  box-sizing: border-box;
}
.app-page button,
.app-page input,
.app-page select,
.app-page textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
.app-page button {
  cursor: pointer;
}
.app-wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.app-page a {
  text-decoration: none;
}
.app-page ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.app-page img {
  max-width: 100%;
  display: block;
}

/* ===== Utility bar ===== */
.app-utility {
  background: #fff;
  border-bottom: 1px solid var(--app-line);
  font-size: 13px;
}
.app-utility .app-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px 24px;
}
.app-utility-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-utility-left .app-logo-mark {
  width: 32px;
  height: 32px;
  margin-top: 2px;
}
.app-utility-left .fdic {
  color: var(--app-gray);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.app-utility-left .fdic i {
  font-size: 15px;
  color: var(--app-blue);
}
.app-utility-right {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.app-utility-right a {
  color: var(--app-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.app-utility-right a:hover {
  color: var(--app-blue);
}
.app-utility-right i {
  font-size: 17px;
  color: var(--app-ink);
}

/* ===== Primary nav ===== */
.app-nav {
  background: var(--app-band-gray);
  border-bottom: 1px solid var(--app-line);
  position: relative;
  z-index: 50;
}
.app-nav .app-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 46px;
  gap: 24px;
}
.app-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.app-nav-item {
  position: relative;
}
.app-nav-link {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--app-blue);
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.app-nav-link i {
  font-size: 15px;
  transition: transform 0.15s;
}
.app-nav-item:hover .app-nav-link {
  color: var(--app-blue-dark);
}
.app-nav-item:hover .app-nav-link i {
  transform: rotate(180deg);
}
.app-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--app-line);
  border-radius: var(--app-radius);
  box-shadow: 0 16px 32px rgba(20, 20, 20, 0.12);
  min-width: 220px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.15s;
}
.app-nav-item:hover .app-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.app-dropdown a {
  display: block;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--app-ink);
  border-radius: 6px;
}
.app-dropdown a:hover {
  background: var(--app-band-gray);
  color: var(--app-blue);
}
.app-nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.app-help-link {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--app-blue);
}
.app-help-link:hover {
  color: var(--app-blue-dark);
}
.app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 24px;
  transition: all 0.15s;
  white-space: nowrap;
}
.app-btn-primary {
  background: var(--app-blue);
  color: #fff;
}
.app-btn-primary:hover {
  background: var(--app-blue-dark);
  color: #fff;
}
.app-btn-outline {
  border: 1.5px solid var(--app-blue);
  color: var(--app-blue);
}
.app-btn-outline:hover {
  background: var(--app-blue);
  color: #fff;
}
.app-btn-ghost {
  color: var(--app-blue);
  font-weight: 700;
  font-size: 14px;
}
.app-nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 26px;
  color: var(--app-ink);
}

/* ===== Hero ===== */
.app-hero {
  background: var(--app-band-gray);
  padding: 40px 0;
}
.app-hero .app-wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: start;
}
.app-hero-content {
  display: flex;
  align-items: center;
  gap: 32px;
}
.app-hero-text {
  flex: 1.2;
  min-width: 0;
}
.app-hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
  font-weight: 700;
  color: var(--app-gray);
  margin-bottom: 10px;
  display: block;
}
.app-hero-text h1 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--app-ink);
}
.app-hero-text p {
  font-size: 14.5px;
  color: var(--app-gray);
  margin: 0 0 20px;
  max-width: 420px;
}
.app-hero-image {
  flex: 1;
  min-width: 0;
}
.app-hero-image img {
  width: 100%;
  max-width: 280px;
}

.app-signon {
  background: #fff;
  border: 1px solid var(--app-line);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(11, 46, 107, 0.08);
  padding: 24px;
}
.app-signon-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.app-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--app-ink);
  margin-bottom: 6px;
}
.app-field .app-input-wrap {
  position: relative;
}
.app-field input {
  width: 100%;
  border: 1.5px solid var(--app-line);
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 14px;
  outline: 0;
}
.app-field .app-input-wrap input {
  padding-right: 38px;
}
.app-field input:focus {
  border-color: var(--app-blue);
}
.app-field .toggle-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: var(--app-gray);
  cursor: pointer;
  font-size: 16px;
}
.app-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--app-ink);
  font-weight: 500;
  font-size: 13.5px;
  margin-bottom: 18px;
}
.app-signon .app-btn {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  border-radius: 4px;
}
.app-signon-links {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--app-gray);
}
.app-signon-links a {
  color: var(--app-blue);
  font-weight: 600;
}
.app-signon-alt {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--app-line);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--app-gray);
}
.app-signon-alt i {
  color: var(--app-blue);
  font-size: 18px;
  background: var(--app-band-blue);
  padding: 8px;
  border-radius: 6px;
}
.app-signon-alt a {
  color: var(--app-blue);
  font-weight: 600;
}

/* ===== Sub-page hero (breadcrumb + title, no sign-on form) ===== */
.app-breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--app-line);
  padding: 12px 0;
  font-size: 12.5px;
}
.app-breadcrumb .app-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--app-gray);
}
.app-breadcrumb a {
  color: var(--app-gray);
  font-weight: 600;
}
.app-breadcrumb a:hover {
  color: var(--app-blue);
}
.app-breadcrumb span.current {
  color: var(--app-ink);
  font-weight: 600;
}
.app-breadcrumb i {
  font-size: 14px;
}

.app-page-hero {
  background: var(--app-band-gray);
  padding: 48px 0;
}
.app-page-hero .app-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}
.app-page-hero-text span.app-hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
  font-weight: 700;
  color: var(--app-blue);
  margin-bottom: 10px;
  display: block;
}
.app-page-hero-text h1 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--app-ink);
}
.app-page-hero-text p {
  font-size: 16px;
  color: var(--app-gray);
  margin: 0 0 24px;
  max-width: 460px;
}
.app-page-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.app-page-hero-image img {
  border-radius: 16px;
  width: 100%;
}

/* ===== Stat strip ===== */
.app-stats {
  padding: 36px 0;
  border-bottom: 1px solid var(--app-line);
}
.app-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.app-stat b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--app-blue);
  margin-bottom: 6px;
}
.app-stat span {
  font-size: 13.5px;
  color: var(--app-gray);
  font-weight: 500;
}

/* ===== Feature list (icon + text rows) ===== */
.app-feature-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.app-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.app-feature-item .icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--app-band-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--app-blue);
}
.app-feature-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
}
.app-feature-item p {
  font-size: 13.5px;
  color: var(--app-gray);
  margin: 0;
}

/* ===== Closing CTA band ===== */
.app-cta-band {
  background: var(--app-blue-darker);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.app-cta-band h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 12px;
}
.app-cta-band p {
  font-size: 15px;
  color: #c7d5ee;
  margin: 0 0 26px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.app-cta-band .app-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Quick links ===== */
.app-quicklinks {
  padding: 36px 0;
  border-bottom: 1px solid var(--app-line);
}
.app-quicklinks-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.app-quicklink {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 14px 8px;
  border-radius: 12px;
  transition: background 0.15s;
}
.app-quicklink:hover {
  background: var(--app-band-gray);
}
.app-quicklink .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--app-band-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--app-blue);
}
.app-quicklink span {
  font-size: 13px;
  font-weight: 600;
  color: var(--app-ink);
}

/* ===== Section heading ===== */
.app-section {
  padding: 64px 0;
}
.app-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.app-section-head span.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  color: var(--app-blue);
}
.app-section-head h2,
.app-section-head h1 {
  font-size: 30px;
  font-weight: 800;
  margin: 10px 0 0;
  line-height: 1.2;
}

/* ===== 3-card grid ===== */
.app-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.app-card {
  border: 1px solid var(--app-line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 18px;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.app-card:hover {
  box-shadow: 0 20px 40px rgba(20, 20, 20, 0.1);
  transform: translateY(-4px);
}
.app-card span.tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--app-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}
.app-card-img {
  height: 170px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 16px;
}
.app-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.app-card-body h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
.app-card-body p {
  font-size: 13.5px;
  color: var(--app-gray);
  margin: 0;
  flex: 1;
}
.app-card-body .app-btn {
  align-self: flex-start;
  padding: 9px 0;
}

/* ===== Promo bands ===== */
.app-band {
  padding: 64px 0;
}
.app-band .app-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.app-band-dark {
  background: var(--app-blue-darker);
  color: #fff;
}
.app-band-dark .app-band-eyebrow {
  color: #8fb4ff;
}
.app-band-dark h2 {
  color: #fff;
}
.app-band-dark p {
  color: #c7d5ee;
}
.app-band-light {
  background: #fff;
}
.app-band-gray {
  background: var(--app-band-gray);
}
.app-band-blue {
  background: var(--app-band-blue);
}
.app-band-blue .app-band-media img {
  background: #0b0d12;
  padding: 24px;
}
.app-band-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  color: var(--app-blue);
  display: block;
  margin-bottom: 12px;
}
.app-band h2 {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 14px;
}
.app-band p {
  font-size: 15px;
  color: var(--app-gray);
  margin: 0 0 24px;
  max-width: 440px;
}
.app-band-media img {
  border-radius: 16px;
  width: 100%;
}
.app-band .reverse {
  order: 2;
}

/* ===== Footer ===== */
.app-footer {
  background: var(--app-ink);
  color: #c9cbcf;
  padding: 56px 0 0;
  font-size: 14px;
}
.app-footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2b2c2e;
  flex-wrap: wrap;
}
.app-footer-brand img {
  height: 34px;
  margin-bottom: 16px;
}
.app-footer-brand p {
  max-width: 280px;
  margin: 12px 0 0;
  color: #9da0a6;
}
.app-footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  flex: 1;
  max-width: 760px;
}
.app-footer-col h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 14px;
}
.app-footer-col a {
  color: #9da0a6;
  display: block;
  padding: 6px 0;
  font-size: 13.5px;
}
.app-footer-col a:hover {
  color: #fff;
}
.app-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 14px;
}
.app-footer-social {
  display: flex;
  gap: 14px;
}
.app-footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #232426;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.app-footer-social a:hover {
  background: var(--app-blue);
}
.app-footer-legal {
  padding: 20px 0 28px;
  border-top: 1px solid #2b2c2e;
  color: #7a7d82;
  font-size: 12px;
  line-height: 1.7;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .app-hero .app-wrap {
    grid-template-columns: 1fr;
  }
  .app-hero-content {
    flex-direction: column;
  }
  .app-hero-image {
    display: flex;
    justify-content: center;
  }
  .app-band .app-wrap {
    grid-template-columns: 1fr;
  }
  .app-band .reverse {
    order: 0;
  }
  .app-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .app-quicklinks-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .app-footer-cols {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .app-nav-links,
  .app-help-link {
    display: none;
  }
  .app-nav-toggle {
    display: block;
  }
  .app-page-hero .app-wrap {
    grid-template-columns: 1fr;
  }
  .app-page-hero-image {
    order: -1;
  }
  .app-stats-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .app-utility-left .fdic {
    display: none;
  }
  .app-utility-right span {
    display: none;
  }
  .app-hero-text h1 {
    font-size: 26px;
  }
  .app-signon-fields {
    grid-template-columns: 1fr;
  }
  .app-cards-grid {
    grid-template-columns: 1fr;
  }
  .app-quicklinks-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .app-footer-top {
    flex-direction: column;
  }
  .app-footer-cols {
    grid-template-columns: 1fr 1fr;
  }
  .app-page-hero-text h1 {
    font-size: 28px;
  }
}

/* Mobile nav drawer */
.app-mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid var(--app-line);
  padding: 8px 24px 16px;
}
.app-mobile-nav.open {
  display: flex;
}
.app-mobile-nav a {
  padding: 12px 0;
  font-weight: 600;
  color: var(--app-ink);
  border-bottom: 1px solid var(--app-line);
}
.app-mobile-nav .app-btn {
  margin-top: 12px;
}

/* ===== Content pages (about, faqs, contact, insurance, legal) ===== */
.app-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--app-gray);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.app-prose {
  max-width: 820px;
  margin: 0 auto;
}
.app-prose > h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 40px 0 14px;
  color: var(--app-ink);
}
.app-prose > h2:first-child {
  margin-top: 0;
}
.app-prose > h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--app-ink);
}
.app-prose > h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--app-ink);
}
.app-prose > h4:first-child {
  margin-top: 0;
}
.app-prose p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--app-gray);
  margin: 0 0 16px;
}
.app-prose a {
  color: var(--app-blue);
  font-weight: 600;
}
.app-prose ul.app-bullets {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 18px;
}
.app-prose ul.app-bullets li {
  list-style: disc;
  font-size: 15px;
  line-height: 1.75;
  color: var(--app-gray);
  margin-bottom: 8px;
}

/* FAQ accordion (native details/summary) */
.app-faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-faq-item {
  border: 1px solid var(--app-line);
  border-radius: 10px;
}
.app-faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--app-ink);
  display: flex;
  align-items: center;
  gap: 16px;
}
.app-faq-item > summary::-webkit-details-marker {
  display: none;
}
.app-faq-item > summary > i {
  margin-left: auto;
  font-size: 22px;
  color: var(--app-blue);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.app-faq-item[open] > summary > i {
  transform: rotate(180deg);
}
.app-faq-answer {
  padding: 0 22px 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--app-gray);
}

/* Content + sidebar split */
.app-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.app-sidebar-card {
  border: 1px solid var(--app-line);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 24px;
}
.app-sidebar-card h4 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 14px;
}
.app-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app-sidebar-list a {
  font-weight: 700;
  color: var(--app-blue);
  font-size: 14px;
}
.app-sidebar-list p {
  margin: 3px 0 0;
  font-size: 13px;
  color: var(--app-gray);
  line-height: 1.6;
}
.app-sidebar-quote {
  border-left: 3px solid var(--app-blue);
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--app-gray);
  font-style: italic;
}
.app-sidebar-cta {
  background: var(--app-band-gray);
  border-radius: 12px;
  padding: 22px;
}
.app-sidebar-cta p {
  font-size: 13.5px;
  color: var(--app-gray);
  line-height: 1.7;
  margin: 0 0 12px;
}
.app-sidebar-cta h4 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 14px;
}

/* Tag pills */
.app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.app-tags span {
  background: var(--app-band-gray);
  color: var(--app-gray);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}

/* Check-list (icon + strong + text) */
.app-check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}
.app-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--app-gray);
}
.app-check-list li i {
  color: var(--app-blue);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.app-check-list li strong {
  color: var(--app-ink);
}

/* Contact form */
.app-form {
  border: 1px solid var(--app-line);
  border-radius: 12px;
  padding: 26px;
}
.app-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.app-form-grid .full {
  grid-column: 1 / -1;
}
.app-form input,
.app-form textarea {
  width: 100%;
  border: 1.5px solid var(--app-line);
  border-radius: 6px;
  padding: 11px 13px;
  font-size: 14px;
  font-family: inherit;
  outline: 0;
}
.app-form input:focus,
.app-form textarea:focus {
  border-color: var(--app-blue);
}
.app-map {
  margin-top: 32px;
}
.app-map iframe {
  width: 100%;
  border: 0;
  border-radius: 12px;
  display: block;
}

@media (max-width: 991px) {
  .app-split {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .app-form-grid {
    grid-template-columns: 1fr;
  }
}
