/* CSS RESET & NORMALIZE */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #fff;
  color: #1B3246;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", Arial, Helvetica, sans-serif;
  color: #1B3246;
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.75rem; line-height: 1.15; }
h2 { font-size: 2rem; line-height: 1.2; }
h3 { font-size: 1.25rem; line-height: 1.25; }
h4, h5, h6 { font-size: 1rem; }

p {
  margin: 0 0 16px 0;
  color: #2f4154;
}
ul, ol {
  margin: 0 0 16px 30px;
  padding: 0;
  color: #2f4154;
}
ul li, ol li {
  margin-bottom: 8px;
  font-size: 1rem;
}
strong { font-weight: 600; }
a {
  color: #1B3246;
  text-decoration: none;
  transition: color 0.15s;
}
a:focus, a:hover {
  color: #F2B705;
  outline: none;
}

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

/* GENERIC CONTAINER */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

/* FLEX LAYOUTS (MANDATORY PATTERNS) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(30,50,70,0.06);
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 20px 0 rgba(30,50,70,0.11);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F5F6F8;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(30,50,70,0.03);
  color: #1B3246;
  min-width: 240px;
  max-width: 500px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(40,60,80,0.12);
  transform: translateY(-2px);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: none;
}
/* END MANDATORY FLEX PATTERNS */

/* HEADER + LOGO, NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 1px 7px rgba(30,50,70,0.06);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}
header img {
  height: 44px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 28px;
  margin-left: 32px;
}
.main-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  color: #1B3246;
  padding: 6px 3px;
  border-radius: 4px;
  transition: color 0.2s, background 0.18s;
  font-weight: 400;
  position: relative;
}
.main-nav a:focus,
.main-nav a:hover {
  background: #F5F6F8;
  color: #F2B705;
}

.cta-btn {
  display: inline-block;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  background: #F2B705;
  color: #1B3246;
  border: none;
  border-radius: 8px;
  padding: 11px 28px;
  margin-left: 24px;
  box-shadow: 0 2px 8px rgba(242, 183, 5, 0.07);
  cursor: pointer;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #1B3246;
  color: #fff;
  box-shadow: 0 6px 24px rgba(27,50,70,0.14);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #1B3246;
  cursor: pointer;
  display: none;
  margin-left: 18px;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
    margin-left: 0;
  }
  .cta-btn {
    margin-left: 14px;
    padding: 10px 18px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    gap: 9px;
  }
  .cta-btn {
    padding: 9px 10px;
    font-size: 0.99rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(245,246,248,0.98);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.7,.2,.25,1);
  box-shadow: 0 2px 16px rgba(27,50,70,0.16);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #1B3246;
  cursor: pointer;
  padding: 18px 22px 8px 0;
  margin: 0;
  outline: none;
  transition: color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #F2B705;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 35px 30px 18px 36px;
  width: 100%;
}
.mobile-nav a {
  color: #1B3246;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  padding: 9px 10px;
  width: 100%;
  transition: color 0.21s, background 0.18s;
  border-radius: 6px;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #F2B705;
  color: #1B3246;
}
@media (max-width: 768px) {
  .mobile-menu {
    display: flex;
  }
}

/* HERO SECTION */
.hero {
  padding: 70px 0 56px 0;
  background: #F5F6F8;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.hero h1 {
  font-size: 2.25rem;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.19rem;
  margin-bottom: 7px;
  color: #43526a;
}
.hero .cta-btn {
  margin-top: 17px;
}

@media (max-width: 600px) {
  .hero {
    padding: 38px 0 32px 0;
  }
  .hero h1 { font-size: 1.49rem; }
}

/* FEATURES */
.features {
  background: #fff;
  padding: 48px 0 24px 0;
}
.features .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.features h2 {
  text-align: left;
  margin-bottom: 22px;
}
.features ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 26px 38px;
}
.features li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.09rem;
  min-width: 210px;
  color: #1B3246;
  background: #F5F6F8;
  padding: 16px 24px;
  border-radius: 9px;
  box-shadow: 0 2px 6px rgba(30,50,70,0.07);
  transition: box-shadow 0.18s;
}
.features li:hover {
  box-shadow: 0 6px 16px rgba(27,50,70,0.10);
}
.features li img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .features ul {
    gap: 18px 12px;
  }
  .features li {
    min-width: 170px;
    padding: 12px 10px;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .features ul {
    flex-direction: column;
    gap: 13px;
  }
  .features li {
    width: 100%;
    min-width: unset;
    padding: 10px 7px;
  }
}

/* SERVICES SECTION */
.services {
  background: #fff;
  padding: 50px 0;
}
.services .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.services ul li {
  flex: 1 1 290px;
  min-width: 260px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  background: #F5F6F8;
  border-radius: 11px;
  box-shadow: 0 2px 8px rgba(30,50,70,0.05);
  padding: 22px 24px 18px 24px;
  gap: 7px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.17s;
}
.services ul li:hover {
  box-shadow: 0 4px 16px 0 rgba(27, 50, 70, 0.11);
  transform: translateY(-3px);
}
.services ul h3 {
  margin-bottom: 5px;
  font-size: 1.18rem;
}
.service-price {
  margin-top: 13px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
  color: #F2B705;
  font-weight: 500;
}
.services .cta-btn {
  align-self: flex-start;
  margin-top: 10px;
}

