/* =========================================================
   DEED POLL DIRECT
   MASTER STYLESHEET
   ========================================================= */


/* =========================================================
   1. GLOBAL
   ========================================================= */

* {
  box-sizing: border-box;
}

:root {
  --navy: #102a43;
  --navy-light: #183f67;
  --blue: #245b9e;
  --blue-light: #eaf2fb;

  --gold: #c69a3b;
  --gold-dark: #a97c26;
  --gold-light: #fbf5e8;

  --green: #3d8b62;
  --green-light: #edf7f1;

  --ink: #263648;
  --muted: #526579;

  --border: #d7e1eb;

  --shadow: 0 5px 16px rgba(16, 42, 67, 0.10);
}

html {
  width: 100%;
}

body {
  width: 100%;
  margin: 0;

  font-family: Arial, Helvetica, sans-serif;

  color: var(--ink);
  background: #ffffff;

  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: var(--blue);
}

p {
  margin-top: 0;
}


/* =========================================================
   2. TOP CONTACT BAR
   ========================================================= */

.topbar {
  width: 100%;

  padding: 8px 20px;

  background: linear-gradient(
    90deg,
    var(--navy),
    var(--blue)
  );

  color: #ffffff;

  border-bottom: 3px solid var(--gold);

  font-size: 14px;
}

.topbar-inner {
  width: 100%;
  max-width: 1100px;

  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;
}

.topbar a {
  color: #ffffff;
  text-decoration: none;
}

.topbar a:hover {
  color: #f4dfad;
}


/* =========================================================
   3. HEADER
   ========================================================= */

header {
  width: 100%;

  background: #ffffff;

  border-bottom: 1px solid #dddddd;
}

.header-inner {
  width: 100%;
  max-width: 1100px;

  margin: 0 auto;
  padding: 18px 20px;

  display: flex;
  align-items: center;

  gap: 20px;
}

.logo {
  display: block;

  width: 100px;
  height: 100px;

  object-fit: contain;

  flex: 0 0 auto;
}

.brand {
  min-width: 0;
}

.brand h1 {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 32px;
  line-height: 1.2;

  color: var(--navy);
}

.brand p {
  margin: 5px 0 0;

  color: var(--muted);

  font-size: 15px;
  line-height: 1.5;
}


/* =========================================================
   4. NAVIGATION
   ========================================================= */

nav {
  width: 100%;

  background: var(--navy);

  border-bottom: 4px solid var(--gold);
}

.nav-inner {
  width: 100%;
  max-width: 1100px;

  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.nav-inner a {
  display: flex;
  align-items: center;

  padding: 13px 15px;

  color: #ffffff;

  text-decoration: none;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;

  border-right: 1px solid rgba(255,255,255,.15);
}

.nav-inner a:first-child {
  border-left: 1px solid rgba(255,255,255,.15);
}

.nav-inner a:hover,
.nav-inner a.active {
  background: var(--blue);
}


/* =========================================================
   5. HERO
   ========================================================= */

.hero {
  width: 100%;

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(198,154,59,.16),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #eef5fc 0%,
      #ffffff 62%,
      #fbf5e8 100%
    );

  border-bottom: 1px solid #dbe5ef;
}

.hero-inner {
  width: 100%;
  max-width: 1100px;

  margin: 0 auto;
  padding: 50px 20px;
}

.hero h2 {
  margin: 0 0 12px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 50px;
  line-height: 1.15;

  color: var(--navy);
}

.hero h2::after {
  content: "";

  display: block;

  width: 72px;
  height: 4px;

  margin-top: 14px;

  background: var(--gold);

  border-radius: 4px;
}

.hero .lead {
  max-width: 850px;

  margin: 20px 0 0;

  color: #40566d;

  font-size: 20px;
  line-height: 1.6;
}


/* =========================================================
   6. MAIN CONTENT
   ========================================================= */

.main {
  width: 100%;
  max-width: 1000px;

  margin: 0 auto;

  padding: 45px 20px 60px;
}

