/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #eeebe5;
    font-family: "Inter", "Inter Placeholder", sans-serif;
    font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
    margin: 0;
    padding: 0;
}

/* Header styling */
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 64px;
    background: transparent;
    z-index: 1000;
    width: 85%;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.1);
}
/* header.scrolled {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px 0 rgba(163, 191, 142, 0.23);
    border-radius: 40px;
    margin: 15px auto 0;
    padding: 8px 24px;
    width: 70%;
    border: 1px solid black;
} */

/* Bulb Icon */
.logo{
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logo-icon {
    font-size: 22px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-icon:hover {
    color: #fc4c00; /* bright yellow */
    text-shadow: 0 0 10px #fc4c00, 0 0 25px #fc4c00, 0 0 40px #fc4c00;
}

.brand-text {
  font-weight: 500;
  color: #111;
  font-size: 26px;
  letter-spacing: -0.06rem;
  vertical-align: middle;
  font-family: "Inter", "Inter Placeholder", sans-serif;
}

nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap:24px
}

/* Nav Links */
nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #fc4c00;
}

/* CTA button */
.cta-btn-nav {
  background: #111;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  border: none;
  border-radius: 32px;
  padding: 10px 15px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.3s, color 0.3s;
}
.cta-btn-nav:hover {
  background: #545454;
  color: #fff;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  position: relative;
  cursor: pointer;
  z-index: 1200;
}

.menu-toggle .bar {
  display: block;
  position: absolute;
  left: 7px;
  right: 7px;
  height: 3px;
  background: #000;
  border-radius: 5px;
  transition: all 0.40s cubic-bezier(0.77,0,0.18,1);
}

.menu-toggle .bar:first-child {
  top: 13px;
  width: 70%;
}

.menu-toggle .bar:last-child {
  top: 21px;
  width: 70%;
}

/* Morph to X/Cross */
.menu-toggle.open .bar:first-child {
  transform: rotate(45deg);
  top: 17px;
}

.menu-toggle.open .bar:last-child {
  transform: rotate(-45deg);
  top: 17px;
}

/* Responsive */
@media (max-width: 1024px) {
    nav.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    .menu-toggle {
        display: block;
    }

    /* Animation */
    @keyframes slideDown {
        from {
        opacity: 0;
        transform: translateY(-10px);
        }
        to {
        opacity: 1;
        transform: translateY(0);
        }
    }
}
@media (max-width: 1024px) {
  header{
      width: 100% !important;
      padding: 20px 34px;
  }
  nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #eeebe5;
    width: 100vw;
    height: 40vh;
    z-index: 1100;
    display: none;
    flex-direction: column;
    padding: 28px 0 0 0;
    border-radius: 0;
    justify-content: flex-start;
    align-items: flex-start;
  }
  nav.active {
    display: flex;
    animation: fadeIn 0.35s cubic-bezier(0.77,0,0.18,1) forwards;
  }
  /* Logo row styles */
  .logo {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* Nav links stacked vertically, left-aligned */
  nav ul {
    flex-direction: column;
    gap: 22px;
    margin-left: 20px;
    margin-bottom: 40px;
    align-items: flex-start;
  }
  nav ul li a {
    font-size: 18px;
    color: #000;
    padding: 0;
    text-align: left;
  }
  /* Close icon at top-right */
  .menu-toggle.open {
    position: absolute;
    top: 22px;
    right: 28px;
  }
  /* Full width rounded CTA button at bottom */
  .cta-btn-nav {
    margin-top: auto;
    margin-bottom: 32px;
    margin-left: 24px;
    margin-right: 24px;
    width: calc(100vw - 48px);
    padding: 18px 0;
    background: #000;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    border: none;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: block;
    transition: background 0.3s, color 0.3s;
  }
  .cta-btn-nav:hover {
    background: #545454;
    color: #fff;
  }
}

/* Book a Call Section */
.book-a-call-section {
  background: #f3f0ea;
  padding: 0;
  margin: 40px auto;
  font-family: 'Inter', 'Satoshi', 'Montserrat', Arial, sans-serif;
  min-height: 100vh;
  color: #141414;
  display: flex;
  justify-content: center; /* center content horizontally */
  align-items: center;
  box-sizing: border-box;
}

/* Container */
.book-a-call-section-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: none;
  border-radius: 0;
  gap: 40px;
  padding: 0 2.5%;
  flex-wrap: wrap; /* wrap content on smaller screens */
  box-sizing: border-box;
}

