:root {
    --primary-color: #0b3a66;
    --secondary-color: #f4a51c;
    --dark-color: #102033;
    --text-color: #5c6670;
    --light-bg: #f6f8fb;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-color);
    background: var(--white);
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
}
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

p{
    font-size:15px !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.nav-link {
    font-family: "Montserrat", sans-serif;
}

section {
    scroll-margin-top: 96px;
}

.main-navbar {
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 32, 51, .08);
  position: sticky;
  top: 0;
  z-index: 1030;
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: var(--white);
    font-size: 14px;
    padding: 8px 0;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.25s ease;
}

.top-bar a:hover {
    color: var(--secondary-color);
}

.top-bar .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0px 12px;
    white-space: nowrap;
}

.social-icons a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    margin-left: 6px;
}

.navbar-brand img {
    max-height: 58px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 700;
    padding: 10px 14px;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: "";
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    position: absolute;
    left: 14px;
    bottom: 3px;
    transition: width 0.25s ease;
}

.navbar-nav .nav-link:hover::after {
    width: calc(100% - 28px);
}

/* Hero */
.hero-section {
    min-height: calc(100vh - 106px);
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    background:
    linear-gradient(
        90deg,
        rgba(11, 58, 102, 0.86),
        rgba(11, 58, 102, 0.42)
    ),
    url("https://gamboapalomino.com/wp-content/uploads/2026/06/mapi-fondo.jpg")
        center/cover no-repeat;
    color: var(--white);
    padding: 140px 0 90px;
}

.hero-content {
    max-width: 760px;
}

.hero-content .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 22px;
}

.hero-content p {
    font-size: clamp(17px, 2vw, 21px) !important;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 32px;
}

.btn-main {
    background: var(--secondary-color);
    color: var(--dark-color);
    border: 0;
    font-weight: 800;
    padding: 13px 26px;
    border-radius: 6px;
    box-shadow: 0 14px 30px rgba(244, 165, 28, 0.28);
}

.btn-main:hover {
    background: #ffb936;
    color: var(--dark-color);
}

/* About */
.about-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.about-image {
    min-height: 460px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(16, 32, 51, 0.16);
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    display: block;
}

.section-label {
    color: var(--secondary-color);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.section-title {
    color: var(--dark-color);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    margin-bottom: 18px;
}

.about-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.accordion-item {
    border: 0;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(16, 32, 51, 0.07);
}

.accordion-button {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: var(--dark-color);
    background: var(--white);
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.accordion-body {
    color: var(--text-color);
    line-height: 1.75;
}

@media (max-width: 991px) {
    .top-bar {
    text-align: center;
    }

    .social-icons {
    margin-top: 8px;
    }

    .navbar-collapse {
    padding: 18px 0;
    }

    .hero-section {
    min-height: 88vh;
    padding-top: 150px;
    }

    .about-section {
    padding: 75px 0;
    }
}

@media (max-width: 575px) {
    .top-bar .contact-item {
    display: flex;
    justify-content: center;
    margin: 0px 5px;
    }

    .navbar-brand img {
    max-height: 48px;
    }

    .hero-section {
    min-height: calc(100vh - 106px);
    text-align: center;
    }

    .hero-content {
    margin: 0 auto;
    }

    .about-image,
    .about-image img {
    min-height: 320px;
    }
}

/* Services */
.services-section {
  padding: 100px 0;
  background: #ffffff;
}

.services-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.service-card {
  height: 100%;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(16, 32, 51, .1);
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(16, 32, 51, .16);
}

.service-image {
  height: 267px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-content {
  padding: 26px;
}

.service-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.service-meta span {
  color: var(--dark-color);
  font-size: 15px;
}

.service-meta strong {
  color: var(--primary-color);
}

.service-slogan {
    font-family: "Montserrat", sans-serif;
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 13px;
}

.service-description-preview {
    max-height: 76px;
    overflow: hidden;
    position: relative;
    line-height: 1.6;
    margin-bottom: 22px;
    font-size: 14px;
}

.service-description-preview::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff);
}

.btn-service {
  background: var(--primary-color);
  color: var(--white);
  border: 0;
  border-radius: 6px;
  padding: 11px 20px;
  font-weight: 700;
}

.btn-service:hover {
  background: #082b4c;
  color: var(--white);
}

.modal-slider-img {
  height: 350px;
  object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
  width: 12%;
}

.carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

@media (max-width: 575px) {
  .modal-slider-img {
    height: 260px;
  }
}

.modal-title {
  font-family: "Montserrat", sans-serif;
  color: var(--dark-color);
  font-weight: 800;
}

@media (max-width: 575px) {
  .services-section {
    padding: 75px 0;
  }

  .service-image {
    height: 318px;
  }

  .service-content {
    padding: 22px;
  }
}

/* Clients */
.clients-section {
  padding: 100px 0;
  background: var(--light-bg);
  overflow: hidden;
}

.clients-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.clients-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 18px 0;
}

