:root {
  --navy: #061a34;
  --navy-2: #09264a;
  --blue: #0c4b91;
  --gold: #d69a2d;
  --gold-light: #f0c36a;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --text: #14223a;
  --muted: #617086;
  --line: rgba(6, 26, 52, 0.12);
  --shadow: 0 20px 50px rgba(6, 26, 52, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 20, 42, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.brand-mark {
  width: 70px;
  height: auto;
}

.brand-text {
  display: grid;
  line-height: 1.05;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.brand-text span:first-child {
  font-size: 18px;
}

.brand-text span:last-child {
  font-size: 12px;
}

.main-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a,
.footer-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.footer-nav a:hover {
  color: var(--gold-light);
}

.main-nav a.active {
  position: relative;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 2px;
  background: var(--gold);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: transparent;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(15, 90, 164, 0.38), transparent 34%),
    linear-gradient(135deg, #031225 0%, #072044 48%, #031225 100%);
  color: var(--white);
}

.hero {
  min-height: 690px;
  display: flex;
  align-items: center;
}

.hero-overlay,
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.55;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  align-items: center;
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(44px, 6vw, 76px);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.03em;
}

.hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #061a34;
  box-shadow: 0 18px 34px rgba(214, 154, 45, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.hero-image-wrap {
  position: relative;
}

.hero-image {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid rgba(214, 154, 45, 0.55);
  border-radius: 32px;
  z-index: -1;
}

.hero-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: min(360px, calc(100% - 56px));
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(5, 20, 42, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.hero-card span {
  display: block;
  color: var(--gold-light);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}

.hero-card strong {
  display: block;
  font-size: 16px;
}

.stats-section {
  margin-top: -66px;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 170px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-icon {
  flex: 0 0 66px;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
}

.stat-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-card span {
  color: var(--muted);
  font-size: 14px;
}

.stat-card strong {
  display: block;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 46px;
  line-height: 0.98;
  margin: 3px 0 12px;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading p:last-child {
  margin: 18px auto 0;
  max-width: 640px;
  color: var(--muted);
}

.focus-preview {
  background: linear-gradient(180deg, var(--white), var(--off-white));
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.focus-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--navy);
}

.focus-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.focus-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(4, 16, 34, 0.92) 100%);
}

.focus-card span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
}

.focus-card span::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: var(--gold);
  margin-top: 10px;
}

.focus-card:hover img {
  transform: scale(1.06);
}

.about-band {
  padding-top: 70px;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.map-panel {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 45%, rgba(214, 154, 45, 0.14), transparent 10%),
    radial-gradient(circle at 62% 35%, rgba(12, 75, 145, 0.15), transparent 11%),
    linear-gradient(135deg, #f4f8fc, #ffffff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-panel::before {
  content: "";
  position: absolute;
  inset: 36px;
  background-image: radial-gradient(circle, rgba(9, 38, 74, 0.22) 1.2px, transparent 1.2px);
  background-size: 13px 13px;
  opacity: 0.65;
  border-radius: 50%;
}

.map-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(214, 154, 45, 0.18);
}

.dot-one { left: 26%; top: 47%; }
.dot-two { left: 52%; top: 42%; }
.dot-three { left: 62%; top: 31%; }
.dot-four { left: 76%; top: 48%; }

.map-line {
  position: absolute;
  height: 1px;
  background: rgba(214, 154, 45, 0.7);
  transform-origin: left center;
}

.line-one { width: 250px; left: 28%; top: 49%; transform: rotate(-14deg); }
.line-two { width: 300px; left: 29%; top: 50%; transform: rotate(8deg); }

.map-panel span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 266px 10px 0 22px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--navy);
  font-weight: 800;
  border-bottom: 2px solid var(--gold);
}