/* Left Content */
.book-a-call-section-left {
  flex: 1 1 400px; /* flexible and minimum width */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-right: 48px;
  padding-top: 50px;
  min-width: 320px;
  position: sticky;
  top: 80px;
  height: fit-content;
  align-self: flex-start;
}

/* Top Button */
.book-a-call-section-top-btn {
  display: inline-block;
  background: #e6e2dc;
  color: #222;
  border: none;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 8px 24px;
  border-radius: 12px;
  letter-spacing: 0.06em;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 35px;
  width: fit-content;
}

/* Heading */
.book-a-call-section-heading {
  font-size: 5.3rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 40px;
  margin-top: 0;
  letter-spacing: -2px;
}

/* Description */
.book-a-call-section-desc {
  font-size: 1.15rem;
  max-width: 430px;
  color: #807c74;
  margin-bottom: 30px;
  font-weight: 400;
}

/* Avatar Section */
.book-a-call-section-avatars {
  display: flex;
  align-items: center;
  gap: 6px;
}

.book-a-call-section-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px #ccc5b6;
}

.book-a-call-section-creator-info {
  font-size: 0.98rem;
  margin-left: 12px;
  color: #807c74;
}

/* Form */
.book-a-call-section-form {
  flex: 1 1 400px; /* flexible with minimum width */
  background: none;
  display: flex;
  flex-direction: column;
  padding: 80px 0 0 0;
  gap: 18px;
  min-width: 330px;
  box-sizing: border-box;
}

/* Inputs and Textarea */
.book-a-call-section-input, 
.book-a-call-section-textarea {
  background: #f3f0ea;
  border: none;
  border-bottom: 2px solid #ece8df;
  padding: 16px 5px 10px 0;
  font-size: 1.02rem;
  color: #222;
  font-family: inherit;
  margin-bottom: 6px;
  transition: border-color 0.2s;
  border-radius: 0;
  outline: none;
  width: 100%;
  resize: none;
}

.book-a-call-section-input:focus, 
.book-a-call-section-textarea:focus {
  border-bottom: 2px solid #807c74;
}

/* Phone Input with Country Code */
.phone-input-wrapper {
  display: flex;
  gap: 8px;
  width: 100%;
  align-items: stretch;
}

.country-code-select {
  background: #f3f0ea;
  border: none;
  border-bottom: 2px solid #ece8df;
  padding: 16px 8px 10px 0;
  font-size: 1rem;
  color: #222;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s;
  border-radius: 0;
  outline: none;
  min-width: 120px;
  flex-shrink: 0;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23222' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 30px;
}

.country-code-select:focus {
  border-bottom: 2px solid #807c74;
}

.phone-number-input {
  flex: 1;
  min-width: 0;
}

/* reCAPTCHA Styling */
.g-recaptcha {
  margin: 15px 0;
  display: flex;
  justify-content: flex-start;
}

.g-recaptcha > div {
  margin: 0 auto;
}

/* Searchable Country Code Dropdown */
.country-select-wrapper {
  position: relative;
  min-width: 140px;
  flex-shrink: 0;
}

.country-selected-display {
  background: #f3f0ea;
  border: none;
  border-bottom: 2px solid #ece8df;
  padding: 16px 30px 10px 5px;
  font-size: 1rem;
  color: #222;
  cursor: pointer;
  transition: border-color 0.2s;
  border-radius: 0;
  outline: none;
  display: flex;
  align-items: center;
  min-height: 48px;
}

.country-selected-display:hover {
  border-bottom: 2px solid #807c74;
}

.country-selected-display::after {
  content: '▼';
  position: absolute;
  right: 8px;
  font-size: 10px;
  color: #666;
  pointer-events: none;
}

.country-search-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 30px 10px 5px;
  border: none;
  border-bottom: 2px solid #807c74;
  background: #fff;
  font-size: 1rem;
  color: #222;
  outline: none;
  display: none;
  z-index: 10;
}

.country-select-wrapper.active .country-search-input {
  display: block;
}

.country-select-wrapper.active .country-selected-display {
  display: none;
}

.country-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: none;
}

.country-select-wrapper.active .country-dropdown {
  display: block;
}

.country-dropdown-item {
  padding: 12px 10px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
  font-size: 0.95rem;
}

.country-dropdown-item:hover {
  background: #f5f5f5;
}

.country-dropdown-item:last-child {
  border-bottom: none;
}

/* Options Pills */
.book-a-call-section-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

.book-a-call-section-options {
  display: flex;
  gap: 12px;
  margin-top: 5px;
  flex-wrap: wrap;
}