.clients-carousel-wrapper::before,
.clients-carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 130px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.clients-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--light-bg), rgba(246, 248, 251, 0));
}

.clients-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--light-bg), rgba(246, 248, 251, 0));
}

.clients-carousel-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: clientsScroll 28s linear infinite;
}

.clients-carousel-wrapper:hover .clients-carousel-track {
  animation-play-state: paused;
}

.client-logo {
  width: 200px;
  height: 90px;
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f8fb;
  border-radius: 8px;
  padding: 12px;
}

.client-logo img {
  width: 200px;
  height: 90px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .75;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

@keyframes clientsScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 17px));
  }
}

@media (max-width: 575px) {
  .clients-section {
    padding: 75px 0;
  }

  .clients-carousel-wrapper::before,
  .clients-carousel-wrapper::after {
    width: 70px;
  }

  .clients-carousel-track {
    gap: 22px;
    animation-duration: 22s;
  }
}


/* Contact */
.contact-section {
  padding: 100px 0;
  background:
    linear-gradient(180deg, rgba(246, 248, 251, .96), rgba(255, 255, 255, .96)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
}

.contact-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.contact-info-panel,
.contact-form-panel {
  height: 100%;
  border-radius: 8px;
}

.contact-info-panel {
  background: var(--primary-color);
  color: var(--white);
  padding: 34px;
  box-shadow: 0 20px 45px rgba(16, 32, 51, .18);
  position: relative;
  overflow: hidden;
}

.contact-info-panel::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  bottom: -80px;
  border: 28px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.contact-panel-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.contact-icon-main {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 8px;
  background: var(--secondary-color);
  color: var(--dark-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.contact-panel-header h3 {
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 5px;
}

.contact-panel-header p {
  color: rgba(255, 255, 255, .78);
  margin: 0;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  text-decoration: none;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  transition: background .25s ease, transform .25s ease;
}

.contact-row:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .14);
  transform: translateX(4px);
}

.contact-row span {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 8px;
  background: rgba(244, 165, 28, .16);
  color: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-row strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.contact-row small {
  color: rgba(255, 255, 255, .72);
}

.btn-whatsapp {
  width: 100%;
  background: #25d366;
  color: var(--white);
  font-weight: 800;
  border: 0;
  padding: 13px 20px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  color: var(--white);
}

.contact-form-panel {
  background: var(--white);
  padding: 34px;
  box-shadow: 0 20px 45px rgba(16, 32, 51, .12);
}

.contact-form-panel .form-label {
  color: var(--dark-color);
  font-weight: 700;
  font-size: 14px;
}

.contact-form-panel .form-control,
.contact-form-panel .form-select {
  min-height: 48px;
  border-radius: 6px;
  border: 1px solid #dfe5ec;
  color: var(--dark-color);
  box-shadow: none;
}

.contact-form-panel textarea.form-control {
  min-height: 138px;
}

.contact-form-panel .form-control:focus,
.contact-form-panel .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 .2rem rgba(11, 58, 102, .12);
}

.contact-benefits {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-benefit-item {
  min-height: 92px;
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--dark-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(16, 32, 51, .08);
}

.contact-benefit-item i {
  color: var(--secondary-color);
  font-size: 24px;
}

@media (max-width: 991px) {
  .contact-section {
    padding: 75px 0;
  }

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

@media (max-width: 575px) {
  .contact-info-panel,
  .contact-form-panel {
    padding: 24px;
  }

  .contact-panel-header {
    align-items: flex-start;
  }

  .contact-benefit-item {
    justify-content: flex-start;
  }
}


/* Footer */
.site-footer {
  background: var(--dark-color);
  color: rgba(255, 255, 255, .76);
}

.footer-main {
  padding: 78px 0 58px;
  background:
    linear-gradient(90deg, rgb(16 32 51 / 85%), rgb(11 58 102 / 85%)), 
	url(https://gamboapalomino.com/wp-content/uploads/2026/06/sandboarding-scaled-1.jpg) center / cover no-repeat
}

.contact-image {
    background: url(https://gamboapalomino.com/wp-content/uploads/2026/06/footer-bg-1.jpg) center / cover no-repeat;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 22px;
}

.footer-logo img {
  max-height: 62px;
  width: auto;
}

.footer-brand p {
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 360px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  text-decoration: none;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.footer-social a:hover {
  background: var(--secondary-color);
  color: var(--dark-color);
  transform: translateY(-3px);
}

.footer-widget h3 {
  color: var(--white);
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-widget h3::after {
  content: "";
  width: 42px;
  height: 3px;
  background: var(--secondary-color);
  position: absolute;
  left: 0;
  bottom: 0;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, .76);
  text-decoration: none;
  transition: color .25s ease, padding-left .25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--secondary-color);
  padding-left: 4px;
}

.footer-contact {
  display: grid;
  gap: 13px;
  margin-bottom: 22px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  line-height: 1.55;
}

.footer-contact i {
  color: var(--secondary-color);
  width: 18px;
  margin-top: 4px;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25d366;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 6px;
  transition: background .25s ease, transform .25s ease;
}

.footer-whatsapp:hover {
  background: #1ebe5d;
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  background: #0b1726;
  padding: 18px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, .68);
  text-decoration: none;
  font-size: 14px;
  transition: color .25s ease;
}

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

@media (max-width: 575px) {
  .footer-main {
    padding: 62px 0 42px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 6px;
  }
	.contact-image{
		height: 240px;
	}
}

@media (max-width: 767px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    transform: translate3d(0, 40px, 0) !important;
  }

  [data-aos="fade-left"].aos-animate,
  [data-aos="fade-right"].aos-animate {
    transform: translate3d(0, 0, 0) !important;
  }
}

/* Scroll Top Button */
.scroll-top-btn {
  width: 46px;
  height: 46px;
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  border: 0;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--dark-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 14px 30px rgba(16, 32, 51, .22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, background .25s ease;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: #ffb936;
}

@media (max-width: 575px) {
  .scroll-top-btn {
    width: 42px;
    height: 42px;
    right: 22px;
    bottom: 16px;
    font-size: 16px;
  }
  .btn-whatsapp-footer{
      bottom: 71px !important;
  }
}

/*DESDE AQUI CSS PARA BTN WHATSAPP MULTI AGENTE*/
.btn-whatsapp-footer {
    align-items: center;
    animation: breathe 2s ease-in-out infinite;
    background-color: #25d366;
    border: 0;
    border-radius: 50%;
    bottom: 82px;
    box-shadow: 0 2px 5px rgba(0,0,0,.3);
    display: flex;
    height: 50px;
    justify-content: center;
    right: 20px;
    position: fixed;
    width: 50px;
    z-index: 9999
}

.btn-whatsapp-footer i {
    animation: beat 2s ease-in-out infinite;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition:all .25s ease;
}

@keyframes breathe {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,.5)
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0)
    }

    to {
        box-shadow: 0 0 0 0 transparent
    }
}
@keyframes beat {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.2)
    }

    to {
        transform: scale(1)
    }
}