.cta {
  padding: 70px 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta h2 {
  max-width: 720px;
  font-size: clamp(32px, 4vw, 50px);
}

.site-footer {
  background: #041225;
  color: rgba(255, 255, 255, 0.74);
  padding: 40px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
}

.footer-brand .brand-mark {
  width: 58px;
}

.footer-brand .brand-text span:first-child {
  font-size: 15px;
}

.footer-brand .brand-text span:last-child {
  font-size: 10px;
}

.footer-inner p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px;
    background: rgba(5, 20, 42, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 13px 10px;
  }

  .main-nav a.active::after {
    display: none;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .stats-section {
    margin-top: 0;
    padding-top: 28px;
  }

  .cta-inner,
  .footer-inner {
    flex-direction: column;
    display: flex;
    align-items: flex-start;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand-mark {
    width: 54px;
  }

  .brand-text span:first-child {
    font-size: 14px;
  }

  .brand-text span:last-child {
    font-size: 9px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 54px 0;
    gap: 34px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .stat-card {
    align-items: flex-start;
    padding: 22px;
  }

  .stat-card strong {
    font-size: 38px;
  }

  .section {
    padding: 68px 0;
  }

  .map-panel span {
    display: none;
  }
}

/* About page */
.page-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
  padding: 86px 0;
}

.page-hero-copy h1 {
  font-size: clamp(42px, 5.5vw, 72px);
}

.page-hero-card {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.page-hero-card span {
  display: block;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-hero-card strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1.15;
}

.page-hero-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.about-profile {
  background: var(--white);
}

.profile-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.profile-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.profile-image-wrap {
  position: relative;
}

.profile-image-wrap::before {
  content: "";
  position: absolute;
  inset: 22px 22px -22px -22px;
  border: 1px solid rgba(214, 154, 45, 0.55);
  border-radius: 30px;
  z-index: -1;
}

.profile-image {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.approach-section {
  background: linear-gradient(180deg, var(--off-white), var(--white));
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.approach-card {
  min-height: 280px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.approach-card .stat-icon {
  margin-bottom: 22px;
}

.approach-card h3 {
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 12px;
}

.approach-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

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

.global-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.global-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.region-list span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(214, 154, 45, 0.12);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-stats {
  margin-top: 0;
  padding: 76px 0;
  background: linear-gradient(180deg, var(--off-white), var(--white));
}

@media (max-width: 980px) {
  .page-hero-grid,
  .profile-grid,
  .global-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .page-hero {
    min-height: auto;
  }

  .page-hero-grid {
    padding: 58px 0;
    gap: 32px;
  }

  .page-hero-card {
    padding: 24px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .profile-image {
    min-height: 300px;
  }
}

/* Investment Focus page */
.investment-hero .page-hero-card strong {
  font-size: 24px;
}

.investment-stats {
  background: linear-gradient(180deg, var(--white), var(--off-white));
}

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

.four-stats .stat-card {
  min-height: 230px;
  align-items: flex-start;
  flex-direction: column;
}

.four-stats .stat-card strong {
  font-size: 38px;
}

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

.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.sector-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.sector-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.sector-content {
  padding: 28px;
}

.sector-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sector-content h3 {
  color: var(--navy);
  font-size: 28px;
  margin-bottom: 14px;
}

.sector-content h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 14px;
  background: var(--gold);
}

.sector-content p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.investment-band {
  background: linear-gradient(180deg, var(--off-white), var(--white));
}

.investment-band-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.investment-band-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

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

.investment-principles div {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.investment-principles span {
  display: block;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.investment-principles strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  line-height: 1.1;
}

@media (max-width: 1080px) {
  .four-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .sector-grid,
  .investment-band-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .four-stats {
    grid-template-columns: 1fr;
  }

  .sector-card img {
    height: 230px;
  }

  .sector-content {
    padding: 22px;
  }

  .sector-content h3 {
    font-size: 24px;
  }

  .investment-principles {
    grid-template-columns: 1fr;
  }
}

/* Contact page */
.contact-hero .sub-hero-image img {
  object-position: center;
}

.contact-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(214, 154, 45, 0.08), transparent 28%),
    var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: start;
}

.contact-form-card,
.contact-info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form-card {
  padding: 38px;
}

.contact-form-card h2 {
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-note {
  margin: 0 0 26px;
  color: var(--muted);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(6, 26, 52, 0.16);
  border-radius: 14px;
  background: var(--off-white);
  color: var(--text);
  font: inherit;
  padding: 15px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(214, 154, 45, 0.14);
}

.full-field,
.contact-form .btn {
  grid-column: 1 / -1;
}

.contact-form .btn {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.contact-info-card {
  overflow: hidden;
}

.contact-info-block {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 30px;
  border-bottom: 1px solid var(--line);
}

.contact-info-block:last-child {
  border-bottom: 0;
}

.contact-info-block .eyebrow {
  margin-bottom: 8px;
}

.contact-info-block h3 {
  color: var(--navy);
  font-size: 26px;
  margin-bottom: 10px;
}

.contact-info-block p:last-child {
  margin: 0;
  color: var(--muted);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 12px 28px rgba(6, 26, 52, 0.18);
}

.contact-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-form-card {
    padding: 26px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-info-block {
    grid-template-columns: 1fr;
    padding: 26px;
  }
}


/* PHP contact form status */
.form-hidden {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.form-status {
  display: none;
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 600;
}

.form-success {
  color: #1f5132;
  background: #eaf6ee;
  border: 1px solid #b7dfc2;
}

.form-error {
  color: #7a271a;
  background: #fdeceb;
  border: 1px solid #f4b8b0;
}

body.form-sent .form-success,
body.form-error-page .form-error {
  display: block;
}