.main h2 {
  margin: 0 0 20px;

  font-family: Georgia, "Times New Roman", serif;

  color: var(--navy);

  font-size: 30px;
  line-height: 1.25;
}

.main h3 {
  color: var(--navy);
}

.main p {
  margin: 0 0 20px;
}

.main a {
  color: var(--blue);
  font-weight: 700;
}


/* =========================================================
   7. GENERAL CONTENT CARDS
   ========================================================= */

.contact-box,
.content-box,
.info-card,
.content-card {
  margin: 28px 0;

  padding: 24px;

  background: var(--blue-light);

  border: 1px solid #cad9e8;
  border-top: 4px solid var(--blue);

  border-radius: 8px;
}

.contact-box strong {
  display: block;

  margin-bottom: 6px;

  color: var(--navy);

  font-size: 18px;
}


/* =========================================================
   8. PRIVATE SERVICE NOTICE
   ========================================================= */

.notice {
  margin: 30px 0 0;

  padding: 20px 22px;

  background: var(--gold-light);

  border: 1px solid #ead9ae;
  border-left: 5px solid var(--gold);

  border-radius: 0 8px 8px 0;

  color: #493d25;
}

.notice strong {
  color: #493d25;
}


/* =========================================================
   9. APPLICATION INTRO
   ========================================================= */

.application-intro {
  margin: 25px 0 30px;

  padding: 22px 25px;

  background: linear-gradient(
    135deg,
    #e5f1fd,
    #f7fbff
  );

  border: 1px solid #bfd4e9;
  border-left: 6px solid var(--blue);

  border-radius: 8px;
}

.application-intro p {
  margin: 0;

  font-size: 17px;
}


/* =========================================================
   10. APPLICATION STEP 1
   ========================================================= */

.application-card {
  width: 100%;

  margin: 28px 0;
  padding: 28px;

  display: flex;
  align-items: flex-start;

  gap: 22px;

  background: linear-gradient(
    135deg,
    #dcecff 0%,
    #f5faff 100%
  );

  border: 1px solid #abc8e5;
  border-left: 8px solid var(--blue);

  border-radius: 10px;

  box-shadow: var(--shadow);
}

.application-number {
  flex: 0 0 54px;

  width: 54px;
  height: 54px;

  display: flex;
  justify-content: center;
  align-items: center;

  background: var(--blue);

  color: #ffffff;

  border-radius: 50%;

  font-size: 23px;
  font-weight: 700;

  box-shadow: 0 3px 8px rgba(16,42,67,.20);
}

.application-content {
  flex: 1;
  min-width: 0;
}

.application-content h3 {
  margin: 0 0 10px;

  font-family: Georgia, "Times New Roman", serif;

  color: var(--navy);

  font-size: 24px;
  line-height: 1.3;
}

.application-content p {
  margin: 0 0 10px;
}

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


/* =========================================================
   11. APPLICATION STEP 2
   ========================================================= */

.application-card-gold {
  background: linear-gradient(
    135deg,
    #fff0c9 0%,
    #fffaf0 100%
  );

  border-color: #dfc485;

  border-left: 8px solid var(--gold);
}

.application-card-gold .application-number {
  background: var(--gold);

  color: var(--navy);
}


/* =========================================================
   12. APPLY ONLINE CTA
   ========================================================= */

.application-cta,
.apply-box {
  width: 100%;

  margin: 28px 0;
  padding: 30px;

  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--blue) 100%
  );

  border: 1px solid #173e67;
  border-bottom: 5px solid var(--gold);

  border-radius: 10px;

  box-shadow: 0 6px 18px rgba(16,42,67,.18);

  color: #ffffff;
}

.application-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 30px;
}

.application-cta h2,
.apply-box h2,
.main .application-cta h2,
.main .apply-box h2 {
  margin: 0 0 8px;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 27px;
}

.application-cta p,
.apply-box p {
  margin: 0;

  color: #e5edf5;
}

