  :root {
      --primary: #1a3c34;
      --primary-dark: #132a24;
      --secondary: #ffd700;
      --secondary-dark: #e6c200;
      --accent: #ff6b6b;
      --dark: #212529;
      --light: #f8fafc;
      --gray: #64748b;
      --green-white: #28a745;
      --light-gray: #e2e8f0;
      --gradient: linear-gradient(135deg, #1a3c34, #2a5c50);
      --gradient-light: linear-gradient(135deg, rgba(26, 60, 52, 0.1), rgba(42, 92, 80, 0.1));
      --transition: all 0.3s ease;

      /* Updated package color variables */

      --basic: #6c757d;
      --basic-light: #f8f9fa;
      --basic-dark: #495057;

      --standard: #0d6efd;
      --standard-light: #e7f1ff;
      --standard-dark: #0b5ed7;

      --premium: #ff6b35;
      --premium-light: #fff5e6;
      --premium-dark: #e55a2b;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.7;
      color: var(--dark);
      background-color: #fff;
      overflow-x: hidden;
  }

  .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
  }

  /* Header & Navigation */
  header {
      background: white;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      transition: var(--transition);
      background-color: var(--primary-dark);
  }

  header.scrolled {
      padding: 0;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  nav {
      max-width: 1300px;
      margin: 0 auto;
      padding: 1.1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
  }

  /* Logo */
  .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary);
      text-decoration: none;
      display: flex;
      flex-direction: column;
      line-height: 1;
      flex-shrink: 0;
  }

  .logo-main {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--secondary-dark);
      letter-spacing: 0.5px;
  }

  .logo-sub {
      font-size: 0.9rem;
      font-weight: 400;
      color: var(--light);
      margin-top: 2px;
      letter-spacing: 1px;
  }

  /* Desktop Nav Links */
  .nav-links {
      display: flex;
      gap: 0rem;
      list-style: none;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 0;
  }

  .nav-links>li {
      position: relative;
  }

  .nav-links a {
      text-decoration: none;
      color: var(--light-gray);
      font-weight: 500;
      transition: var(--transition);
      position: relative;
      padding: 0.5rem 0;
      white-space: nowrap;
      display: block;
      font-size: 0.95rem;
  }

  .nav-links>li>a {
      padding: 0rem 1rem;
  }

  .nav-links a:hover {
      color: var(--secondary);
  }

  .nav-links>li>a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: var(--light-gray);
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      transition: width 0.3s ease;
  }

  .nav-links>li>a:hover::after {
      width: calc(100% - 2rem);
  }

  /* Dropdown - Desktop */
  .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      min-width: 220px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: var(--transition);
      padding: 0.8rem 0rem;
      z-index: 999;
  }

  .nav-links>li:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  .dropdown a {
      padding: 0.1rem 1.5rem;
      font-size: 0.95rem;
      color: var(--dark);
  }

  .dropdown a:hover {
      background: var(--light-gray);
      color: var(--primary);
      padding-left: 2rem;
  }

  /* Dropdown arrow */
  .has-dropdown>a::after {
      content: '\f078';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      font-size: 0.7rem;
      margin-left: 0.5rem;
      transition: transform 0.3s ease;
  }

  .nav-links>li:hover>.has-dropdown>a::after {
      transform: rotate(180deg);
  }

  /* Mobile Dropdown Toggle */
  .mobile-dropdown-toggle {
      display: none;
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.2rem;
      color: var(--gray);
      cursor: pointer;
  }

  /* Buttons */
  .nav-buttons {
      display: flex;
      gap: 1rem;
      align-items: center;
      flex-shrink: 0;
  }

  .btn {
      padding: 0.5rem 1.5rem;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      text-decoration: none;
      display: inline-block;
      text-align: center;
      white-space: nowrap;
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      touch-action: manipulation;
  }

  .btn-primary {
      background: var(--primary);
      color: white;
      border: 2px solid var(--primary);
  }

  .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(26, 60, 52, 0.3);
  }

  .btn-outline {
      background: transparent;
      border: 2px solid var(--secondary);
      color: var(--secondary);
  }

  .btn-outline:hover {
      background: var(--secondary);
      color: #000;
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
  }

  /* Mobile Menu Button - HIDDEN on desktop, VISIBLE only < 850px */
  .mobile-menu-btn {
      display: none;
      background: transparent;
      border: none;
      font-size: 1.8rem;
      color: var(--light);
      cursor: pointer;
      z-index: 1001;
      min-height: 44px;
      width: 44px;
      align-items: center;
      justify-content: center;
      padding: 0;
  }

  .mobile-nav-buttons {
      display: none;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
      max-width: 300px;
      margin: 2rem auto 0;
      padding: 0 1.5rem;
  }

  /* RESPONSIVE: Below 850px */
  @media (max-width: 850px) {
      nav {
          padding: 1rem 1.5rem;
      }

      /* SHOW hamburger menu icon */
      .mobile-menu-btn {
          display: flex !important;
      }

      .nav-links {
          position: fixed;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100vh;
          background: white;
          flex-direction: column;
          align-items: flex-start;
          justify-content: flex-start;
          padding-top: 100px;
          transition: left 0.4s ease;
          z-index: 999;
          gap: 0;
          overflow-y: auto;
          color: var(--dark);
          background-color: var(--primary);
      }

      .nav-links.active {
          left: 0;
      }

      .nav-links>li {
          width: 100%;
          border-bottom: 1px solid var(--light-gray);
      }

      .nav-links>li>a {
          padding: 1rem 1.5rem;
          display: flex;
          justify-content: space-between;
          align-items: center;
          width: 100%;
      }

      .mobile-dropdown-toggle {
          display: flex;
      }

      .dropdown {
          position: static;
          opacity: 1;
          visibility: visible;
          transform: none;
          box-shadow: none;
          background: white;
          padding: 0;
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.4s ease, padding 0.4s ease;
          border-radius: 0;
      }

      .dropdown.open {
          max-height: 600px;
          padding: 0.5rem 0;
      }

      .dropdown a {
          padding: 0.8rem 3rem;
          font-size: 1rem;
      }

      .has-dropdown>a::after {
          display: none;
      }

      .nav-buttons {
          display: none;
      }

      .mobile-nav-buttons {
          display: flex;
      }

      .logo-main {
          font-size: 1.5rem;
      }

      .logo-sub {
          font-size: 0.8rem;
      }
  }

  @media (max-width: 576px) {
      nav {
          padding: 0.8rem 1rem;
      }

      .logo-main {
          font-size: 1.4rem;
      }

      .logo-sub {
          font-size: 0.75rem;
      }

      .mobile-menu-btn {
          font-size: 1.5rem;
          width: 40px;
          height: 40px;
      }

      .nav-links>li>a {
          padding: 0.9rem 1.2rem;
          font-size: 0.95rem;
      }

      .dropdown a {
          padding-left: 2.5rem;
          font-size: 0.9rem;
      }

      .btn {
          padding: 0.6rem 1.2rem;
          min-height: 40px;
          font-size: 0.9rem;
      }

      .mobile-nav-buttons {
          padding: 0 1.2rem;
      }
  }

  /* Carousel */
  #carouselslide {
      margin-top: 80px;
  }

  .carousel-item {
      height: 80vh;
      min-height: 600px;
  }

  .carousel-item img {
      height: 100%;
      object-fit: cover;
      filter: brightness(0.7);
  }

  .carousel-caption {
      background: rgba(0, 0, 0, 0.6);
      padding: 2rem;
      border-radius: 16px;
      bottom: 20%;
      left: 10%;
      right: 10%;
      text-align: left;
  }

  .carousel-caption h5 {
      font-size: 2rem;
      font-weight: 700;
      color: var(--secondary);
      margin-bottom: 1rem;
      font-family: 'Playfair Display', serif;
  }

  .carousel-caption p {
      font-size: 1rem;
      color: white;
      margin-bottom: 1.5rem;
  }

  .carousel-indicators {
      bottom: 50px;
  }

  .carousel-indicators button {
      width: 12px !important;
      height: 12px !important;
      border-radius: 50% !important;
      margin: 0 8px !important;
  }

  /* Responsive Carousel */
  @media (max-width: 1200px) {
      .carousel-caption h5 {
          font-size: 2rem;
      }

      .carousel-caption p {
          font-size: 1rem;
      }
  }

  @media (max-width: 992px) {
      .carousel-item {
          height: 70vh;
          min-height: 500px;
      }

      .carousel-caption {
          padding: 2rem;
          bottom: 15%;
      }

      .carousel-caption h5 {
          font-size: 2.2rem;
      }

      .carousel-caption p {
          font-size: 1rem;
          margin-bottom: 1.2rem;
      }
  }

  @media (max-width: 768px) {
      #carouselslide {
          margin-top: 70px;
      }

      .carousel-indicators {
          bottom: 0px;
      }

      .carousel-item {
          height: 60vh;
          min-height: 400px;
      }

      .carousel-caption {
          left: 5%;
          right: 5%;
          padding: 1.5rem;
          bottom: 10%;
      }

      .carousel-caption h5 {
          font-size: 1.8rem;
      }

      .carousel-caption p {
          font-size: 0.95rem;
          margin-bottom: 1rem;
      }

      .carousel-caption .btn-primary {
          padding: 0.6rem 1.5rem;
          font-size: 0.9rem;
      }
  }

  @media (max-width: 576px) {
      .carousel-item {
          height: 50vh;
          min-height: 350px;
      }

      .carousel-caption {
          padding: 1.2rem;
          bottom: 5%;
      }

      .carousel-caption h5 {
          font-size: 1.5rem;
      }

      .carousel-caption p {
          font-size: 0.85rem;
          margin-bottom: 0.8rem;
      }

      .carousel-indicators {
          bottom: 0px;
      }

      .carousel-caption .btn-primary {
          padding: 0.5rem 1.2rem;
          font-size: 0.85rem;
      }
  }

  /* Sections */
  .section__container {
      padding: 2rem 1rem;
      text-align: center;
  }

  .section__header {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--primary);
      position: relative;
      display: inline-block;
  }

  .section__header::after {
      content: '';
      position: absolute;
      width: 80px;
      height: 4px;
      background: var(--secondary);
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
  }

  .section__description {
      max-width: 800px;
      margin: 1rem auto 2rem;
      color: var(--gray);
      font-size: 1rem;
  }

  /* Footer */
  footer {
      background: var(--primary-dark);
      color: #ccc;
      padding: 1rem 2rem 1rem;
      text-align: center;
  }

  .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .footer-share {
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .footer-share span {
      font-size: 0.8rem;
      font-weight: 600;
      color: #fff;
      letter-spacing: 2px;
      margin-bottom: 0.5rem;
  }

  .social-icons {
      display: flex;
      gap: 0.5rem;
      align-items: center;
  }

  .social-icons a {
      color: var(--secondary);
      font-size: 0.8rem;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
  }

  .social-icons a:hover {
      color: #fff;
      background: rgba(255, 215, 0, 0.2);
      transform: translateY(-3px);
  }

  .footer-copyright {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      width: 100%;
  }

  .copyright-text {
      font-size: 0.8rem;
      color: #aaa;
  }

  .copyright-text strong {
      color: var(--secondary);
      font-weight: 600;
  }

  .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
  }

  .footer-links a {
      color: #ccc;
      text-decoration: none;
      font-size: 0.8rem;
      transition: var(--transition);
  }

  .footer-links a:hover {
      color: var(--secondary);
  }

  .footer-links span {
      color: rgba(255, 255, 255, 0.3);
  }

  /* Scroll to Top */
  #scrollToTop {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      background: var(--secondary);
      color: #000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      opacity: 0;
      transition: var(--transition);
      border: none;
  }

  #scrollToTop.show {
      opacity: 1;
  }

  #scrollToTop:hover {
      background: var(--secondary-dark);
      transform: translateY(-5px);
  }

  /* Pricing Section */
  .pricing-section {
      position: relative;
      overflow: hidden;
  }

  .pricing__toggle-container {
      background: #e9ecef;
      border-radius: 50px;
      padding: 6px;
      display: inline-flex;
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 2;
  }

  .pricing__toggle-label {
      padding: 10px 30px;
      cursor: pointer;
      border-radius: 50px;
      transition: var(--transition);
      font-weight: 500;
      user-select: none;
  }

  .pricing__toggle-label.active {
      background: var(--green-white);
      color: var(--light);
      font-weight: 600;
  }

  .pricing-slider-container {
      position: relative;
      width: 100%;
      overflow: hidden;
  }

  .pricing-slider {
      display: flex;
      transition: transform 0.5s ease;
      width: 200%;
  }

  .pricing-group {
      width: 50%;
      flex-shrink: 0;
      padding: 0 1rem;
  }

  .pricing__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
  }

  .pricing__card {
      background: white;
      border-radius: 16px;
      padding: 2.5rem 2rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: var(--transition);
      position: relative;
      border: 2px solid transparent;
      height: 100%;
      display: flex;
      flex-direction: column;
  }

  .pricing__card:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  }

  /* Updated Package-specific styles */
  .pricing__card.basic {
      background: var(--basic-light);
      border-top: 5px solid var(--basic);
  }

  .pricing__card.standard {
      background: var(--standard-light);
      border-top: 5px solid var(--standard);
  }

  .pricing__card.premium {
      background: var(--premium-light);
      border-top: 5px solid var(--premium);
  }

  .pricing__card.popular {
      border-color: #93efa8ff;
  }

  .pricing__popular-label {
      background: var(--green-white);
      color: var(--light);
      padding: 0.4rem 1.5rem;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      box-shadow: 0 4px 10px #81f79dff;
  }

  .pricing__title {
      font-weight: 700;
      margin-bottom: 1rem;
      position: relative;
      padding-bottom: 0.5rem;
  }

  .pricing__title.basic {
      color: var(--basic-dark);
  }

  .pricing__title.standard {
      color: var(--standard-dark);
  }

  .pricing__title.premium {
      color: var(--premium-dark);
  }

  .pricing__title::after {
      content: '';
      position: absolute;
      width: 50px;
      height: 3px;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
  }

  .pricing__title.basic::after {
      background: var(--basic);
  }

  .pricing__title.standard::after {
      background: var(--standard);
  }

  .pricing__title.premium::after {
      background: var(--premium);
  }

  .pricing__description {
      color: var(--gray);
      margin-bottom: 1.5rem;
      font-size: 0.95rem;
      line-height: 1.5;
      text-align: center;
  }

  .pricing__features {
      list-style: none;
      text-align: left;
      margin: 2rem 0;
      padding: 0;
      flex-grow: 1;
  }

  .pricing__features li {
      padding: 0.5rem 0;
      color: var(--dark);
      display: flex;
      align-items: flex-start;
      font-size: 0.95rem;
  }

  .pricing__features li i {
      margin-right: 10px;
      margin-top: 5px;
      flex-shrink: 0;
  }

  .pricing__features li .fa-check {
      color: var(--green-white);
  }

  .pricing__features li .fa-times {
      color: #ff6b6b;
  }

  .pricing__btn {
      padding: 0.9rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      margin-top: auto;
      transition: var(--transition);
      width: 100%;
      text-align: center;
      font-size: 1rem;
      border: 2px solid transparent;
  }

  .pricing__btn.basic {
      background: var(--basic);
      color: white;
  }

  .pricing__btn.standard {
      background: var(--standard);
      color: #333;
  }

  .pricing__btn.premium {
      background: var(--premium);
      color: #333;
  }

  .pricing__btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .pricing__btn.basic:hover {
      background: white;
      color: var(--basic-dark);
      border-color: var(--basic);
  }

  .pricing__btn.standard:hover {
      background: white;
      color: var(--standard-dark);
      border-color: var(--standard);
  }

  .pricing__btn.premium:hover {
      background: white;
      color: var(--premium-dark);
      border-color: var(--premium);
  }

  /* Large Desktop Screens (1200px and above) */
  @media (min-width: 1200px) {
      .pricing__grid {
          grid-template-columns: repeat(3, 1fr);
          gap: 2.5rem;
          max-width: 1300px;
      }

      .pricing__card {
          padding: 3rem 2.5rem;
      }

      .pricing__title {
          font-size: 2rem;
      }
  }

  /* Medium Desktop Screens (992px to 1199px) */
  @media (min-width: 992px) and (max-width: 1199px) {
      .pricing__grid {
          grid-template-columns: repeat(3, 1fr);
          gap: 2rem;
      }

      .pricing__card {
          padding: 2.2rem 1.8rem;
      }

      .pricing__title {
          font-size: 1.6rem;
      }

      .pricing__features li {
          font-size: 0.9rem;
      }
  }

  /* Tablet Screens (768px to 991px) */
  @media (min-width: 768px) and (max-width: 991px) {
      .pricing__grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 2rem;
          max-width: 800px;
      }

      .pricing-group {
          padding: 0 0.5rem;
      }

      .pricing__card {
          padding: 2rem 1.5rem;
      }

      .pricing__title {
          font-size: 1.5rem;
      }

      .pricing__description {
          font-size: 0.9rem;
          margin-bottom: 1.2rem;
      }

      .pricing__features {
          margin: 1.5rem 0;
      }

      .pricing__features li {
          font-size: 0.9rem;
          padding: 0.4rem 0;
      }

      .pricing__btn {
          padding: 0.8rem 1.5rem;
          font-size: 0.95rem;
      }

      .pricing__toggle-label {
          padding: 8px 25px;
          font-size: 0.95rem;
      }
  }

  /* Small Tablet Screens (576px to 767px) */
  @media (min-width: 576px) and (max-width: 767px) {
      .pricing__grid {
          grid-template-columns: 1fr;
          gap: 2rem;
          max-width: 500px;
      }

      .pricing-group {
          padding: 0 0.5rem;
      }

      .pricing__card {
          padding: 2rem 1.5rem;
      }

      .pricing__title {
          font-size: 1.5rem;
          text-align: center;
      }

      .pricing__description {
          font-size: 0.9rem;
          text-align: center;
          margin-bottom: 1.2rem;
          padding: 0 0.5rem;
      }

      .pricing__features {
          margin: 1.5rem 0;
      }

      .pricing__features li {
          font-size: 0.9rem;
          padding: 0.4rem 0;
      }

      .pricing__btn {
          padding: 0.8rem 1.5rem;
          font-size: 0.95rem;
      }

      .pricing__toggle-container {
          margin-bottom: 2.5rem;
      }

      .pricing__toggle-label {
          padding: 8px 20px;
          font-size: 0.9rem;
      }

      .section__container {
          padding: 4rem 1rem;
      }

      .section__header {
          font-size: 2.2rem;
      }
  }

  /* Mobile Screens (480px to 575px) */
  @media (min-width: 480px) and (max-width: 575px) {
      .pricing__grid {
          grid-template-columns: 1fr;
          gap: 1.8rem;
          max-width: 420px;
      }

      .pricing-group {
          padding: 0 0.5rem;
      }

      .pricing__card {
          padding: 1.8rem 1.2rem;
          border-radius: 12px;
      }

      .pricing__popular-label {
          font-size: 0.75rem;
          padding: 0.3rem 1.2rem;
          top: -10px;
      }

      .pricing__title {
          font-size: 1.4rem;
          text-align: center;
          margin-bottom: 0.8rem;
      }

      .pricing__description {
          font-size: 0.85rem;
          text-align: center;
          margin-bottom: 1rem;
          padding: 0;
          line-height: 1.4;
      }

      .pricing__features {
          margin: 1.2rem 0;
      }

      .pricing__features li {
          font-size: 0.85rem;
          padding: 0.3rem 0;
          line-height: 1.4;
      }

      .pricing__features li i {
          margin-right: 8px;
          margin-top: 3px;
          font-size: 0.9rem;
      }

      .pricing__btn {
          padding: 0.7rem 1.2rem;
          font-size: 0.9rem;
          border-radius: 40px;
      }

      .pricing__toggle-container {
          margin-bottom: 2rem;
          padding: 5px;
      }

      .pricing__toggle-label {
          padding: 7px 18px;
          font-size: 0.85rem;
      }

      .section__container {
          padding: 3.5rem 1rem;
      }

      .section__header {
          font-size: 2rem;
      }

      .section__description {
          font-size: 0.95rem;
          margin: 1.5rem auto 2rem;
      }
  }

  /* Extra Small Mobile Screens (below 480px) */
  @media (max-width: 479px) {
      .pricing__grid {
          grid-template-columns: 1fr;
          gap: 1.5rem;
          max-width: 100%;
          padding: 0 0.5rem;
      }

      .pricing-group {
          padding: 0 0.3rem;
      }

      .pricing__card {
          padding: 1.5rem 1rem;
          border-radius: 10px;
          margin: 0 0.5rem;
      }

      .pricing__popular-label {
          font-size: 0.7rem;
          padding: 0.25rem 1rem;
          top: -8px;
      }

      .pricing__title {
          font-size: 1.3rem;
          text-align: center;
          margin-bottom: 0.7rem;
      }

      .pricing__description {
          font-size: 0.8rem;
          text-align: center;
          margin-bottom: 0.8rem;
          padding: 0;
          line-height: 1.4;
      }

      .pricing__features {
          margin: 1rem 0;
      }

      .pricing__features li {
          font-size: 0.8rem;
          padding: 0.25rem 0;
          line-height: 1.3;
      }

      .pricing__features li i {
          margin-right: 6px;
          margin-top: 2px;
          font-size: 0.8rem;
      }

      .pricing__btn {
          padding: 0.6rem 1rem;
          font-size: 0.85rem;
          border-radius: 40px;
          min-height: 40px;
      }

      .pricing__toggle-container {
          margin-bottom: 1.8rem;
          padding: 4px;
          max-width: 90%;
      }

      .pricing__toggle-label {
          padding: 6px 16px;
          font-size: 0.8rem;
      }

      .section__container {
          padding: 3rem 0.5rem;
      }

      .section__header {
          font-size: 1.8rem;
          margin-bottom: 0.8rem;
      }

      .section__description {
          font-size: 0.85rem;
          margin: 1.2rem auto 1.8rem;
          padding: 0 0.5rem;
      }

      /* Adjust carousel margin for small screens */
      #carouselslide {
          margin-top: 60px;
      }
  }

  /* Very Small Screens (below 360px) */
  @media (max-width: 359px) {
      .pricing__card {
          padding: 1.2rem 0.8rem;
          margin: 0 0.3rem;
      }

      .pricing__title {
          font-size: 1.1rem;
      }

      .pricing__description {
          font-size: 0.75rem;
      }

      .pricing__features li {
          font-size: 0.75rem;
      }

      .pricing__features li i {
          font-size: 0.75rem;
          margin-right: 5px;
      }

      .pricing__btn {
          padding: 0.5rem 0.8rem;
          font-size: 0.8rem;
      }

      .pricing__toggle-label {
          padding: 5px 12px;
          font-size: 0.75rem;
      }

      .section__header {
          font-size: 1.6rem;
      }
  }

  /* Landscape Orientation for Mobile */
  @media (max-height: 600px) and (orientation: landscape) {
      .pricing__card {
          padding: 1.5rem 1rem;
          min-height: auto;
      }

      .pricing__features {
          margin: 1rem 0;
      }

      .pricing__features li {
          padding: 0.2rem 0;
          font-size: 0.8rem;
      }

      .pricing__btn {
          padding: 0.5rem 1rem;
          margin-top: 0.5rem;
      }
  }

  /* High DPI Screens (Retina) */
  @media (-webkit-min-device-pixel-ratio: 2),
  (min-resolution: 192dpi) {
      .pricing__card {
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      }

      .pricing__card:hover {
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }
  }

  /* Print Styles */
  @media print {

      .pricing__toggle-container,
      .pricing__btn,
      .pricing__card:hover {
          display: none !important;
      }

      .pricing__grid {
          display: block !important;
      }

      .pricing__card {
          break-inside: avoid;
          margin-bottom: 20px;
          box-shadow: none !important;
          border: 1px solid #ddd !important;
      }

      .pricing-slider {
          transform: none !important;
          width: 100% !important;
      }

      .pricing-group {
          width: 100% !important;
      }
  }

  /* Responsive Pricing */
  @media (max-width: 768px) {
      .pricing__grid {
          grid-template-columns: 1fr;
          max-width: 400px;
      }

      .pricing__toggle-label {
          padding: 8px 20px;
          font-size: 0.9rem;
      }
  }

  @media (max-width: 480px) {
      .pricing__card {
          padding: 2rem 1.5rem;
      }

      .pricing__features li {
          font-size: 0.9rem;
      }
  }

  .pricing-slider {
      display: flex;
      transition: transform 0.5s ease;
      width: 200%;
      /* Two groups at 50% each */
  }

  .pricing-group {
      width: 50%;
      flex-shrink: 0;
  }