@media (max-width: 950px) {
  .services ul {
    gap: 15px 8px;
  }
  .services ul li {
    min-width: 190px;
    padding: 14px 8px 16px 12px;
  }
}
@media (max-width:768px) {
  .services ul {
    flex-direction: column;
    gap: 18px;
  }
  .services ul li {
    max-width: 100%;
    min-width: unset;
    width: 100%;
  }
}

/* TESTIMONIALS */
.testimonials {
  background: #fff;
  padding: 45px 0 35px 0;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.testimonials h2 {
  margin-bottom: 22px;
}
.testimonial-card {
  align-items: flex-start;
  max-width: 480px;
  background: #F5F6F8;
  color: #1B3246;
  box-shadow: 0 1px 9px 0 rgba(30,50,70,0.07);
  border-radius: 12px;
  padding: 21px 23px 17px 20px;
  margin-bottom: 20px;
}
.testimonial-card p {
  font-size: 1.13rem;
  font-weight: 400;
  margin: 0 0 8px 0;
  color: #1B3246;
}
.testimonial-card span {
  font-family: 'Oswald', Arial, sans-serif;
  color: #1B3246;
  font-size: 1rem;
  opacity: 0.86;
}

@media (max-width: 600px) {
  .testimonials .content-wrapper {
    gap: 21px;
  }
  .testimonial-card {
    padding: 13px 9px 13px 12px;
    font-size: 1rem;
  }
}

/* CONTACT INFO BLOCK */
.contact {
  background: #fff;
  padding: 44px 0 36px 0;
}
.contact .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-info-block {
  background: #F5F6F8;
  border-radius: 11px;
  box-shadow: 0 1px 6px 0 rgba(30,50,70,0.06);
  padding: 18px 22px;
  margin-bottom: 20px;
}
.contact-info-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info-block li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
}
.contact-info-block img {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
}

.map-embed {
  background: #F5F6F8;
  border-radius: 9px;
  padding: 17px 20px 14px 18px;
  margin-bottom: 19px;
  color: #1B3246;
}
.map-embed img {
  width: 27px;
  height: 27px;
  margin-right: 12px;
}

.text-section h2 {
  margin-top: 0;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.text-section ul {
  list-style: disc inside;
  margin: 0 0 0 14px;
  padding: 0;
  color: #2f4154;
}
.text-section li {
  margin-bottom: 8px;
}

@media (max-width:600px) {
  .contact-info-block,
  .map-embed {
    padding: 10px 7px;
  }
}

/* PRICING TABLE */
.pricing {
  background: #fff;
  padding: 48px 0 35px 0;
}
.pricing-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin: 32px 0 0 0;
  background: #F5F6F8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px 0 rgba(30,50,70,0.06);
}
.pricing-table th,
.pricing-table td {
  padding: 16px 22px;
  text-align: left;
}
.pricing-table th {
  background: #1B3246;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
}
.pricing-table td {
  color: #1B3246;
  font-size: 1rem;
  border-bottom: 1px solid #E9E9EE;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 640px) {
  .pricing-table th,
  .pricing-table td {
    padding: 8px 6px;
    font-size: 0.97rem;
  }
}

/* ABOUT, LEGAL, THANK YOU */
.about, .legal, .thanks {
  background: #fff;
  padding: 44px 0 36px 0;
}
.about .content-wrapper,
.legal .content-wrapper,
.thanks .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.text-section {
  background: #F5F6F8;
  border-radius: 11px;
  box-shadow: 0 1px 6px 0 rgba(30,50,70,0.04);
  padding: 20px 26px;
  margin-bottom: 20px;
  color: #1B3246;
}
@media (max-width:600px) {
  .text-section {
    padding: 9px 5px;
    font-size: 0.99rem;
  }
}

/* FOOTER */
footer {
  background: #F5F6F8;
  color: #1B3246;
  padding: 44px 0 18px 0;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 220px;
}
.footer-logo-nav img {
  width: 70px;
  height: auto;
}
.footer-logo-nav nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-logo-nav nav a {
  color: #1B3246;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.01rem;
  transition: color 0.16s;
}
.footer-logo-nav nav a:hover,
.footer-logo-nav nav a:focus {
  color: #F2B705;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 130px;
}
.footer-links a {
  color: #1B3246;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-links a:hover {
  color: #F2B705;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 215px;
}
.footer-contact ul {
  list-style: none;
  margin: 0 0 7px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  color: #1B3246;
}
.footer-contact img {
  width: 21px;
  height: 21px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social a img {
  width: 25px;
  height: 25px;
  opacity: 0.90;
  transition: opacity 0.18s;
}
.footer-social a:hover img {
  opacity: 1;
}

@media (max-width: 950px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 38px;
  }
  .footer-logo-nav, .footer-links, .footer-contact {
    min-width: unset;
  }
}
@media (max-width: 600px) {
  .footer-main {
    flex-direction: column;
    gap: 22px;
  }
  footer {
    padding: 22px 0 10px 0;
  }
}