.application-cta > div {
  flex: 1;
}


/* =========================================================
   13. APPLY BUTTON
   ========================================================= */

.application-button,
.apply-button {
  display: inline-block;

  padding: 14px 27px;

  background: var(--gold);

  color: var(--navy) !important;

  border: 2px solid #d9b65f;

  border-radius: 6px;

  text-decoration: none !important;

  font-size: 15px;
  font-weight: 700;

  line-height: 1.2;

  box-shadow: 0 4px 10px rgba(0,0,0,.18);

  transition:
    background .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.application-button:hover,
.apply-button:hover {
  background: #ddb85d;

  color: var(--navy) !important;

  transform: translateY(-2px);

  box-shadow: 0 6px 14px rgba(0,0,0,.22);
}


/* =========================================================
   14. WHAT HAPPENS NEXT
   ========================================================= */

.info-box {
  width: 100%;

  margin: 28px 0;
  padding: 30px;

  background: linear-gradient(
    135deg,
    #e4f5eb 0%,
    #f8fcf9 100%
  );

  border: 1px solid #b6d8c3;
  border-left: 8px solid var(--green);

  border-radius: 10px;

  box-shadow: var(--shadow);
}

.info-box h2,
.main .info-box h2 {
  margin: 0 0 18px;

  color: #286246;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 27px;
}

.info-box p {
  margin: 0 0 14px;
}

.info-box p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   15. FINAL APPLICATION CTA
   ========================================================= */

.info-box + .application-cta {
  background: linear-gradient(
    135deg,
    #8a6621 0%,
    #c69a3b 100%
  );

  border-color: #ad812c;

  border-bottom: 5px solid var(--navy);
}

.info-box + .application-cta h2 {
  color: #ffffff;
}

.info-box + .application-cta p {
  color: #ffffff;
}

.info-box + .application-cta .application-button {
  background: #ffffff;

  border-color: #ffffff;

  color: var(--navy) !important;
}

.info-box + .application-cta .application-button:hover {
  background: var(--blue-light);
}


/* =========================================================
   16. OLD STEP CLASSES
   Supports older pages
   ========================================================= */

.step {
  width: 100%;

  display: flex;
  align-items: flex-start;

  gap: 20px;

  margin: 28px 0;
  padding: 25px;

  background: var(--blue-light);

  border: 1px solid #cad9e8;
  border-left: 6px solid var(--blue);

  border-radius: 8px;
}

.step-number {
  flex: 0 0 46px;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--blue);

  color: #ffffff;

  border-radius: 50%;

  font-weight: 700;
  font-size: 20px;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin: 0 0 10px;
}


/* =========================================================
   17. FAQ
   ========================================================= */

.faq-list {
  margin: 30px 0;
}

.faq-item {
  margin-bottom: 12px;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 7px;

  overflow: hidden;
}

.faq-item summary {
  padding: 17px 20px;

  background: var(--blue-light);

  color: var(--navy);

  font-weight: 700;

  cursor: pointer;
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--border);
}