.book-a-call-section-option {
  background: #ece8df;
  border: none;
  border-radius: 16px;
  padding: 9px 22px;
  font-size: 1rem;
  color: #807c74;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}

.book-a-call-section-option.active, 
.book-a-call-section-option:focus {
  background: #141414;
  color: #fff;
}

.book-a-call-section-textarea {
  min-height: 78px;
  margin-top: 6px;
}

/* Submit Button */
.book-a-call-section-submit {
  margin-top: 16px;
  background: #141414;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 18px 0;
  width: 100%;
  font-size: 1.18rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.book-a-call-section-submit-arrow {
  font-size: 1.33em;
  font-weight: bold;
}

/* Terms */
.book-a-call-section-terms {
  color: #b6b2a7;
  font-size: 0.92rem;
  margin-top: 10px;
  text-align: left;
}

.book-a-call-section-terms a {
  color: #807c74;
  text-decoration: underline dotted;
}

/* ---------------- Media Queries ---------------- */

/* Tablet */
@media (max-width: 900px) {
  .book-a-call-section-container {
    flex-direction: column;
    gap: 32px;
    padding: 0 4vw;
  }

  .book-a-call-section-left{
    position: relative;
    margin-bottom: 40px;
    padding: 0;
  }

  .book-a-call-section-form {
    padding: 0;
    min-width: 0;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .book-a-call-section-container {
    padding: 0 5vw;
  }

  .book-a-call-section-heading {
    font-size: 2.3rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .book-a-call-section-top-btn {
    font-size: .95rem;
    padding: 6px 16px;
  }

  .book-a-call-section-desc {
    font-size: 1rem;
    max-width: 100%;
  }

  .book-a-call-section-form {
    padding-top: 8px;
    gap: 14px;
  }

  .book-a-call-section-option {
    min-width: 70px;
    padding: 7px 12px;
    font-size: 0.88rem;
  }
}

/* Extra Small Devices */
@media (max-width: 400px) {
  .book-a-call-section-heading {
    font-size: 2rem;
  }

  .book-a-call-section-submit {
    font-size: 1.05rem;
    padding: 14px 0;
  }

  .book-a-call-section-submit-arrow {
    font-size: 1.1em;
  }
}


.faq-section {
  max-width: 600px;
  margin: 60px auto 0 auto;
  position: relative;
  background: #f5f1eb;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(120,106,89,0.10);
  padding: 38px 30px 23px 30px;
}
.faq-icon {
  position: absolute;
  top: -32px; right: 32px;
  background: #111;
  padding: 18px;
  border-radius: 21px;
  box-shadow: 0 2px 16px #19191914;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
}
.faq-icon i {
  color: #fff;
  font-size: 27px;
}
.faq-label {
  background: #eae6dd;
  color: #111;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 8px;
  display: inline-block;
  padding: 10px 16px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.05rem;
  margin-bottom: 12px;
}
.faq-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5em;
  font-weight: 700;
  color: #111;
  margin: 0 0 12px 0;
  line-height: 1.13;
}
.faq-content .italic {
  font-style: italic;
  letter-spacing: -0.05rem;
  font-family: 'Playfair Display', serif;
}
.faq-list {
  margin-top: 24px;
}
.faq-item {
  margin-bottom: 16px;
}
.faq-q {
  background: #ebe7e2;
  color: #25201c;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 9px;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.09em;
  font-weight: 500;
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.18s;
}
.faq-q:hover { background: #e0dbd4;}
.plus {
  background: #131311;
  color: #fff;
  width: 28px; height: 28px;
  display: flex;
  align-items: center; justify-content: center;
  border-radius: 10px;
  font-size: 1.33em;
}
.faq-a {
  display: none;
  background: none;
  color: #6d6c6a;
  font-size: 1.01em;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 8px;
  margin-bottom: 4px;
  padding-left: 2px;
  border-radius: 0 0 11px 11px;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .plus { background: #fc4c00; content: "-"; }
@media (max-width: 600px) {
  .faq-section { max-width: 98vw; padding: 17px 4vw 13px 4vw;}
  .faq-content h2 { font-size: 1.2em; }
  .faq-icon { top: -16px; right: -16px;}
}



.footer {
  background: #efebe3;
  padding: 56px 18px 20px 18px;
  font-size: 16px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 150px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  flex: 1 1;
  min-width: 230px;
}
.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}
.footer-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.footer-desc {
  color: #6b6b6b;
  font-size: 15px;
  margin-bottom: 23px;
  margin-top: 7px;
}

.footer-social {
  display: flex;
  gap: 11px;
  margin-bottom: 25px;
}

.footer-social-btn {
  background: #222;
  color: #fff;
  border: none;
  text-decoration: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.footer-social-btn:hover {
  background: #444;
  transform: scale(1.05);
}

.footer-menus {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  flex: 3 1;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  min-width: 160px;
}

.footer-menu-title {
  font-weight: 600;
  margin-bottom: 14px;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.footer-menu a,
.footer-menu p {
  color: #222;
  text-decoration: none;
  margin-bottom: 11px;
  font-size: 15px;
  transition: color 0.2s;
}

.footer-menu a:hover,
.footer-contact-link:hover {
  color: #6b6b6b;
}

.footer-contact-link {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 38px;
  border-top: 1px solid #e3e0d7;
  padding-top: 16px;
  color: #838383;
  min-height: 52px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1150px) {
  .footer-top {
    gap: 38px;
  }
  .footer-menus {
    flex-wrap: wrap;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .footer-menus {
    justify-content: center;
    gap: 30px;
  }
  .footer-menu {
    min-width: 165px;
    text-align: center;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .footer {
    padding: 40px 2vw 16px 2vw;
    font-size: 15px;
    margin: 0 15px;
  }
  .footer-title {
    font-size: 21px;
  }
  .footer-menu-title {
    font-size: 14px;
    margin-bottom: 9px;
  }
  .footer-bottom {
    font-size: 12px;
    min-height: 26px;
    padding-top: 12px;
    margin-top: 19px;
  }
}

#cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background-color: black;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease;
  z-index: 9999;
}


    /* Floating Enquire Button */
    .enquire-btn {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background-color: #000;
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      font-size: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      z-index: 1000;
    }

    .enquire-btn:hover {
      transform: scale(1.05);
    }

    /* Overlay Background */
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 10000;
      padding: 20px;
      overflow-y: auto;
    }

    /* Popup Box */
    .popup-form {
      background-color: #eeebe5;
      border-radius: 15px;
      padding: 30px 25px;
      max-width: 500px;
      width: 100%;
      position: relative;
      z-index: 10001;
      margin: 20px auto;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      animation: popupShow 0.3s ease;
    }

    @keyframes popupShow {
      from {
        transform: scale(0.9);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    /* Close Button */
    .close-btn {
      position: absolute;
      top: 15px;
      right: 15px;
      background: none;
      border: none;
      font-size: 20px;
      cursor: pointer;
      color: #333;
      z-index: 10002;
    }

    /* Form Elements */
    .popup-form input {
      width: 100%;
      border: none;
      border-bottom: 1px solid #ccc;
      background: none;
      padding: 9px 4px;
      font-size: 13px;
      margin-bottom: 20px;
      outline: none;
    }

    .popup-form label {
      font-size: 12px;
      font-weight: 500;
      color: #333;
    }

    .service-options {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 15px 0 25px;
    }

    .service-btn {
      border: none;
      background: #ece8df;
      color: #807c74;
      border-radius: 25px;
      padding: 8px 18px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 12px;
    }

    .service-btn.active {
      background-color: #000;
      color: #fff;
    }

    .book-btn {
      background-color: #000;
      color: #fff;
      border: none;
      margin: 10px auto;
      width: 100%;
      padding: 15px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .book-btn:hover {
      background-color: #222;
    }

    @media (max-width: 500px) {
      .popup-form {
        padding: 20px;
        margin: 10px;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
      }
      .popup-overlay {
        padding: 10px;
        align-items: flex-start;
        padding-top: 80px;
      }
      .book-btn {
        font-size: 14px;
      }
    }


/* Base font sizes for desktop */
body {
  font-size: 16px; /* base font size */
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
}
h1,h2,h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3.5rem; /* desktop main headline */
  line-height: 1.1;
  margin-bottom: 1rem;
}
p, nav ul li a, .cta-btn-nav {
  font-size: 1rem; /* 16px */
  line-height: 1.5;
}

/* Tablet screens */
@media (max-width: 1024px) {
  h1,h2,h3 {
    font-size: 2.8rem !important; /* slightly smaller */
  }
  p, nav ul li a, .cta-btn-nav {
    font-size: 0.95rem;
  }
}

/* Mobile screens */
@media (max-width: 600px) {
  h1,h2,h3 {
    font-size: 2rem !important; /* smaller for small screens */
  }
  p, nav ul li a, .cta-btn-nav {
    font-size: 0.9rem;
  }
  .cta-btn-nav {
    padding: 12px 24px;
  }
}
