:root {
  --navy: #00263a;
  --navy-2: #061f2d;
  --gold: #bc955c;
  --gold-2: #a67c52;
  --paper: #f5f5f3;
  --white: #ffffff;
  --graphite: #1a1a1a;
  --muted: #6b7280;
  --line: rgba(0, 38, 58, 0.12);
  --line-gold: rgba(188, 149, 92, 0.34);
  --shadow: 0 28px 80px rgba(0, 38, 58, 0.1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", Arial, sans-serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--graphite);
  font-family: var(--font-sans);
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.55s var(--ease), border-color 0.55s var(--ease), box-shadow 0.55s var(--ease);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 38, 58, 0.08);
  box-shadow: 0 14px 40px rgba(0, 38, 58, 0.06);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--paper);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.brand-text strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.2;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
}

.desktop-nav a,
.mobile-nav a {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.35s var(--ease);
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(0, 38, 58, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  display: none;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.45s var(--ease), background 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-2);
  box-shadow: 0 18px 45px rgba(188, 149, 92, 0.2);
}

.btn-secondary {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(188, 149, 92, 0.07);
}

.btn-light {
  border-color: rgba(245, 245, 243, 0.44);
  color: var(--paper);
}

.btn-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 46px;
  height: 1px;
  background: currentColor;
}

.hero,
.page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
  padding: 144px 0 96px;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-media::after,
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245, 245, 243, 0.98), rgba(245, 245, 243, 0.86) 46%, rgba(245, 245, 243, 0.44));
}

.page-hero.dark {
  color: var(--paper);
  background: var(--navy);
}

.page-hero.dark .page-hero-media img {
  opacity: 0.45;
}

.page-hero.dark .page-hero-media::after {
  background: linear-gradient(90deg, rgba(0, 38, 58, 0.96), rgba(0, 38, 58, 0.82) 48%, rgba(0, 38, 58, 0.4));
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-hero-content.wide {
  max-width: 860px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.02;
}

.dark h1,
.dark h2,
.dark h3,
.navy-band h2,
.navy-band h3 {
  color: var(--paper);
}

h1 {
  margin-top: 34px;
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.96;
}

.page-hero h1 {
  font-size: clamp(2.75rem, 7vw, 5rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

p {
  margin: 0;
}

.lead {
  margin-top: 34px;
  max-width: 720px;
  color: #4b5563;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.85;
}

.dark .lead,
.navy-band .lead {
  color: rgba(245, 245, 243, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 48px;
}

.hero-stats,
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 5vw, 72px);
  margin-top: 72px;
}

.stat strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 12px;
  color: #5f6773;
  font-size: 0.94rem;
  line-height: 1.45;
}

.dark .stat span,
.navy-band .stat span {
  color: rgba(245, 245, 243, 0.72);
}

.section {
  padding: clamp(78px, 10vw, 132px) 0;
  background: var(--paper);
}

.section.white {
  background: var(--white);
}

.section.alt {
  background: #efefeb;
}

.section-header {
  max-width: 780px;
  margin-bottom: clamp(56px, 7vw, 92px);
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header.center .eyebrow {
  justify-content: center;
}

.section-header.center .eyebrow::after {
  content: "";
  width: 46px;
  height: 1px;
  background: currentColor;
}

.section-header h2 {
  margin-top: 28px;
}

.section-header p {
  margin-top: 26px;
  color: #596273;
  font-size: 1.08rem;
  line-height: 1.85;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: clamp(28px, 4vw, 58px);
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.feature,
.soft-card,
.service-card,
.contact-card,
.article-card {
  position: relative;
  border-top: 1px solid var(--line-gold);
  padding-top: 28px;
}

.feature .number {
  display: block;
  margin-bottom: 22px;
  color: rgba(188, 149, 92, 0.55);
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
}

.feature p,
.soft-card p,
.service-card p,
.article-card p {
  margin-top: 16px;
  color: #5f6773;
}

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border: 1px solid rgba(0, 38, 58, 0.1);
  background: rgba(255, 255, 255, 0.68);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(188, 149, 92, 0.5);
  box-shadow: var(--shadow);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--gold);
  font-weight: 700;
}

.quote-panel,
.navy-band {
  background: var(--navy);
  color: var(--paper);
}

.quote-panel {
  padding: clamp(44px, 6vw, 78px);
}

.quote-panel p {
  color: rgba(245, 245, 243, 0.75);
  font-size: 1.08rem;
}

.image-frame {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 38, 58, 0.18), transparent 46%);
}

.steps {
  counter-reset: step;
}

.step {
  counter-increment: step;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 1px solid var(--line);
}

.step::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2.35rem;
}

.rights-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pill {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: #4b5563;
}

.pill::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--gold);
}

.faq {
  max-width: 860px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
}

.faq-button span {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.15;
}

.faq-button i {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  position: relative;
}

.faq-button i::before,
.faq-button i::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 12px;
  height: 1px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}

.faq-button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.3s var(--ease);
}