.faq-answer {
  padding: 20px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   18. CONTACT PAGE
   ========================================================= */

.contact-grid {
  width: 100%;

  display: grid;

  grid-template-columns:
    minmax(0, .85fr)
    minmax(0, 1.35fr);

  gap: 32px;

  align-items: start;
}

.contact-details {
  padding: 26px;

  background: var(--blue-light);

  border: 1px solid #cad9e8;
  border-top: 5px solid var(--blue);

  border-radius: 8px;
}

.contact-form {
  padding: 28px;

  background: #ffffff;

  border: 1px solid #e1e5e9;
  border-top: 5px solid var(--gold);

  border-radius: 8px;

  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;

  margin-bottom: 6px;

  color: var(--navy);

  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;

  margin: 0 0 18px;

  padding: 12px 13px;

  background: #ffffff;

  border: 1px solid #bfcbd7;

  border-radius: 5px;

  color: var(--ink);

  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 170px;

  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(36,91,158,.15);

  border-color: var(--blue);
}


/* =========================================================
   19. SUBMIT BUTTON
   ========================================================= */

.submit-button {
  display: inline-block;

  min-width: 165px;

  padding: 14px 25px;

  border: 0;

  border-radius: 5px;

  background: var(--navy);

  color: #ffffff;

  font-size: 15px;
  font-weight: 700;

  cursor: pointer;

  box-shadow: 0 3px 8px rgba(16,42,67,.18);
}

.submit-button:hover {
  background: var(--blue);
}


/* =========================================================
   20. FORM STATUS
   ========================================================= */

.form-status {
  display: none;

  margin-bottom: 22px;
  padding: 15px 18px;

  border-radius: 6px;

  font-weight: 700;
}

.form-status.success {
  display: block;

  background: #eaf7ee;

  border: 1px solid #9fd3ae;
  border-left: 5px solid #3d8b53;

  color: #245c34;
}

.form-status.error {
  display: block;

  background: #fff0f0;

  border: 1px solid #e1aaaa;
  border-left: 5px solid #b84040;

  color: #8a2424;
}


/* =========================================================
   21. NEW FOOTER
   ========================================================= */

.dp-footer {
  width: 100%;

  background: linear-gradient(
    135deg,
    var(--navy),
    var(--navy-light)
  );

  color: #ffffff;

  border-top: 4px solid var(--gold);
}


/* FORCE THREE COLUMNS ON DESKTOP */

.dp-footer-columns {
  width: calc(100% - 40px);
  max-width: 1100px;

  margin: 0 auto;
  padding: 38px 0;

  display: grid !important;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(0, 1fr)
    minmax(0, 1fr) !important;

  column-gap: 70px;

  align-items: start;
}

.dp-footer-column {
  display: block !important;

  width: 100% !important;
  min-width: 0;

  margin: 0 !important;
  padding: 0 !important;
}

.dp-footer-logo {
  display: block;

  width: 65px;
  height: auto;

  margin: 0 0 15px;
}

.dp-footer-column p {
  max-width: 310px;

  margin: 0 0 12px;

  color: #d6e0e9;

  font-size: 13px;
  line-height: 1.6;
}

.dp-footer-column h3 {
  margin: 0 0 17px;

  color: #ffffff;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 15px;
  font-weight: 700;

  letter-spacing: .4px;
}

.dp-footer-column ul {
  margin: 0 !important;
  padding: 0 !important;

  list-style: none !important;
}

.dp-footer-column li {
  margin: 0 0 10px !important;
  padding: 0 !important;

  list-style: none !important;

  font-size: 13px;
  line-height: 1.5;
}

.dp-footer-column a {
  color: #ffffff !important;

  text-decoration: none !important;

  font-weight: 400 !important;
}

.dp-footer-column a:hover {
  color: var(--gold) !important;
}


/* =========================================================
   22. OLD FOOTER SUPPORT
   This keeps older HTML pages working
   ========================================================= */

footer:not(.dp-footer) {
  width: 100%;

  background: linear-gradient(
    135deg,
    var(--navy),
    var(--navy-light)
  );

  color: #ffffff;

  border-top: 4px solid var(--gold);
}

footer:not(.dp-footer) .footer-inner {
  width: calc(100% - 40px);
  max-width: 1100px;

  margin: 0 auto;
  padding: 32px 0;

  color: #ffffff;
}

footer:not(.dp-footer) a {
  color: #ffffff;

  text-decoration: none;
}


/* =========================================================
   23. OLD THREE-COLUMN FOOTER SUPPORT
   ========================================================= */

.site-footer {
  width: 100%;

  background: linear-gradient(
    135deg,
    var(--navy),
    var(--navy-light)
  );

  color: #ffffff;

  border-top: 4px solid var(--gold);
}

.site-footer .footer-inner {
  width: calc(100% - 40px);
  max-width: 1100px;

  margin: 0 auto;
  padding: 38px 0;

  display: grid !important;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(0, 1fr)
    minmax(0, 1fr) !important;

  gap: 70px;

  align-items: start;
}

.site-footer .footer-col {
  display: block !important;

  width: 100% !important;

  min-width: 0;
}

.site-footer .footer-logo {
  display: block;

  width: 65px;
  height: auto;

  margin: 0 0 15px;
}

.site-footer .footer-col p {
  max-width: 310px;

  margin: 0 0 12px;

  color: #d6e0e9;

  font-size: 13px;
}

.site-footer .footer-col h3 {
  margin: 0 0 17px;

  color: #ffffff;

  font-size: 15px;
}

.site-footer .footer-col ul {
  margin: 0 !important;
  padding: 0 !important;

  list-style: none !important;
}

.site-footer .footer-col li {
  margin: 0 0 10px;

  list-style: none !important;

  font-size: 13px;
}

.site-footer .footer-col a {
  color: #ffffff !important;

  text-decoration: none !important;

  font-weight: 400 !important;
}


/* =========================================================
   24. FOOTER BOTTOM
   ========================================================= */

.dp-footer-bottom,
.site-footer .footer-bottom {
  width: 100%;

  border-top: 1px solid rgba(255,255,255,.15);
}

.dp-footer-bottom-inner,
.site-footer .footer-bottom-inner {
  width: calc(100% - 40px);
  max-width: 1100px;

  margin: 0 auto;
  padding: 14px 0;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;

  color: #cbd6e1;

  font-size: 12px;
}

.dp-footer-bottom a,
.site-footer .footer-bottom a {
  color: #ffffff !important;

  text-decoration: none !important;
}
/* =========================================================
   DEED POLL DIRECT
   MASTER NAVIGATION
   ========================================================= */

.site-nav {
  width:100%;
  background:#102a43;
  border-bottom:3px solid #c69a3b;
}

.site-nav .nav-inner {
  width:calc(100% - 40px);
  max-width:1200px;
  margin:0 auto;

  display:flex;
  align-items:stretch;
  justify-content:center;
}

.site-nav .nav-inner a {
  display:flex;
  align-items:center;
  justify-content:center;

  padding:16px 18px;

  color:#ffffff;
  text-decoration:none;

  font-family:Arial,Helvetica,sans-serif;
  font-size:14px;
  font-weight:600;
  line-height:1.3;
  text-align:center;

  transition:
    background .2s ease,
    color .2s ease;
}

.site-nav .nav-inner a:hover {
  background:#245b9e;
}

.site-nav .nav-inner a.active {
  background:#245b9e;
  color:#ffffff;
  box-shadow:inset 0 -4px 0 #c69a3b;
}


/* MOBILE MENU BAR IS HIDDEN ON DESKTOP */

.mobile-nav-bar {
  display:none;
}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

@media (max-width:800px) {

  .site-nav {
    border-bottom:3px solid #c69a3b;
  }

  /*
     MENU BAR
  */

  .mobile-nav-bar {
    min-height:60px;
    padding:0 18px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    background:#102a43;

    color:#ffffff;

    font-family:Arial,Helvetica,sans-serif;
    font-size:15px;
    font-weight:700;
    letter-spacing:.5px;
  }


  /*
     HAMBURGER BUTTON
  */

  .menu-toggle {
    width:48px;
    height:48px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;

    margin:0;
    padding:0;

    background:#245b9e;

    border:1px solid rgba(255,255,255,.25);
    border-radius:6px;

    cursor:pointer;
  }

  .menu-toggle span {
    display:block;

    width:23px;
    height:2px;

    background:#ffffff;

    border-radius:2px;

    transition:
      transform .25s ease,
      opacity .25s ease;
  }


  /*
     MENU CLOSED
  */

  .site-nav .nav-inner {
    display:none;

    width:100%;
    max-width:none;
    margin:0;

    background:#102a43;
  }


  /*
     MENU OPEN
  */

  .site-nav.menu-open .nav-inner {
    display:block;
  }


  /*
     MOBILE LINKS
  */

  .site-nav .nav-inner a {
    width:100%;
    min-height:58px;

    box-sizing:border-box;

    display:flex;
    justify-content:flex-start;
    align-items:center;

    padding:15px 20px;

    border-top:1px solid rgba(255,255,255,.12);

    color:#ffffff;

    font-size:16px;
    font-weight:600;

    text-align:left;
  }

  .site-nav .nav-inner a:hover {
    background:#245b9e;
  }

  .site-nav .nav-inner a.active {
    background:#245b9e;
    border-left:5px solid #c69a3b;
    box-shadow:none;
    padding-left:15px;
  }


  /*
     TURN HAMBURGER INTO X
  */

  .site-nav.menu-open .menu-toggle span:nth-child(1) {
    transform:translateY(7px) rotate(45deg);
  }

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

  .site-nav.menu-open .menu-toggle span:nth-child(3) {
    transform:translateY(-7px) rotate(-45deg);
  }

}


/* =========================================================
   25. TABLETS
   ========================================================= */

@media (max-width: 900px) {

  .hero h2 {
    font-size: 42px;
  }

  .nav-inner {
    padding: 0;
  }

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

  .dp-footer-columns,
  .site-footer .footer-inner {
    column-gap: 35px;
  }

}


/* =========================================================
   26. MOBILE
   ========================================================= */

@media (max-width: 650px) {

  .topbar {
    padding: 9px 16px;
  }

  .topbar-inner {
    display: block;
  }

  .topbar-inner > div + div {
    margin-top: 3px;
  }


  /* HEADER */

  .header-inner {
    padding: 15px 18px;

    gap: 14px;
  }

  .logo {
    width: 72px;
    height: 72px;
  }

  .brand h1 {
    font-size: 25px;
  }

  .brand p {
    font-size: 13px;
  }


  /* NAV */

  .nav-inner {
    display: block;
  }

  .nav-inner a {
    width: 100%;

    padding: 12px 18px;

    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .nav-inner a:first-child {
    border-left: 0;
  }


  /* HERO */

  .hero-inner {
    padding: 35px 20px;
  }

  .hero h2 {
    font-size: 36px;
  }

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


  /* MAIN */

  .main {
    padding: 35px 18px 50px;
  }

  .main h2 {
    font-size: 27px;
  }


  /* APPLICATION */

  .application-card,
  .step {
    padding: 22px 18px;

    gap: 15px;
  }

  .application-number,
  .step-number {
    flex-basis: 44px;

    width: 44px;
    height: 44px;

    font-size: 19px;
  }

  .application-content h3 {
    font-size: 21px;
  }

  .application-cta {
    padding: 24px 20px;

    flex-direction: column;
    align-items: flex-start;

    gap: 20px;
  }

  .application-button,
  .apply-button,
  .submit-button {
    width: 100%;

    text-align: center;
  }

  .info-box {
    padding: 24px 20px;
  }


  /* CONTACT */

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

    gap: 22px;
  }

  .contact-details,
  .contact-form {
    padding: 22px 18px;
  }


  /* NEW FOOTER - ONE COLUMN ONLY ON MOBILE */

  .dp-footer-columns {
    width: calc(100% - 36px);

    padding: 32px 0;

    display: grid !important;

    grid-template-columns: 1fr !important;

    gap: 30px !important;
  }

  .dp-footer-column {
    width: 100% !important;
  }


  /* OLD FOOTER - ONE COLUMN ONLY ON MOBILE */

  .site-footer .footer-inner {
    width: calc(100% - 36px);

    padding: 32px 0;

    display: grid !important;

    grid-template-columns: 1fr !important;

    gap: 30px !important;
  }


  /* FOOTER BOTTOM */

  .dp-footer-bottom-inner,
  .site-footer .footer-bottom-inner {
    width: calc(100% - 36px);

    padding: 15px 0;

    flex-direction: column;
    align-items: flex-start;

    gap: 4px;
  }

}