.whatsapp-panel{
    position:fixed;
    right:20px;
    bottom:145px;
    width:350px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;
    transform:translateY(15px);

    transition:.3s;
    z-index:9999;
}

.whatsapp-panel.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.whatsapp-header{
    background: #2DB742;
    color:#fff;
    padding:20px;
    display:flex;
    gap:15px;
    align-items:flex-start;
}

.whatsapp-header i{
    font-size:35px;
}

.whatsapp-header .wsp-title{
    margin:0;
    font-size:18px !important;
    font-weight:600;
}

.whatsapp-header .wsp-content{
    margin:0;
    opacity:.9;
    font-size:12px !important;
}

.whatsapp-body{
    padding:15px;
}

.agent-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px;
    background:#f7f7f7;
    border-radius:10px;
    margin-bottom:10px;
    transition:.3s;
    border-left: 3px solid #25d366;
}

.agent-item:hover{
    background:#efefef;
}

.agent-info{
    display:flex;
    align-items:center;
    gap:12px;
}

.agent-avatar{
    width:50px;
    height:50px;
    min-width:50px;
    border-radius:50%;
    overflow:hidden;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 10px;
}

.agent-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.agent-info h5{
    margin:0;
    color:#333;
    font-size:15px;
}

.agent-info span{
    color:#888;
    font-size:13px;
}

.whatsapp-icon{
    color:#25D366;
    font-size:22px;
}

/*HASTA AQUI CSS PARA BTN WHATSAPP MULTI AGENTE*/


/* Privacy Modal */
.privacy-modal,
.legal-modal {
  border: 0;
  border-radius: 8px;
  overflow: hidden;
}

.privacy-modal .modal-header,
.legal-modal .modal-header {
  background: var(--primary-color);
  color: var(--white);
  border-bottom: 0;
  padding: 22px 26px;
}

.privacy-modal .modal-title,
.legal-modal .modal-title {
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
}

.privacy-modal .btn-close,
.legal-modal .btn-close {
  filter: invert(1);
  opacity: .9;
}

.privacy-modal .modal-body,
.legal-modal .modal-body {
  padding: 28px;
  color: var(--text-color);
  line-height: 1.8;
}

.privacy-modal .modal-body h4,
.legal-modal .modal-body h4 {
  color: var(--dark-color);
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-top: 24px;
  margin-bottom: 10px;
}

.privacy-modal .modal-body p,
.legal-modal .modal-body p {
  margin-bottom: 14px;
}

.privacy-modal .modal-body a,
.legal-modal .modal-body a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

.privacy-modal .modal-body a:hover,
.legal-modal .modal-body a:hover {
  color: var(--secondary-color);
}

.privacy-note,
.legal-note {
  margin-top: 22px;
  padding: 14px 16px;
  background: var(--light-bg);
  border-left: 4px solid var(--secondary-color);
  border-radius: 6px;
  font-weight: 600;
}