/* CTA SECTIONS */
.cta {
  padding: 40px 0 37px 0;
  text-align: center;
}
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta .cta-btn {
  font-size: 1.18rem;
  padding: 18px 44px;
  margin: 0;
}
@media (max-width:600px) {
  .cta .cta-btn {
    font-size: 1rem;
    padding: 12px 14px;
  }
}

/* UTILITY */
::-webkit-input-placeholder { color: #7A869A; }
::-moz-placeholder { color: #7A869A; }
:-ms-input-placeholder { color: #7A869A; }
::placeholder { color: #7A869A; }

/* ACCESSIBILITY: Focus ring */
:focus {
  outline: 2px solid #F2B705;
  outline-offset: 2px;
}

/* ANIMATIONS */
.cta-btn, .main-nav a, .footer-logo-nav nav a, .footer-links a, .footer-social a img, .mobile-nav a, .mobile-menu-close, .card {
  transition: all 0.18s cubic-bezier(.33,.68,.8,.27);
}

/* RESPONSIVE FLEX DIRECTION FOR TEXT-IMAGE SECTIONS */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 21px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: #fff;
  border-top: 1px solid #e6e6e8;
  box-shadow: 0 -5px 35px 0 rgba(27,50,70,0.14);
  padding: 24px 20px 17px 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: transform 0.33s cubic-bezier(.33,.68,.8,.27), opacity 0.18s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1;
  color: #1B3246;
  font-size: 1rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 10px;
}
.cookie-banner button {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  padding: 9px 18px;
  background: #F2B705;
  color: #1B3246;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-banner button.reject {
  background: #E0E0E0;
  color: #1B3246;
}
.cookie-banner button.settings {
  background: transparent;
  color: #1B3246;
  border: 1px solid #1B3246;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #1B3246;
  color: #fff;
}
.cookie-banner button.reject:hover,
.cookie-banner button.reject:focus {
  background: #bbb;
  color: #fff;
}
.cookie-banner button.settings:hover,
.cookie-banner button.settings:focus {
  background: #F2B705;
  color: #1B3246;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 7px 7px 7px;
  }
  .cookie-banner .cookie-btns {
    gap: 8px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 4000;
  background: rgba(27, 50, 70, 0.33);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(27,50,70,0.18);
  min-width: 320px;
  max-width: 98vw;
  padding: 38px 38px 24px 38px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 11px; right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1B3246;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover {
  color: #F2B705;
}
.cookie-modal h2 {
  margin-top: 0;
  font-size: 1.29rem;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 10px 0;
}
.cookie-modal-category label {
  font-size: 1.01rem;
  color: #1B3246;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #E0E0E0;
  border-radius: 14px;
  transition: background 0.2s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #F2B705;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.22s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(22px);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}
.cookie-modal-actions button {
  padding: 9px 18px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  background: #F2B705;
  color: #1B3246;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal-actions button.deny {
  background: #E0E0E0; color: #1B3246;
}
.cookie-modal-actions button.save {
  background: #1B3246; color: #fff;
}
.cookie-modal-actions button:hover,
.cookie-modal-actions button:focus {
  opacity: 0.9;
}
@media (max-width: 540px) {
  .cookie-modal-dialog {
    min-width: unset;
    padding: 12px 6px 14px 6px;
    font-size: 0.97rem;
  }
}

/* GENERAL BUTTONS + FORM ELEMENTS (Minimalist style) */
button, input[type=button], input[type=submit] {
  font-family: 'Oswald', Arial, sans-serif;
  background: #F2B705;
  color: #1B3246;
  border: none;
  border-radius: 7px;
  padding: 9px 20px;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(242,183,5,0.05);
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s;
}
button:focus, button:hover {
  background: #1B3246;
  color: #fff;
}
input, textarea, select {
  border: 1px solid #CED5DC;
  border-radius: 5px;
  padding: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  background: #fff;
  color: #1B3246;
  width: 100%;
  margin-bottom: 14px;
  transition: border-color 0.15s;
}
input:focus, textarea:focus {
  border-color: #F2B705;
  outline: none;
}

/* SPACING CLARITY */
main > section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 700px) {
  main > section, .section {
    padding: 15px 0 15px 0;
    margin-bottom: 35px;
  }
}

/* PREVENT OVERLAPPING, CLARITY */
.card-container > *,
.content-grid > *,
.text-image-section > *,
.features ul > *,
.services ul > *,
.footer-main > * {
  margin-bottom: 20px;
}

/* HIDE PRINT LAYOUTS (Minimalist doesn't use borders or colors for printing) */
@media print {
  header, footer, .cookie-banner, .mobile-menu, .cookie-modal {
    display: none !important;
  }
  body {
    background: #fff;
    color: #111;
  }
  main > section, .section {
    box-shadow: none;
    background: #fff !important;
    padding: 0 !important;
    margin: 0 0 8px 0 !important;
  }
}
