:root {
  --navy: #03315B;
  --navy-dark: #021F39;
  --green: #20B878;
  --green-dark: #159766;
  --light-green: #EAF9F3;
  --light-blue: #F5FAFD;
  --text: #5F6B76;
  --border: #DFE8ED;
  --white: #FFFFFF;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  font-family: Arial, sans-serif;
  color: var(--navy);
  background: white;
  line-height: 1.7;
}


a {
  text-decoration: none;
}


button {
  font-family: inherit;
}


/* TOP BAR */

.topbar {
  min-height: 60px;
  padding: 0 5%;
  background: var(--navy);

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


.topbar-item {
  color: white;

  display: flex;
  align-items: center;

  gap: 9px;

  font-size: 14px;
}


.topbar-item i {
  color: var(--green);
}


/* HEADER */

.main-header {
  position: sticky;
  top: 0;

  z-index: 1000;

  background: white;

  border-bottom: 1px solid #EDF1F3;
}


.navbar {
  max-width: 1200px;
  min-height: 92px;

  margin: auto;
  padding: 0 24px;

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


.logo {
  display: flex;
  align-items: center;
}


.logo img {
  width: 190px;
  max-height: 60px;
  object-fit: contain;
}


.nav-links {
  display: flex;
  align-items: center;

  gap: 20px;
}


.nav-links > a,
.dropdown-title {
  color: var(--navy);

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


.nav-links > a:hover,
.dropdown-title:hover {
  color: var(--green);
}


.header-actions {
  display: flex;
  align-items: center;

  gap: 15px;
}


.quote-btn {
  padding: 13px 18px;

  background: var(--green);
  color: white;

  border-radius: 12px;

  font-size: 14px;
  font-weight: 800;
}


.menu-btn {
  display: none;

  border: none;
  background: transparent;

  color: var(--navy);

  font-size: 30px;

  cursor: pointer;
}


/* DROPDOWN */

.nav-dropdown {
  position: relative;
}


.dropdown-title {
  border: none;
  background: transparent;

  cursor: pointer;

  display: flex;
  align-items: center;

  gap: 6px;
}


.dropdown-title i {
  font-size: 10px;
}


.dropdown-menu {
  position: absolute;

  top: 35px;
  left: 0;

  width: 220px;

  padding: 10px;

  background: white;

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

  box-shadow:
    0 15px 40px rgba(3,49,91,0.12);

  display: none;
}


.nav-dropdown:hover .dropdown-menu {
  display: block;
}


.dropdown-menu a {
  display: block;

  padding: 11px 13px;

  border-radius: 8px;

  color: var(--navy);

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


.dropdown-menu a:hover {
  color: var(--green);
  background: var(--light-green);
}


/* HERO */

.legal-hero {
  padding: 80px 20px;

  background:
    radial-gradient(
      circle at 80% 40%,
      rgba(32,184,120,0.14),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #F5FAFD,
      #FFFFFF
    );
}


.legal-hero-content {
  max-width: 850px;

  margin: auto;

  text-align: center;
}


.legal-icon {
  width: 75px;
  height: 75px;

  margin: 0 auto 20px;

  border-radius: 22px;

  background: var(--light-green);
  color: var(--green);

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

  font-size: 31px;
}


.page-label {
  color: var(--green);

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 1.5px;
}


.legal-hero h1 {
  margin: 10px 0 15px;

  font-size: clamp(40px, 5vw, 60px);

  line-height: 1.1;
}


.legal-hero p {
  max-width: 650px;

  margin: auto;

  color: var(--text);

  font-size: 17px;
}


.updated-date {
  margin-top: 22px;

  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: var(--text);

  font-size: 13px;
}


.updated-date i {
  color: var(--green);
}


/* LEGAL LAYOUT */

.legal-section {
  padding: 90px 20px;
}


.legal-layout {
  max-width: 1150px;

  margin: auto;

  display: grid;
  grid-template-columns: 260px 1fr;

  gap: 50px;

  align-items: start;
}


/* SIDEBAR */

.legal-sidebar {
  position: sticky;

  top: 120px;
}


.sidebar-box {
  padding: 20px;

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

  background: white;
}


.sidebar-box h3 {
  padding: 5px 10px 15px;

  font-size: 17px;
}


.sidebar-box a {
  margin-bottom: 7px;

  padding: 12px 13px;

  border-radius: 10px;

  color: var(--text);

  display: flex;
  align-items: center;

  gap: 10px;

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


.sidebar-box a i {
  width: 20px;

  color: var(--green);
}


.sidebar-box a:hover,
.sidebar-box a.active {
  background: var(--light-green);
  color: var(--green);
}


/* CONTENT */

.legal-content {
  min-width: 0;
}


.intro-box {
  margin-bottom: 40px;

  padding: 28px;

  border-radius: 20px;

  background: var(--navy);

  color: white;

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

  gap: 18px;
}


.intro-box > i {
  width: 55px;
  height: 55px;

  min-width: 55px;

  border-radius: 15px;

  background: var(--green);

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

  font-size: 22px;
}


.intro-box h2 {
  margin-bottom: 5px;

  font-size: 21px;
}


.intro-box p {
  color: #C4D0D8;

  font-size: 14px;
}


.warning-box > i {
  background: var(--green);
}


.legal-block {
  position: relative;

  padding: 35px 0;

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


.legal-block:first-of-type {
  padding-top: 10px;
}


.block-number {
  display: block;

  margin-bottom: 7px;

  color: var(--green);

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 1px;
}


.legal-block h2 {
  margin-bottom: 15px;

  font-size: 25px;
}


.legal-block p {
  margin-bottom: 14px;

  color: var(--text);

  font-size: 15px;
}


.legal-block ul {
  list-style: none;

  margin: 18px 0;
}


.legal-block li {
  margin-bottom: 11px;

  color: var(--text);

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

  gap: 9px;

  font-size: 14px;
}


.legal-block li i {
  margin-top: 6px;

  color: var(--green);

  font-size: 11px;
}


.highlight-note {
  margin-top: 20px;

  padding: 18px;

  border-left: 4px solid var(--green);

  background: var(--light-green);

  border-radius: 0 12px 12px 0;

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

  gap: 12px;
}


.highlight-note i {
  margin-top: 4px;

  color: var(--green);
}


.highlight-note p {
  margin: 0;

  color: var(--navy);

  font-size: 14px;
}


.claim-warning {
  margin-top: 20px;

  padding: 22px;

  border: 1px solid #F0D6B5;
  border-radius: 15px;

  background: #FFF9F0;

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

  gap: 14px;
}


.claim-warning > i {
  margin-top: 4px;

  color: #D98C2B;

  font-size: 20px;
}


.claim-warning strong {
  display: block;

  margin-bottom: 5px;

  color: var(--navy);
}


.claim-warning p {
  margin: 0;
}


/* CONTACT CARDS */

.contact-cards {
  margin-top: 22px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 15px;
}


.contact-cards a {
  padding: 18px;

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

  display: flex;
  align-items: center;

  gap: 12px;

  transition: 0.3s;
}


.contact-cards a:hover {
  border-color: var(--green);

  transform: translateY(-2px);
}


.contact-cards a > i {
  width: 45px;
  height: 45px;

  min-width: 45px;

  border-radius: 13px;

  background: var(--light-green);
  color: var(--green);

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


.contact-cards small,
.contact-cards strong {
  display: block;
}


.contact-cards small {
  color: var(--text);

  font-size: 11px;
}


.contact-cards strong {
  color: var(--navy);

  font-size: 13px;
}


/* LEGAL NAVIGATION */

.legal-navigation {
  padding: 45px 20px;

  background: #F7FAFC;
}


.legal-nav-wrapper {
  max-width: 900px;

  margin: auto;

  text-align: center;
}


.legal-nav-wrapper p {
  margin-bottom: 18px;

  color: var(--text);
}


.legal-nav-wrapper > div {
  display: flex;
  justify-content: center;

  gap: 15px;
}


.legal-nav-wrapper a {
  padding: 13px 18px;

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

  background: white;
  color: var(--navy);

  font-size: 13px;
  font-weight: 800;
}


.legal-nav-wrapper a:hover {
  color: var(--green);

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


.legal-nav-wrapper i {
  margin-left: 6px;
}


/* FOOTER */

.footer {
  padding-top: 60px;

  background: var(--navy-dark);

  color: white;
}


.footer-container {
  max-width: 1150px;

  margin: auto;

  padding: 0 20px 50px;

  display: grid;
  grid-template-columns:
    1.8fr 1fr 1fr 1fr;

  gap: 40px;
}


.footer-logo img {
  width: 190px;
  height: auto;

  display: block;
}


.footer-brand p {
  max-width: 340px;

  margin: 20px 0;

  color: #B9C6D0;
}


.footer-links {
  display: flex;
  flex-direction: column;

  gap: 12px;
}


.footer-links h3 {
  margin-bottom: 8px;
}


.footer-links a {
  color: #B9C6D0;

  font-size: 14px;
}


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


.footer-bottom {
  padding: 20px;

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

  color: #9DAFBD;

  text-align: center;

  font-size: 13px;
}


/* WHATSAPP */

.floating-whatsapp {
  position: fixed;

  right: 22px;
  bottom: 22px;

  width: 58px;
  height: 58px;

  border-radius: 50%;

  background: #25D366;
  color: white;

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

  font-size: 30px;

  box-shadow:
    0 8px 25px rgba(0,0,0,0.20);

  z-index: 999;
}


/* TABLET */

@media (max-width: 1000px) {

  .nav-links {
    position: absolute;

    top: 92px;
    left: 0;
    right: 0;

    padding: 25px;

    background: white;

    display: none;
    flex-direction: column;
    align-items: stretch;

    box-shadow:
      0 15px 30px rgba(0,0,0,0.08);
  }


  .nav-links.show {
    display: flex;
  }


  .menu-btn {
    display: block;
  }


  .nav-dropdown {
    width: 100%;
  }


  .dropdown-title {
    width: 100%;

    justify-content: space-between;
  }


  .dropdown-menu {
    position: static;

    width: 100%;

    margin-top: 10px;

    box-shadow: none;
  }


  .nav-dropdown:hover .dropdown-menu {
    display: none;
  }


  .nav-dropdown.open .dropdown-menu {
    display: block;
  }


  .legal-layout {
    grid-template-columns: 220px 1fr;

    gap: 30px;
  }


  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

}


/* MOBILE */

@media (max-width: 700px) {

  .topbar {
    min-height: 60px;

    padding: 0 5%;
  }


  .topbar-item {
    font-size: 12px;
  }


  .navbar {
    min-height: 112px;

    padding: 0 20px;
  }


  .logo img {
    width: 230px;

    max-width: 48vw;
  }


  .nav-links {
    top: 112px;
  }


  .quote-btn {
    padding: 12px 14px;

    font-size: 13px;
  }


  .header-actions {
    gap: 12px;
  }


  .legal-hero {
    padding: 65px 20px;
  }


  .legal-hero h1 {
    font-size: 42px;
  }


  .legal-section {
    padding: 60px 20px;
  }


  .legal-layout {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  .legal-sidebar {
    position: static;
  }


  .sidebar-box {
    display: grid;

    gap: 5px;
  }


  .intro-box {
    padding: 22px;

    flex-direction: column;
  }


  .legal-block {
    padding: 30px 0;
  }


  .legal-block h2 {
    font-size: 22px;
  }


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


  .legal-nav-wrapper > div {
    flex-direction: column;
  }


  .footer-container {
    grid-template-columns: 1fr;
  }

  }
