/* --- CSS RESET & NORMALIZE --- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption, footer, header, hgroup, main, nav, output,
ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  min-height: 100vh;
  background: #141a22;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #E5E8ED;
  font-size: 16px;
  line-height: 1.6;
  background-color: #141a22;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #F8A71B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #fff59e;
}
ul, ol {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
  background: none;
  color: inherit;
}
button {
  cursor: pointer;
}
*:focus {
  outline: 2px solid #F8A71B;
  outline-offset: 2px;
}

/* Typography */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #F8A71B;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #E5E8ED;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #E5E8ED;
  font-weight: 600;
}
p, li, dd, dt, address {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #E5E8ED;
  margin-bottom: 10px;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- HEADER + NAVBAR --- */
header {
  background: #18324C;
  box-shadow: 0 2px 12px rgba(14,20,33,0.12);
  position: relative;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  height: 54px;
  margin-right: 20px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #E5E8ED;
  padding: 7px 12px;
  border-radius: 4px;
  transition: color 0.18s, background 0.18s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #223A57;
  color: #F8A71B;
  text-shadow: 0 0 8px #F8A71B;
}

/* CTAs */
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(90deg, #F8A71B 70%, #FFE8C0 100%);
  color: #18324C;
  border: none;
  border-radius: 30px;
  padding: 10px 32px;
  margin-left: 20px;
  transition: background 0.25s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 28px 0 rgba(248,167,27,0.18), 0 1.5px 0 #fff6;
  text-shadow: 0 1px 0 #fff5;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff;
  color: #F8A71B;
  box-shadow: 0 4px 36px 0 #F8A71Bcc, 0 0.5px 0 #ffffff70;
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #F8A71B;
  font-size: 2.2rem;
  border-radius: 6px;
  border: none;
  padding: 4px 10px;
  z-index: 175;
  margin-left: 12px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #2b405f;
  color: #fff;
}

/* --- MOBILE NAV --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(24, 50, 76, 0.98);
  z-index: 200;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(0.65,0,0.35,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #F8A71B;
  font-size: 2rem;
  border: none;
  padding: 20px 24px 8px 24px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.18s, background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  background: #222c3a;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 10px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  padding: 10px 5px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F8A71B;
  color: #18324C;
}

/* --- HERO SECTIONS --- */
.hero {
  background: linear-gradient(125deg, #18324C 75%, #2b5288 100%);
  padding: 52px 0 48px 0;
  margin-bottom: 0;
  position: relative;
}
.hero .container {
  align-items: stretch;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 0;
}
.hero h1 {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 0 12px #19325755;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.18rem;
  color: #ECEFF4;
  margin-bottom: 14px;
}

/* --- GENERIC FLEX PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #223a57;
  border-radius: 20px;
  box-shadow: 0 4px 38px 0 #1c254031, 0 0.5px 0 #ffffff11;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.24s, transform 0.21s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 42px 0 #F8A71Bbb, 0 1.5px 0 #ffffff33;
  transform: translateY(-2px) scale(1.025);
}
.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;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FEATURES (Icon Grid) --- */
.features {
  background: #141a22;
  padding: 44px 0 38px 0;
  margin-bottom: 60px;
  width: 100%;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 14px;
}
.features .feature-grid > div {
  background: #18324C;
  border-radius: 18px;
  padding: 32px 22px 32px 22px;
  box-shadow: 0 4px 18px 0 #1932573c, 0 3px 0 #fff1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 270px;
  transition: box-shadow 0.21s, background 0.21s, transform 0.21s;
}
.features .feature-grid > div:hover, .features .feature-grid > div:focus-within {
  background: #253452;
  box-shadow: 0 0 18px #F8A71B77;
  transform: translateY(-2px) scale(1.018);
}
.features img {
  margin-bottom: 16px;
  width: 48px; height: 48px;
  filter: drop-shadow(0 0 6px #F8A71B66);
}
.features h3 {
  color: #F8A71B;
  font-size: 1.13rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.features p {
  color: #E5E8ED;
  font-size: 1rem;
}

.features.about-features .feature-grid > div {
  background: #1e2a3c;
}
.features.about-features .feature-grid > div:hover {
  background: #253452;
}

/* --- SERVICES/PACKAGES/TABLE SECTIONS --- */
.services {
  background: #18324C;
  margin-bottom: 60px;
  padding: 46px 0 40px 0;
  width: 100%;
}
.services .content-wrapper {
  align-items: flex-start;
}
.services ul {
  margin-bottom: 18px;
}
.services ul li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 22px;
}
.services ul li:before {
  content: '';
  display: block;
  position: absolute;
  top: 10px; left: 0;
  width: 10px; height: 10px;
  background: #F8A71B;
  border-radius: 2px;
  box-shadow: 0 0 8px #F8A71B44;
}
.services table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 18px 0 20px 0;
  border-radius: 14px;
  overflow: hidden;
  background: #223a57;
  box-shadow: 0 2px 12px #1932573c;
}
.services th, .services td {
  padding: 15px 16px;
  text-align: left;
  color: #fff;
}
.services th {
  background: #18324C;
  color: #F8A71B;
  font-size: 1.08rem;
  font-weight: 700;
}
.services tr {
  border-bottom: 1px solid #213951;
}
.services tr:last-child {
  border-bottom: none;
}
.services td {
  font-size: 1.01rem;
}
.services .cta-btn {
  margin-top: 18px;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #fff;
  color: #18324C;
  padding: 48px 0 42px 0;
  margin-bottom: 60px;
  width: 100%;
}
.testimonials .content-wrapper {
  align-items: flex-start;
}
.testimonials h2 {
  color: #F8A71B;
  margin-bottom: 16px;
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: #f6f7fb;
  color: #222b36;
  border-radius: 18px;
  min-width: 240px;
  flex: 1 1 260px;
  box-shadow: 0 2px 16px #18324C21;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, background 0.17s, color 0.11s;
}
.testimonial-card p {
  color: #1a2b3c;
  font-size: 1rem;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #559ab2;
  font-weight: 500;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: #18324C;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.rating-summary img {
  width: 22px; height: 22px;
}

/* --- CTA SECTION --- */
.cta {
  background: linear-gradient(92deg, #F8A71B 84%, #FFC652 100%);
  color: #18324C;
  padding: 38px 0 40px 0;
  margin-bottom: 60px;
  width: 100%;
  box-shadow: 0 2px 24px #F8A71B23;
  text-align: center;
}
.cta .container {
  align-items: center;
}
.cta .content-wrapper {
  align-items: center;
}
.cta h2 {
  color: #18324C;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 20px;
  margin-top: 0;
}

/* --- PAGE-SPECIFIC SECTIONS --- */
.about-section {
  background: #223a57;
  padding: 44px 0 38px 0;
  margin-bottom: 60px;
}
.ocac-services {
  background: #223a57;
  padding: 44px 0 38px 0;
  margin-bottom: 60px;
}
.contact-section {
  background: #223a57;
  padding: 44px 0 38px 0;
  margin-bottom: 60px;
}
.contact-info {
  display: flex;
  flex-direction: row;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 8px;
  align-items: flex-start;
}
.contact-action {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 2px solid #F8A71B;
  padding-left: 22px;
}
.contact-action ul {
  margin-bottom: 6px;
}
.contact-action li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-action img {
  width: 18px; height: 18px;
  margin-right: 3px;
}

/* --- FOOTER STYLES --- */
footer {
  background: #18324C;
  color: #E5E8ED;
  padding: 36px 0 0 0;
  width: 100%;
  font-size: 0.97rem;
  box-shadow: 0 -1.5px 18px #0d182338, 0 1.5px 0 #ffffff06;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #F8A71B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 26px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-contact img {
  width: 64px; height: auto;
  margin-bottom: 0;
}
.footer-contact address {
  color: #E5E8ED;
  font-style: normal;
  line-height: 1.7;
  font-size: 1rem;
}
.footer-bottom {
  border-top: 1.5px solid #223a57;
  color: #E5E8ED;
  padding: 12px 0 15px 0;
  text-align: right;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  opacity: .77;
}

/* --- PAGE LEGAL SECTIONS --- */
.privacy-policy, .features.text-section, .about-section .text-section {
  margin-bottom: 60px;
  background: #223a57;
  padding: 36px 0 36px 0;
  color: #E5E8ED;
}
.privacy-policy h1,
.privacy-policy h2 {
  color: #F8A71B;
}
.privacy-policy ul {
  margin: 14px 0 14px 0;
  padding-left: 20px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #18324C;
  color: #fff;
  padding: 20px 18px 20px 24px;
  box-shadow: 0 -4px 30px #0c183e60;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 2100;
  font-size: 1rem;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.cookie-banner p {
  flex: 3;
  margin-bottom: 0;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  flex: 1;
  justify-content: flex-end;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 24px;
  padding: 8px 22px;
  background: #F8A71B;
  color: #18324C;
  box-shadow: 0 1.5px 12px #F8A71B30;
  margin-left: 0;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
}
.cookie-btn.reject {
  background: #fff;
  color: #18324C;
  border: 1px solid #F8A71B;
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #FFF3C9;
  color: #18324C;
  box-shadow: 0 4px 22px #F8A71B99;
}
.cookie-settings-btn {
  background: transparent;
  color: #F8A71B;
  border: 1.5px solid #F8A71B;
  font-weight: 600;
  padding: 8px 16px;
  margin-left: 0;
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2200;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(23, 50, 76, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #223a57;
  border-radius: 20px;
  box-shadow: 0 6px 48px #0d1823be;
  padding: 36px 38px 32px 38px;
  min-width: 320px;
  max-width: 95vw;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2210;
}
.cookie-modal h2 {
  color: #F8A71B;
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.cookie-category-label {
  font-weight: 600;
  font-size: 1.08rem;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  background: #2b405f;
  border-radius: 12px;
  position: relative;
  margin-left: 8px;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 44px;
  height: 24px;
  position: absolute;
  left: 0; top: 0;
  cursor: pointer;
  z-index: 1;
}
.cookie-toggle-slider {
  position: absolute;
  left: 0; top: 0;
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: #b3c4dd;
  transition: background 0.19s;
}
.cookie-toggle input[type="checkbox"]:checked + .cookie-toggle-slider {
  background: #F8A71B;
}
.cookie-toggle-slider:before {
  content: '';
  display: block;
  position: absolute;
  left: 4px; top: 4px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.19s;
}
.cookie-toggle input[type="checkbox"]:checked + .cookie-toggle-slider:before {
  left: 24px;
  background: #18324C;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-actions .cookie-btn {
  min-width: 96px;
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 14px;
  font-size: 1.5rem;
  color: #F8A71B;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #fff;
}

/* --- UTILITY & FORM ELEMENTS --- */
input, select, textarea {
  border: 1.5px solid #18324C;
  border-radius: 8px;
  padding: 8px 12px;
  background: #fff;
  color: #18324C;
  font-size: 1rem;
  transition: border-color 0.18s;
}
input:focus, select:focus, textarea:focus {
  border-color: #F8A71B;
}

/* Definition lists for FAQs */
dl {
  margin-bottom: 22px;
}
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #F8A71B;
  margin-top: 16px;
  margin-bottom: 2.5px;
}
dd {
  color: #E5E8ED;
  margin-left: 0;
  margin-bottom: 10px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .features .feature-grid > div, .testimonial-card {
    min-width: 160px;
    max-width: initial;
  }
  .card-container {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 0;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
    margin-right: 10px;
    padding: 9px 17px;
    font-size: 1rem;
  }
  .logo {
    margin-right: 10px;
    height: 42px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 14px;
  }
  .footer-bottom {
    text-align: left;
    font-size: 0.92rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1.06rem;
  }
  .features .feature-grid,
  .testimonial-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card {
    padding: 18px 14px 14px 14px;
  }
  .section, .about-section, .ocac-services, .contact-section, .services, .features, .cta, .testimonials {
    padding: 24px 0 24px 0;
    margin-bottom: 42px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .contact-info {
    flex-direction: column;
    gap: 12px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 18px 10px 18px 10px;
    font-size: 0.97rem;
    align-items: flex-start;
  }
  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }
  .cookie-modal {
    padding: 18px 8vw 16px 8vw;
    min-width: 0;
  }
  .about-section .text-section, .features .text-section, .privacy-policy .text-section {
    padding: 0;
  }
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 15px 3vw 8px 3vw;
  }
  .services td, .services th {
    font-size: 0.92rem;
    padding: 10px 6px;
  }
}
@media (max-width: 420px) {
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
  .footer-contact img {
    width: 40px;
  }
}

/* --- SHOW/HIDE MOBILE MENU --- */
@media (max-width: 1000px) {
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* --- ADDITIONAL MICRO-EFFECTS --- */
.card, .features .feature-grid > div, .cta-btn, .main-nav a, .mobile-nav a, .testimonial-card, .cookie-btn, .cookie-settings-btn {
  transition: box-shadow 0.2s, color 0.18s, background 0.22s, transform 0.17s;
}

/* --- ELEVATE CTA LINKS --- */
.cta-btn:active, .cookie-btn:active, .cookie-settings-btn:active {
  transform: scale(0.97);
}

/* --- UTILITIES --- */
.text-center {
  text-align: center;
}

/* --- END OF STYLE.CSS --- */