.faq-item.is-open .faq-button i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.faq-answer p {
  max-width: 720px;
  padding: 0 0 30px;
  color: #5f6773;
}

.cta-final {
  position: relative;
  padding: clamp(96px, 13vw, 160px) 0;
  background: var(--navy);
  color: var(--paper);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  opacity: 0.13;
  will-change: transform;
}

.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 38, 58, 0.97) 30%, rgba(0, 38, 58, 0.84));
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.cta-text .eyebrow {
  color: var(--gold);
}

.cta-text h2 {
  margin-top: 22px;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  line-height: 0.96;
  color: var(--paper);
}

.cta-text p {
  margin-top: 28px;
  color: rgba(245, 245, 243, 0.72);
  font-size: 1.08rem;
  line-height: 1.85;
}

.cta-action-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
}

.cta-action-wrap .btn-primary {
  font-size: 1.06rem;
  padding: 18px 40px;
  white-space: nowrap;
}

.cta-trust {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(245, 245, 243, 0.6);
  font-size: 0.88rem;
}

.cta-trust span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
}

@media (max-width: 1020px) {
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-action-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .cta-action-wrap {
    flex-direction: column;
    gap: 28px;
  }

  .cta-action-wrap .btn-primary {
    width: 100%;
    text-align: center;
  }
}

.site-footer {
  background: var(--navy);
  color: var(--paper);
  border-top: 1px solid rgba(245, 245, 243, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.1fr;
  gap: clamp(36px, 6vw, 78px);
  padding: clamp(72px, 9vw, 118px) 0;
}

.footer-grid h3 {
  font-size: 2.4rem;
}

.footer-grid h4 {
  margin: 0 0 28px;
  color: var(--paper);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a,
.footer-grid li {
  color: rgba(245, 245, 243, 0.68);
  font-size: 0.94rem;
}

.footer-grid ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(245, 245, 243, 0.12);
  color: rgba(245, 245, 243, 0.55);
  font-size: 0.78rem;
}

.floating-whatsapp {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.42);
  transform: translateY(0);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  animation: waPulse 2.8s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55);
  animation: none;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.42); }
  50% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.42), 0 0 0 10px rgba(37, 211, 102, 0.14); }
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(0, 38, 58, 0.16);
  background: #fff;
  padding: 15px 16px;
  color: var(--graphite);
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(188, 149, 92, 0.12);
}

.map-card {
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(0, 38, 58, 0.9), rgba(0, 38, 58, 0.72)),
    url("https://d2xsxph8kpxj0f.cloudfront.net/310519663243552719/93yooHzUULuGKjgVabuLee/office-interior-aiBGvxtbBmLXLCaEBHmfsY.webp") center/cover;
  color: var(--paper);
}

.map-card h3 {
  color: var(--paper);
}

.map-card p {
  color: rgba(245, 245, 243, 0.74);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 999;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 16px;
}

.skip-link:focus {
  top: 16px;
}

@media (max-width: 1020px) {
  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-panel {
    display: block;
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    transition: max-height 0.45s var(--ease);
  }

  .site-header.is-open .mobile-panel {
    max-height: calc(100vh - 80px);
  }

  .mobile-nav {
    display: grid;
    gap: 22px;
    padding: 24px 0 34px;
  }

  .grid-3,
  .grid-4,
  .footer-grid,
  .editorial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats,
  .trust-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1320px);
  }

  .brand-text {
    display: none;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding: 126px 0 72px;
  }

  h1 {
    margin-top: 28px;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .editorial-grid,
  .rights-list,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    padding: 28px;
  }

  .image-frame {
    min-height: 320px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

/* ── Brand logo (nav) ─────────────────────────────────────── */
.brand-logo {
  height: 38px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.12));
  transition: opacity 0.3s var(--ease);
}

.brand:hover .brand-logo {
  opacity: 0.82;
}

/* ── Footer logo ──────────────────────────────────────────── */
.footer-logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 22px;
}

/* ── Footer bottom links ──────────────────────────────────── */
.footer-bottom a {
  color: rgba(245, 245, 243, 0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s var(--ease);
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ── Blog post card extras ────────────────────────────────── */
.post-category {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-date {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.82rem;
}

/* ── Additional reveal variants ───────────────────────────── */
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ── Prose (blog post body) ───────────────────────────────── */
.prose {
  max-width: 780px;
  margin-inline: auto;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #374151;
}

.prose h2 {
  margin-top: 56px;
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
}

.prose h3 {
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
}

.prose p {
  margin-top: 22px;
}

.prose ul,
.prose ol {
  margin: 22px 0;
  padding-left: 28px;
}

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

.prose strong {
  color: var(--navy);
  font-weight: 600;
}

.prose blockquote {
  margin: 36px 0;
  padding: 28px 34px;
  border-left: 3px solid var(--gold);
  background: rgba(188, 149, 92, 0.06);
  color: #4b5563;
  font-style: italic;
}

/* ── Responsive brand logo ────────────────────────────────── */
@media (max-width: 720px) {
  .brand-logo {
    height: 30px;
  }

  .footer-logo {
    height: 36px;
  }
}
