    /* ==========================================================================
     END OF CSS FILE
     ========================================================================== *//* ==========================================================================
     COMPLETE OPTIMIZED CSS FILE - MOBILE RESPONSIVE
     ========================================================================== */
  
  /* Google Fonts Imports */
  @import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
  @import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
  @import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");
  
  /* ==========================================================================
     CSS CUSTOM PROPERTIES (VARIABLES)
     ========================================================================== */
  
  :root {
    /* Brand Colors */
    --blue: #015AAA;
    --red: #FF0031;
    --primary-color: var(--red);
    --blue-shade: #eaf2f9;
    --red-shade: #fff1f4;
    --linear-gradient: linear-gradient(75deg, #001c3d, var(--blue));
    --white: #fff;
    --black: #000;
    --dark-grey: #ced3d6;
    --light-grey: #f6f6f7;
    --shade-border: #d4ebff;
    --blue-shade-border: #d4ebff;
    
    /* Spacing */
    --section-padding: 100px;
    --separator-margin: 50px;
    
    /* Text Colors */
    --txt-light: #5b636a;
    --txt-dark: #192937;
    
    /* Font Sizes */
    --fs-small: 12px;
    --fs-medium: 14px;
    --fs-medium-large: 16px;
    --fs-large: 22px;
    --fs-extra-large: 26px;
    
    /* Line Heights */
    --lh-medium: 23px;
    --lh-medium-large: 27px;
    --lh-large: 45px;
    
    /* Font Weights */
    --fw-light: 300;
    --fw-medium: 300;
    --fw-medium-bold: 500;
    --fw-bold: 700;
    
    /* Border Radius */
    --br-small: 5px;
    --br-medium: 15px;
    --br-large: 20px;
    --br-extra-large: 50px;
    
    /* Z-Index Scale */
    --z-header: 99;
    --z-mobile-menu: 999;
    --z-modal: 9999;
  }
  
  /* ==========================================================================
     GLOBAL RESET & BASE STYLES
     ========================================================================== */
  
  * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Lexend", sans-serif;
    scroll-behavior: smooth;
  }
  
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    font-size: 16px;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
  }
  
  body {
    background-color: var(--white);
    color: var(--txt-dark);
    overflow-x: hidden;
    min-height: 100vh;
    font-family: "Lexend", sans-serif;
  }
  
  /* ==========================================================================
     TYPOGRAPHY
     ========================================================================== */
  
  .large-heading {
    font-size: var(--fs-extra-large);
    font-weight: var(--fw-bold);
    color: var(--txt-dark);
    line-height: var(--lh-large);
  }
  
  .medium-heading {
    font-size: var(--fs-large);
    font-weight: var(--fw-medium-bold);
    color: var(--txt-dark);
    line-height: var(--lh-medium-large);
  }
  
  .small-heading {
    font-size: var(--fs-medium-large);
    font-weight: var(--fw-medium-bold);
    color: var(--txt-dark);
    line-height: var(--lh-medium-large);
  }
  
  p,
  a {
    color: var(--txt-light);
    font-size: var(--fs-medium);
    font-weight: var(--fw-medium);
    line-height: var(--lh-medium);
    text-decoration: none;
  }
  
  pa,
  aa {
    display: inline-block;
  }
  
  /* ==========================================================================
     FORM ELEMENTS
     ========================================================================== */
  
  input,
  select,
  textarea {
    outline: none;
    border: none;
    background-color: var(--white);
    font-family: inherit;
  }
  
  input:focus,
  select:focus,
  textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }
  
  /* ==========================================================================
     BUTTONS
     ========================================================================== */
  
  button,
  .btn-link {
    outline: none;
    border: none;
    background-color: transparent;
    font-size: var(--fs-medium);
    font-weight: var(--fw-medium-bold);
    border-radius: var(--br-small);
    cursor: pointer;
    width: fit-content;
    height: 55px;
    padding: 0px 40px;
    flex-shrink: 0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    min-height: 44px; /* Touch-friendly minimum */
    min-width: 44px;
  }
  
  button:focus,
  .btn-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }
  
  button.round,
  .btn-link.round {
    padding: 0px;
    height: unset;
  }
  
  button.primary-btn,
  .btn-link.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
  }
  
  button.primary-btn:hover,
  .btn-link.primary-btn:hover {
    background-color: #e6002b;
    transform: translateY(-1px);
  }
  
  button.secondary-btn,
  .btn-link.secondary-btn {
    color: var(--white);
    background-color: var(--blue);
  }
  
  button.secondary-btn:hover,
  .btn-link.secondary-btn:hover {
    background-color: #014a96;
    transform: translateY(-1px);
  }
  
  button:disabled,
  .btn-link:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }
  
  /* ==========================================================================
     LISTS
     ========================================================================== */
  
  ul {
    list-style: none;
  }
  
  ul li {
    list-style: none;
  }
  
  /* ==========================================================================
     IMAGES
     ========================================================================== */
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  div img {
    width: 100%;
  }
  
  /* ==========================================================================
     SECTIONS & CONTAINERS
     ========================================================================== */
  
  section {
    width: 100%;
    background-color: var(--white);
    position: relative;
  }
  
  .section-padding {
    padding: var(--section-padding) 0px;
  }
  
  .section-padding-bottom {
    padding-bottom: var(--section-padding);
  }
  
  .section-padding-top {
    padding-top: var(--section-padding);
  }
  
  .inner-container {
    width: 95%;
    max-width: 1550px;
    margin: 0px auto;
    overflow: hidden; /* Prevent horizontal scroll */
  }
  
  /* ==========================================================================
     HEADINGS & CONTENT BLOCKS
     ========================================================================== */
  
  .heading {
    width: 100%;
    text-align: center;
  }
  
  .heading.align-left {
    text-align: left;
  }
  
  .heading.align-left .pill {
    margin: 0px auto 20px 0px;
  }
  
  .heading.align-left h2 {
    margin: 0px auto 20px 0px;
    max-width: unset;
  }
  
  .heading.align-left p {
    margin: 0px auto 0px 0px;
    max-width: unset;
  }
  
  .heading.align-left .cta {
    margin: 25px auto 0px 0px;
    justify-content: left;
  }
  
  .heading .pill {
    margin: 0px auto 20px auto;
    color: var(--primary-color);
    font-weight: var(--fw-bold);
    width: fit-content;
    gap: 15px;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: var(--fs-small);
    display: flex;
    align-items: center;
  }
  
  .heading .pill.blue {
    color: var(--blue);
  }
  
  .heading h2 {
    max-width: 1000px;
    margin: 0px auto 20px auto;
    text-transform: uppercase;
  }
  
  .heading h2 span {
    color: var(--blue);
  }
  
  .heading h2 span.highlight {
    background-color: var(--primary-color);
    border-radius: var(--br-extra-large);
    padding: 3px 15px 4px 15px;
    color: var(--white);
  }
  
  .heading p {
    max-width: 900px;
    margin: 0px auto;
  }
  
  .heading .cta {
    gap: 10px;
    margin: 25px auto 0px auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* ==========================================================================
     CUSTOM LISTS
     ========================================================================== */
  
  .custom-ul {
    width: 100%;
  }
  
  .custom-ul .li {
    width: fit-content;
    gap: 20px;
    margin: 12px 0px;
    display: flex;
    align-items: center;
  }
  
  .custom-ul .li svg {
    color: var(--blue);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
  }
  
  .custom-ul .li p {
    width: 100%;
  }
  
  /* ==========================================================================
     IMAGE CONTENT LAYOUTS
     ========================================================================== */
  
  .image-content {
    gap: 80px;
    align-items: stretch;
    display: flex;
  }
  
  .image-content .image {
    width: 45%;
    border-radius: var(--br-medium);
    height: auto;
    min-height: 450px;
    flex-shrink: 0;
  }
  
  .image-content .content {
    width: 55%;
    flex-grow: 1;
  }
  
  /* ==========================================================================
     BACKGROUND IMAGES
     ========================================================================== */
  
  .bg-img {
    background-size: cover;
    background-position: center;
    background-color: var(--light-grey);
    position: relative;
    background-attachment: scroll; /* Better mobile performance */
  }
  
  /* ==========================================================================
     SCROLL & UTILITY CLASSES
     ========================================================================== */
  
  .scroll-horizontally {
    overflow-x: auto;
    flex-wrap: nowrap;
    align-items: stretch !important;
    display: flex;
  }
  
  .scroll-horizontally::-webkit-scrollbar {
    height: 8px;
  }
  
  .scroll-horizontally::-webkit-scrollbar-track {
    background: var(--light-grey);
  }
  
  .scroll-horizontally::-webkit-scrollbar-thumb {
    background: var(--dark-grey);
    border-radius: 4px;
  }
  
  .scroll-horizontally::-webkit-scrollbar-thumb:hover {
    background: var(--blue);
  }
  
  /* ==========================================================================
     FLEXBOX UTILITIES
     ========================================================================== */
  
  .flex-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  
  .flex-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .flex-around {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  
  .flex-column {
    display: flex;
    flex-direction: column;
  }
  
  /* ==========================================================================
     SHAPE UTILITIES
     ========================================================================== */
  
  .round {
    border-radius: 50%;
    aspect-ratio: 1/1;
    flex-shrink: 0;
  }
  
  .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* ==========================================================================
     HEADER STYLES
     ========================================================================== */
  
  header {
    width: 100%;
    background-color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-header);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  header .inner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    position: relative;
    padding: 10px 0px;
    min-height: 70px;
  }
  
  /* Header Logo */
  header .inner-container .logo {
    width: 180px;
    flex-shrink: 0;
    z-index: 10;
    transition: width 0.3s ease;
  }
  
  header .inner-container .logo img {
    width: 100%;
    height: auto;
  }
  
  /* Header Navigation */
  header .inner-container nav {
    margin-left: 30px;
    flex-grow: 1;
    display: flex;
    justify-content: center;
  }
  
  header .inner-container nav ul {
    width: fit-content;
    gap: 10px;
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  header .inner-container nav ul li {
    width: fit-content;
    position: relative;
  }
  
  /* Dropdown Menus */
  header .inner-container nav ul li.dropdown {
    position: relative;
  }
  
  header .inner-container nav ul li.dropdown.active a:not(.submenu a),
  header .inner-container nav ul li.dropdown.active svg {
    color: var(--primary-color);
  }
  
  header .inner-container nav ul li.dropdown:hover a:not(.submenu a),
  header .inner-container nav ul li.dropdown:hover svg {
    color: var(--primary-color);
  }
  
  header .inner-container nav ul li.dropdown:hover .submenu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  
  header .inner-container nav ul li.dropdown svg {
    color: var(--txt-light);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: color 0.3s ease;
  }
  
  header .inner-container nav ul li.dropdown .submenu {
    width: 250px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: var(--br-small);
    background-color: var(--white);
    overflow: hidden;
    padding: 20px 0px;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 100;
  }
  
  header .inner-container nav ul li.dropdown .submenu a {
    width: 100%;
    display: block;
    padding: 15px 30px;
    transition: all 0.3s ease;
  }
  
  header .inner-container nav ul li.dropdown .submenu a:hover {
    background-color: var(--blue-shade);
    color: var(--primary-color);
  }
  
  header .inner-container nav ul li.dropdown .submenu a.active {
    color: var(--primary-color);
    background-color: var(--red-shade);
  }
  
  /* Navigation Links */
  header .inner-container nav ul li a,
  header .inner-container nav ul li p {
    cursor: pointer;
    font-weight: var(--fw-medium-bold);
    color: var(--txt-dark);
    position: relative;
    padding: 20px 10px;
    font-size: 14px;
    transition: color 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    min-height: 44px;
  }
  
  header .inner-container nav ul li a:hover,
  header .inner-container nav ul li a.active,
  header .inner-container nav ul li p:hover,
  header .inner-container nav ul li p.active {
    color: var(--primary-color);
  }
  
  /* Header Actions */
  header .inner-container .actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 0;
  }
  
  header .inner-container .actions .btn-link {
    width: fit-content;
    height: 40px;
    padding: 0px 15px;
    font-size: 12px;
    transition: all 0.3s ease;
  }
  
  /* Call Us Now Section */
  header .inner-container .actions .call-us-now {
    width: fit-content;
    flex-shrink: 0;
    gap: 20px;
    margin-left: 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  header .inner-container .actions .call-us-now:hover {
    transform: translateY(-2px);
  }
  
  header .inner-container .actions .call-us-now .icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    position: relative;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  header .inner-container .actions .call-us-now .icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border: 1.5px solid var(--dark-grey);
    opacity: 0.5;
  }
  
  header .inner-container .actions .call-us-now .icon svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  
  header .inner-container .actions .call-us-now .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  header .inner-container .actions .call-us-now .content p {
    margin: 0;
    font-size: 12px;
    color: var(--txt-light);
  }
  
  header .inner-container .actions .call-us-now .content h2 {
    margin: 0;
    font-size: 14px;
    color: var(--txt-dark);
  }
  
  /* Mobile Menu Button */
  header .inner-container .mobile-menu-btn {
    display: none;
    margin-left: 15px;
    flex-shrink: 0;
    width: fit-content;
    color: var(--txt-light);
    cursor: pointer;
    gap: 10px;
    padding: 10px;
    border-radius: var(--br-small);
    transition: all 0.3s ease;
    min-height: 44px;
    align-items: center;
  }
  
  header .inner-container .mobile-menu-btn:hover {
    color: var(--blue);
    background-color: var(--blue-shade);
  }
  
  header .inner-container .mobile-menu-btn p {
    font-size: 15px;
    font-weight: var(--fw-medium-bold);
    margin: 0;
  }
  
  header .inner-container .mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  
  /* ==========================================================================
     MOBILE MENU
     ========================================================================== */
  
  .mobile-menu {
    position: fixed;
    bottom: 0;
    right: -110%;
    width: 100%;
    height: 100%;
    z-index: var(--z-mobile-menu);
    transition: right 0.5s ease;
  }
  
  .mobile-menu.shown {
    right: 0;
  }
  
  .mobile-menu.shown .overlay {
    opacity: 1;
  }
  
  .mobile-menu.shown .menu {
    right: 0;
  }
  
  .mobile-menu .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: pointer;
  }
  
  .mobile-menu .menu {
    background-color: var(--white);
    width: 90%;
    max-width: 450px;
    height: 100%;
    position: absolute;
    right: -100%;
    bottom: 0;
    border-top-left-radius: var(--br-medium);
    border-top-right-radius: var(--br-medium);
    padding-bottom: 20px;
    transition: right 0.5s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .mobile-menu .menu .header {
    width: 100%;
    padding: 15px 25px;
    border-bottom: 1px solid #eee;
    margin-bottom: 5px;
    position: sticky;
    top: 0;
    left: 0;
    background-color: var(--white);
    z-index: 100;
    flex-shrink: 0;
  }
  
  .mobile-menu .menu .header .close-btn {
    color: var(--red);
    background-color: var(--red-shade);
    width: 35px;
    height: 35px;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .mobile-menu .menu .header .close-btn:hover {
    border-color: var(--red);
    background-color: var(--red);
    color: var(--white);
  }
  
  .mobile-menu .menu .header .close-btn svg {
    width: 18px;
    height: 18px;
  }
  
  .mobile-menu .menu nav {
    width: 100%;
    overflow-y: auto;
    flex-grow: 1;
    padding-bottom: 20px;
  }
  
  .mobile-menu .menu nav ul {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .mobile-menu .menu nav ul li {
    width: 100%;
  }
  
  .mobile-menu .menu nav ul li a,
  .mobile-menu .menu nav ul li p {
    width: 100%;
    display: block;
    cursor: pointer;
    font-weight: var(--fw-medium-bold);
    color: var(--txt-dark);
    position: relative;
    padding: 15px 25px;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    border-bottom: 1px solid transparent;
  }
  
  .mobile-menu .menu nav ul li a:hover,
  .mobile-menu .menu nav ul li a.active,
  .mobile-menu .menu nav ul li p:hover,
  .mobile-menu .menu nav ul li p.active {
    color: var(--primary-color);
    background-color: var(--red-shade);
    border-bottom-color: var(--red);
  }
  
  /* ==========================================================================
     HERO SECTIONS
     ========================================================================== */
  
  .hero-section.main-title {
    width: 100%;
    height: fit-content;
    position: relative;
    background-image: unset;
    background-color: transparent;
    position: sticky;
    top: 0;
    left: 0;
  }
  
  .hero-section.main-title .content {
    text-align: center;
    position: relative;
    padding: 20px 0px;
  }
  
  .hero-section.main-title .content p {
    color: var(--white);
  }
  
  .hero-section.main-title .content h1 {
    font-size: 45px;
    font-weight: var(--fw-medium-bold);
    color: var(--white);
    margin-bottom: 25px;
  }
  
  .hero-section.main-title .content .description {
    font-size: var(--fs-medium-large);
    line-height: var(--lh-medium-large);
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* ==========================================================================
     BODY GRADIENT & WRAPPER
     ========================================================================== */
  
  body.gradient {
    background-image: var(--linear-gradient);
  }
  
  .wrapper {
    position: relative;
    z-index: 5;
    background-color: var(--white);
    border-radius: var(--br-medium);
    max-width: 99%;
    margin: 0px auto;
    overflow: hidden;
  }
  
  /* ==========================================================================
     HOME PAGE STYLES
     ========================================================================== */
  
  /* Hero Section */
  .home-page .hero-section {
    width: 100%;
    background-color: var(--blue);
    height: 100vh;
    background-position-x: left;
    background-image: url("http://acb.blaqberry.site/wp-content/uploads/2022/11/paid-in-full-scaled.jpg");
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .home-page .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-80deg, rgba(0, 80, 151, 0.85), rgba(0, 18, 50, 0.85));
    z-index: 1;
  }
  
  .home-page .hero-section .content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 40px 0;
  }
  
  .home-page .hero-section .content .image {
    width: 350px;
    margin: 0px auto;
    flex-shrink: 0;
  }
  
  .home-page .hero-section .content .sub-heading {
    margin: 25px auto;
    color: var(--white);
  }
  
  .home-page .hero-section .content h1 {
    font-size: 45px;
    line-height: 65px;
    text-transform: uppercase;
    font-weight: var(--fw-bold);
    color: var(--white);
    margin-bottom: 25px;
  }

/* Base H2 styling (your existing styles) */
.home-page .hero-section .content h2 {
    font-size: 30px;
    line-height: 35px;
    text-transform: uppercase;
    font-weight: var(--fw-bold);
    color: var(--white);
    margin-bottom: 25px;
}

/* Circling effect container */
.circled-heading {
    position: relative;
    display: inline-block;
    width: 100%;
}

.circled-text {
    position: relative;
    z-index: 2;
    display: inline;
}

/* Highlight circle wrapper */
.highlight-circle {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

/* Animated SVG circle */
.highlight-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: calc(100% + 25px);
    height: calc(100% + 20px);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 150' preserveAspectRatio='none'%3E%3Cpath d='M325,18C228.7-8.3,118.5,8.3,78,21C22.4,38.4,4.6,54.6,5.6,77.6c1.4,32.4,52.2,54,142.6,63.7 c66.2,7.1,212.2,7.5,273.5-8.3c64.4-16.6,104.3-57.6,33.8-98.2C386.7-4.9,179.4-1.4,126.3,20.7' fill='none' stroke='%23ff0031' stroke-width='4.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    animation: drawCircle 2.5s ease-out 0.8s forwards;
}

/* Main animation keyframes */
@keyframes drawCircle {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.7) rotate(-8deg);
        filter: blur(1.5px);
    }
    25% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.85) rotate(-4deg);
        filter: blur(1px);
    }
    60% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(0.98) rotate(0deg);
        filter: blur(0.3px);
    }
    100% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        filter: blur(0px);
    }
}

/* Hover effect for additional interactivity */
.highlight-circle:hover::before {
    animation-play-state: paused;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.03);
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .home-page .hero-section .content h2 {
        font-size: 24px;
        line-height: 30px;
    }
    
    .highlight-circle::before {
        width: calc(100% + 20px);
        height: calc(100% + 15px);
        animation-duration: 2s;
    }
}

@media (max-width: 480px) {
    .home-page .hero-section .content h2 {
        font-size: 20px;
        line-height: 26px;
    }
    
    .highlight-circle::before {
        width: calc(100% + 15px);
        height: calc(100% + 12px);
        animation-duration: 1.8s;
    }
}

/* Accessibility: Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .highlight-circle::before {
        animation: fadeInSimple 0.5s ease-out 0.3s forwards;
    }
}

@keyframes fadeInSimple {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Alternative color themes (optional) */
.highlight-circle.theme-accent::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 150' preserveAspectRatio='none'%3E%3Cpath d='M325,18C228.7-8.3,118.5,8.3,78,21C22.4,38.4,4.6,54.6,5.6,77.6c1.4,32.4,52.2,54,142.6,63.7 c66.2,7.1,212.2,7.5,273.5-8.3c64.4-16.6,104.3-57.6,33.8-98.2C386.7-4.9,179.4-1.4,126.3,20.7' fill='none' stroke='%23ff00315' stroke-width='4.5'/%3E%3C/svg%3E");
}
  
  .home-page .hero-section .content .description {
    color: var(--white);
    font-size: var(--fs-medium-large);
    line-height: var(--lh-medium-large);
    max-width: 700px;
    margin: 0 auto;
  }
  
  .home-page .hero-section .content .call-to-actions {
    gap: 60px;
    margin-top: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .home-page .hero-section .content .call-to-actions .primary-btn {
    height: 65px;
    padding: 0px 60px;
  }
  
  .home-page .hero-section .content .call-to-actions .watch-btn {
    width: 65px;
    height: 65px;
    color: var(--white);
    position: relative;
    z-index: 2;
    cursor: pointer;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
    background-color: var(--red);
    border-radius: 50%;
    animation: breath 1.5s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .home-page .hero-section .content .call-to-actions .watch-btn::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--red);
    opacity: 0.5;
    transform: scale(1);
    animation: pulse 1.5s ease-in-out infinite;
    z-index: -1;
  }
  
  /* Animations */
  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 0.5;
    }
    70% {
      transform: scale(1.5);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 0;
    }
  }
  
  @keyframes breath {
    0% {
      transform: scale(1);
    }
    70% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  
  /* Intro Section */
  .home-page .intro-section .image {
    width: 100%;
    max-width: 1200px;
    margin: var(--separator-margin) auto 0px auto;
    border-radius: var(--br-large);
    background-image: url("../img/bg/overdue.jpg");
    height: 500px;
  }
  
  /* Zero Commission Section */
  .home-page .zero-commission-section {
    background-color: var(--red-shade);
  }
  
  .home-page .zero-commission-section .inner-container .image {
    background-color: var(--white);
    position: relative;
    background-image: url("../img/bg/shocked-lady.jpg");
  }
  
  .home-page .zero-commission-section .inner-container .image .inner-image {
    position: absolute;
    top: 15%;
    right: 50px;
    width: 150px;
    transform: rotate(15deg);
    display: none;
  }
  
  /* Credit Section */
  .home-page .credit-section .inner-container {
    gap: 50px;
    align-items: stretch;
    display: flex;
  }
  
  .home-page .credit-section .inner-container .image {
    width: 250px;
    height: auto;
    flex-shrink: 0;
    border-radius: var(--br-medium);
    background-image: url("../img/bg/worried-lady.avif");
    display: none;
  }
  
  .home-page .credit-section .inner-container .content {
    width: 100%;
  }
  
  .home-page .credit-section .inner-container .content .list {
    gap: 10px;
    flex-wrap: wrap;
    margin: var(--separator-margin) 0px;
    display: flex;
  }
  
  .home-page .credit-section .inner-container .content .list .li {
    width: fit-content;
    flex-shrink: 0;
    padding: 20px 25px;
    font-weight: var(--fw-medium-bold);
    border-radius: var(--br-small);
    background-color: var(--blue-shade);
    border: 1px solid var(--blue-shade-border);
    color: var(--txt-dark);
    gap: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .home-page .credit-section .inner-container .content .list .li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .home-page .credit-section .inner-container .content .list .li svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--blue);
  }
  
  /* Collection Section */
  .home-page .collection-section {
    background-color: var(--blue-shade);
  }
  
  .home-page .collection-section .inner-container .image {
    background-color: var(--white);
    position: relative;
    background-image: url("../img/bg/calculator-finances.jpg");
  }
  
  /* Benefits Section */
  .home-page .benefits-section .inner-container .image {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    border-radius: var(--br-medium);
  }
  
  .home-page .benefits-section .inner-container .image .thumbnail {
    background-image: url("../img/bg/video-thumb.png");
    background-position-y: top;
    background-size: cover;
    position: relative;
    min-height: 420px;
    border-radius: var(--br-small);
  }
  
  .home-page .benefits-section .inner-container .image .thumbnail .play-btn {
    width: 80px;
    height: 80px;
    color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
    background-color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .home-page .benefits-section .inner-container .image .thumbnail .play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  .home-page .benefits-section .inner-container .image .thumbnail .play-btn::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--red);
    opacity: 0.5;
    transform: scale(1);
    animation: pulse 1.5s ease-in-out infinite;
    z-index: -1;
  }
  
  .home-page .benefits-section .inner-container .image .description {
    padding-top: 20px;
  }
  
  /* Testimonials Section */
  .home-page .testimonials-section .testimonials {
    gap: 20px;
    overflow-x: auto;
    align-items: stretch;
    margin: var(--separator-margin) auto;
    display: flex;
    padding-bottom: 10px;
  }
  
  .home-page .testimonials-section .testimonials::-webkit-scrollbar {
    height: 8px;
  }
  
  .home-page .testimonials-section .testimonials::-webkit-scrollbar-track {
    background: var(--light-grey);
    border-radius: 4px;
  }
  
  .home-page .testimonials-section .testimonials::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 4px;
  }
  
  .home-page .testimonials-section .testimonials .testimonial {
    width: 50%;
    min-width: 350px;
    border-radius: var(--br-medium);
    padding: 40px;
    display: flex;
    flex-direction: column;
    background-color: var(--blue-shade);
    transition: all 0.3s ease;

  }
  
  .home-page .testimonials-section .testimonials .testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .home-page .testimonials-section .testimonials .testimonial .svg {
    width: 50px;
    margin-bottom: 40px;
    flex-shrink: 0;
  }
  
  .home-page .testimonials-section .testimonials .testimonial .quote {
    margin-bottom: auto;
    flex-grow: 1;
  }
  
  .home-page .testimonials-section .testimonials .testimonial .person {
    margin-top: 20px;
    flex-shrink: 0;
  }
  
  .home-page .testimonials-section .testimonials .testimonial .person p {
    font-size: var(--fs-small);
    margin: 0;
  }
  
  /* Blog Section */
  .home-page .blog-section {
    border-top: 1px solid var(--dark-grey);
  }
  
  .home-page .blog-section .heading .categories {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }
  
  .home-page .blog-section .heading .categories a {
    background-color: var(--blue-shade);
    color: var(--blue);
    padding: 8px 20px;
    border-radius: var(--br-small);
    width: fit-content;
    border: 1px solid var(--blue-shade);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: var(--fw-medium-bold);
  }
  
  .home-page .blog-section .heading .categories a:hover {
    border-color: var(--blue);
    background-color: var(--white);
    transform: translateY(-2px);
  }
  
  .home-page .blog-section .heading .categories a:last-child {
    background-color: var(--blue);
    color: var(--white);
  }
  
  .home-page .blog-section .outer-container {
    width: 100%;
    overflow-x: auto;
    margin: var(--separator-margin) 0px;
  }
  
  .home-page .blog-section .outer-container::-webkit-scrollbar {
    display: none;
  }
  
  .home-page .blog-section .outer-container .inner-container .blogs {
    width: max-content;
    gap: 30px;
    align-items: stretch;
    display: flex;
    padding-right: 100px; /* Replace margin on last child */
  }
  
  .home-page .blog-section .outer-container .inner-container .blogs .blog {
    width: 400px;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }
  
  .home-page .blog-section .outer-container .inner-container .blogs .blog:hover {
    transform: translateY(-5px);
  }
  
  .home-page .blog-section .outer-container .inner-container .blogs .blog:hover .content h1 {
    color: var(--primary-color);
  }
  
  .home-page .blog-section .outer-container .inner-container .blogs .blog .image {
    width: 100%;
    border-radius: var(--br-medium);
    height: 260px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }
  
  .home-page .blog-section .outer-container .inner-container .blogs .blog .content {
    padding-top: 20px;
  }
  
  .home-page .blog-section .outer-container .inner-container .blogs .blog .content .category {
    background-color: var(--blue-shade);
    color: var(--blue);
    padding: 4px 12px;
    border-radius: var(--br-small);
    width: fit-content;
    font-size: var(--fs-small);
    font-weight: var(--fw-medium-bold);
    display: inline-block;
  }
  
  .home-page .blog-section .outer-container .inner-container .blogs .blog .content h1 {
    margin: 15px 0px 10px 0px;
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
  }
  
  .home-page .blog-section .outer-container .inner-container .blogs .blog .content p {
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 0;
  }
  
  .home-page .blog-section .outer-container .inner-container .blogs .blog .content .date {
    margin-top: 15px;
    width: 100%;
    gap: 10px;
    display: flex;
    align-items: center;
  }
  
  .home-page .blog-section .outer-container .inner-container .blogs .blog .content .date svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--txt-light);
  }
  
  .home-page .blog-section .outer-container .inner-container .blogs .blog .content .date p {
    font-size: var(--fs-small);
    margin: 0;
  }
  
  .home-page .blog-section .scrollers {
    width: fit-content;
    margin: 30px auto 0;
    gap: 10px;
    display: flex;
  }
  
  .home-page .blog-section .scrollers button {
    width: 45px;
    height: 45px;
    color: var(--txt-light);
    border: 1px solid var(--dark-grey);
    background-color: var(--white);
    border-radius: var(--br-small);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
  }
  
  .home-page .blog-section .scrollers button:hover {
    border-color: var(--blue);
    color: var(--blue);
    background-color: var(--blue-shade);
  }
  
  .home-page .blog-section .scrollers button svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  
  /* ==========================================================================
     MODAL STYLES
     ========================================================================== */
  
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
    display: none;
    align-items: center;
    justify-content: center;
  }
  
  .modal.show {
    display: flex;
  }
  
  .modal .overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
  }
  
  .modal .content {
    width: 95%;
    max-width: 1400px;
    position: relative;
    z-index: 1;
  }
  
  .modal .content video {
    width: 100%;
    border-radius: var(--br-small);
    max-height: 80vh;
  }
  
  .modal .content .close-btn {
    position: absolute;
    top: -50px;
    background-color: var(--white);
    color: var(--red);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
  }
  
  .modal .content .close-btn:hover {
    background-color: var(--red);
    color: var(--white);
    transform: translateX(-50%) scale(1.1);
  }
  
  .modal .content .close-btn svg {
    width: 18px;
    height: 18px;
  }
  
  /* ==========================================================================
     NEXT STEP SECTION
     ========================================================================== */
  
  .next-step-section .inner-container {
    border-radius: var(--br-medium);
    background: linear-gradient(45deg, rgb(0, 37, 102), var(--blue));
    padding: var(--section-padding) 40px;
    position: relative;
    overflow: hidden;
  }
  
  .next-step-section .inner-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.1;
  }
  
  .next-step-section .inner-container.light {
    background: var(--blue-shade);
  }
  
  .next-step-section .inner-container .heading:not(.light .heading) .pill,
  .next-step-section .inner-container .heading:not(.light .heading) h2,
  .next-step-section .inner-container .heading:not(.light .heading) p {
    color: var(--white);
    position: relative;
    z-index: 1;
  }
  
  .next-step-section .inner-container .heading:not(.light .heading) p {
    max-width: 700px;
  }
  
  .next-step-section .inner-container .heading:not(.light .heading) .cta a {
    height: unset;
    padding: 25px 70px;
    background-color: var(--white);
    color: rgb(0, 37, 102);
    font-weight: var(--fw-bold);
    border-radius: var(--br-medium);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
  }
  
  .next-step-section .inner-container .heading:not(.light .heading) .cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  /* ==========================================================================
     FOOTER STYLES
     ========================================================================== */
  
  footer {
    padding-bottom: 0px !important;
    position: relative;
    background: inherit;
    z-index: 5;
    width: 100%;
  }
  
  footer.gradient {
    background-image: var(--linear-gradient);
  }
  
  footer .columns {
    width: 100%;
    gap: 100px;
    align-items: flex-start;
    display: flex;
  }
  
  footer .columns .column {
    width: 100%;
  }
  
  /* Column 1 - Company Info */
  footer .columns .column:nth-child(1) {
    max-width: 500px;
    flex-shrink: 0;
  }
  
  footer .columns .column:nth-child(1) .logo {
    width: 90px;
    margin-bottom: 20px;
  }
  
  footer .columns .column:nth-child(1) .logo img {
    width: 100%;
    height: auto;
  }
  
  footer .columns .column:nth-child(1) p {
    color: var(--white);
  }
  
  footer .columns .column:nth-child(1) .contacts {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  footer .columns .column:nth-child(1) .contacts .contact {
    width: fit-content;
    gap: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  footer .columns .column:nth-child(1) .contacts .contact:hover {
    transform: translateX(5px);
  }
  
  footer .columns .column:nth-child(1) .contacts .contact:hover .icon {
    border-color: var(--primary-color);
    background-color: var(--white);
    color: var(--primary-color);
  }
  
  footer .columns .column:nth-child(1) .contacts .contact:hover p,
  footer .columns .column:nth-child(1) .contacts .contact:hover a {
    color: var(--primary-color);
  }
  
  footer .columns .column:nth-child(1) .contacts .contact .icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }
  
  footer .columns .column:nth-child(1) .contacts .contact .icon svg {
    width: 18px;
    height: 18px;
  }
  
  footer .columns .column:nth-child(1) .contacts .contact p,
  footer .columns .column:nth-child(1) .contacts .contact a {
    width: fit-content;
    color: var(--white);
    margin: 0;
    transition: color 0.3s ease;
  }
  
  /* Column 2 & 3 - Links */
  footer .columns .column h2 {
    margin-bottom: 30px;
    color: var(--white);
    font-size: var(--fs-large);
  }
  
  footer .columns .column ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  footer .columns .column ul li {
    width: fit-content;
    margin-bottom: 15px;
    position: relative;
    padding-left: 22px;
  }
  
  footer .columns .column ul li::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  
  footer .columns .column ul li a,
  footer .columns .column ul li p {
    width: fit-content;
    cursor: pointer;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 0;
  }
  
  footer .columns .column ul li a:hover,
  footer .columns .column ul li p:hover {
    color: var(--primary-color);
    letter-spacing: 1px;
    transform: translateX(5px);
  }
  
  /* Column 3 - Social Media */
  footer .columns .column:nth-child(3) ul {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  footer .columns .column:nth-child(3) ul .social {
    width: fit-content;
    gap: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  footer .columns .column:nth-child(3) ul .social:hover {
    transform: translateX(5px);
  }
  
  footer .columns .column:nth-child(3) ul .social:hover .icon {
    border-color: var(--primary-color);
    background-color: var(--white);
    color: var(--primary-color);
  }
  
  footer .columns .column:nth-child(3) ul .social:hover p,
  footer .columns .column:nth-child(3) ul .social:hover a {
    color: var(--primary-color);
  }
  
  footer .columns .column:nth-child(3) ul .social p {
    color: var(--white);
    margin: 0;
  }
  
  footer .columns .column:nth-child(3) ul .social .icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }
  
  footer .columns .column:nth-child(3) ul .social .icon svg {
    width: 18px;
    height: 18px;
  }
  
  /* Footer Bottom */
  footer .bottom {
    width: 100%;
    padding: 20px 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: var(--separator-margin);
    background-color: rgba(0, 0, 0, 0.2);
  }
  
  footer .bottom .inner-container {
    gap: 40px;
    display: flex;
    align-items: center;
  }
  
  footer .bottom .block {
    width: fit-content;
    flex-shrink: 0;
    gap: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  footer .bottom .block:hover {
    transform: translateY(-2px);
  }
  
  footer .bottom .block:hover .icon {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
  }
  
  footer .bottom .block:hover p,
  footer .bottom .block:hover a {
    color: var(--primary-color);
  }
  
  footer .bottom .block:last-child {
    margin-left: auto;
  }
  
  footer .bottom .block .icon {
    background-color: var(--white);
    border: 1px solid var(--white);
    width: 25px;
    height: 25px;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  footer .bottom .block .icon svg {
    width: 13px;
    height: 13px;
  }
  
  footer .bottom .block p,
  footer .bottom .block a {
    font-size: var(--fs-small);
    color: var(--white);
    margin: 0;
    transition: color 0.3s ease;
  }
  
  footer .bottom .block a {
    text-decoration: underline;
  }
  
  /* ==========================================================================
     BENEFITS PAGE STYLES
     ========================================================================== */
  
  .benefits-page .benefits-section .list {
    width: 100%;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: var(--separator-margin);
    display: flex;
  }
  
  .benefits-page .benefits-section .list .li {
    width: fit-content;
    flex-shrink: 0;
    padding: 20px 25px;
    font-weight: var(--fw-medium-bold);
    border-radius: var(--br-small);
    background-color: var(--blue-shade);
    border: 1px solid var(--blue-shade-border);
    color: var(--txt-dark);
    gap: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .benefits-page .benefits-section .list .li:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .benefits-page .benefits-section .list .li svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--blue);
  }
  
  .benefits-page .more-benefits-section {
    background-color: var(--blue-shade);
  }
  
  .benefits-page .more-benefits-section .inner-container .image {
    background-color: var(--white);
    position: relative;
    background-image: url("../img/bg/benefits.png");
    background-size: cover;
    background-position: center;
    border-radius: var(--br-medium);
  }
  
  .benefits-page .comparison-section .comparison {
    margin-top: var(--separator-margin);
    gap: 20px;
    align-items: stretch;
    position: relative;
    display: flex;
  }
  
  .benefits-page .comparison-section .comparison .card {
    width: 100%;
    padding: 40px;
    border-radius: var(--br-medium);
    background-color: var(--blue-shade);
    transition: all 0.3s ease;
  }
  
  .benefits-page .comparison-section .comparison .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .benefits-page .comparison-section .comparison .card.left {
    background-color: var(--red-shade);
  }
  
  .benefits-page .comparison-section .comparison .card.left .custom-ul svg {
    color: var(--red);
  }
  
  .benefits-page .comparison-section .comparison .card .custom-ul {
    margin-top: 40px;
  }
  
  .benefits-page .comparison-section .comparison .vs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    font-size: var(--fs-medium);
    font-weight: var(--fw-bold);
    color: var(--white);
    background-color: var(--blue);
    border: 8px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  }
  
  /* ==========================================================================
     GUARANTEE PAGE STYLES
     ========================================================================== */
  
  .guarantee-page .risk-free-section .inner-container .image {
    background-image: url("../img/bg/benefits.png");
    background-size: cover;
    background-position: center;
    border-radius: var(--br-medium);
  }
  
  /* ==========================================================================
     CONTACT PAGE STYLES
     ========================================================================== */
  
  .contact-page .hero-section {
    width: 100%;
    height: 600px;
    background-color: var(--light-grey);
    overflow: hidden;
    position: relative;
    background-image: var(--linear-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-page .contact-section .inner-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
  }
  
  .contact-page .contact-section .left {
    width: 50%;
  }
  
  .contact-page .contact-section .left .contact-details {
    margin-top: 40px;
  }
  
  .contact-page .contact-section .left .contact-details .detail {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 25px;
    transition: all 0.3s ease;
  }
  
  .contact-page .contact-section .left .contact-details .detail:hover {
    transform: translateX(5px);
  }
  
  .contact-page .contact-section .left .contact-details .detail .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-right: 25px;
    background-color: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }
  
  .contact-page .contact-section .left .contact-details .detail:hover .icon {
    background-color: var(--blue);
    transform: scale(1.1);
  }
  
  .contact-page .contact-section .left .contact-details .detail .icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--white);
    fill: none;
  }
  
  .contact-page .contact-section .left .contact-details .detail .content h2 {
    font-size: var(--fs-medium-large);
    font-weight: var(--fw-bold);
    color: var(--txt-dark);
    margin-bottom: 4px;
  }
  
  .contact-page .contact-section .left .contact-details .detail .content p {
    margin: 0;
    color: var(--txt-light);
  }
  
  /* Contact Form Alerts */
  .contact-page .contact-section .alert {
    position: fixed;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 40px 15px 25px;
    color: var(--white);
    z-index: 9999;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    border-radius: var(--br-small);
    display: none;
    font-weight: var(--fw-medium-bold);
    animation: slideInDown 0.5s ease;
  }
  
  @keyframes slideInDown {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }
  
  .contact-page .contact-section .alert.error {
    background-color: var(--primary-color);
  }
  
  .contact-page .contact-section .alert.success {
    background-color: #2ecc71;
  }
  
  /* Contact Form */
  .contact-page .contact-section .form {
    width: 50%;
    max-width: 750px;
    transform: translateY(-150px);
    padding: 60px 40px;
    background-color: var(--white);
    border-radius: var(--br-large);
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.15);
    position: relative;
  }
  
  .contact-page .contact-section .form .heading {
    margin-bottom: 40px;
    text-align: center;
  }
  
  .contact-page .contact-section .form .group {
    width: 100%;
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .contact-page .contact-section .form .input-field {
    background-color: var(--white);
    border: 2px solid var(--dark-grey);
    border-radius: var(--br-small);
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .contact-page .contact-section .form .input-field:hover {
    border-color: var(--blue);
  }
  
  .contact-page .contact-section .form .input-field.input-error {
    border-color: var(--primary-color) !important;
    animation: shake 0.5s ease;
  }
  
  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
  }
  
  .contact-page .contact-section .form .input-field.input-error .label,
  .contact-page .contact-section .form .input-field.input-error .description {
    color: var(--primary-color) !important;
  }
  
  .contact-page .contact-section .form .input-field input,
  .contact-page .contact-section .form .input-field textarea {
    width: 100%;
    height: 55px;
    font-size: var(--fs-medium);
    font-weight: var(--fw-medium-bold);
    color: var(--txt-dark);
    padding-left: 25px;
    outline: none;
    border: none;
    border-radius: var(--br-small);
    background: transparent;
    transition: all 0.3s ease;
  }
  
  .contact-page .contact-section .form .input-field input:focus,
  .contact-page .contact-section .form .input-field textarea:focus {
    background-color: rgba(1, 90, 170, 0.02);
  }
  
  .contact-page .contact-section .form .input-field textarea {
    height: 120px;
    max-height: 200px;
    min-height: 55px;
    padding: 25px;
    resize: vertical;
  }
  
  .contact-page .contact-section .form .input-field .label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    pointer-events: none;
    padding: 0px 5px;
    font-weight: var(--fw-medium-bold);
    background-color: var(--white);
    transition: all 0.3s ease;
    color: var(--txt-light);
    font-size: var(--fs-medium);
  }
  
  .contact-page .contact-section .form .input-field.textarea .label {
    top: 30px;
    transform: none;
  }
  
  .contact-page .contact-section .form .input-field .description {
    position: absolute;
    bottom: -28px;
    left: 5px;
    font-size: var(--fs-small);
    color: var(--txt-light);
  }
  
  .contact-page .contact-section .form .action {
    width: 100%;
    margin-top: 50px;
    text-align: center;
  }
  
  .contact-page .contact-section .form .action .primary-btn {
    min-width: 200px;
    font-size: var(--fs-medium-large);
    height: 60px;
    border-radius: var(--br-medium);
  }
  
  .contact-page .contact-section .form .action .primary-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
  }
  
  .contact-page .contact-section .form .label-up {
    border-color: var(--blue) !important;
  }
  
  .contact-page .contact-section .form .label-up .label {
    top: 0 !important;
    transform: translateY(-50%) !important;
    font-size: var(--fs-small);
    color: var(--blue);
  }
  
  /* Contact Map Section */
  .contact-page .map-section {
    width: 100%;
    padding: 30px 0px 60px 0px;
  }
  
  .contact-page .map-section .inner-container {
    height: 450px;
    background-color: var(--light-grey);
    overflow: hidden;
    border-radius: var(--br-medium);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .contact-page .map-section .inner-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
  }
  
  .contact-page .map-section .inner-container:hover iframe {
    filter: grayscale(0%);
  }
  
  /* ==========================================================================
     CASE STUDIES PAGE STYLES
     ========================================================================== */
  
  .case-studies-page .case-studies-section .red {
    background-color: #ffebee;
    color: #c62828;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: var(--fs-small);
    font-weight: var(--fw-medium-bold);
  }
  
  .case-studies-page .case-studies-section .green {
    background-color: #e8f5e8;
    color: #2e7d32;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: var(--fw-medium-bold);
    font-size: var(--fs-small);
  }
  
  .case-studies-page .case-studies-section .examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: var(--separator-margin) auto 0px auto;
  }
  
  .case-studies-page .case-studies-section .examples .example {
    width: 100%;
    border-radius: var(--br-medium);
    padding: 30px;
    background-color: var(--blue-shade);
    border: 2px solid transparent;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
  }
  
  .case-studies-page .case-studies-section .examples .example::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }
  
  .case-studies-page .case-studies-section .examples .example:hover {
    background-color: var(--white);
    border-color: var(--blue);
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
  }
  
  .case-studies-page .case-studies-section .examples .example:hover::before {
    left: 100%;
  }
  
  .case-studies-page .case-studies-section .examples .example h2 {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
  }
  
  .case-studies-page .case-studies-section .examples .example h2 span {
    font-size: var(--fs-medium);
    font-weight: var(--fw-medium-bold);
    color: var(--txt-light);
  }
  
  .case-studies-page .case-studies-section .examples .example .row {
    width: 100%;
    margin: 12px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  .case-studies-page .case-studies-section .examples .example .row.total {
    padding-top: 15px;
    border-top: 2px solid var(--dark-grey);
    margin: 20px 0px 0px 0px;
    font-size: var(--fs-medium-large);
  }
  
  .case-studies-page .case-studies-section .examples .example .row.total p {
    font-weight: var(--fw-bold);
    color: var(--txt-dark);
  }
  
  .case-studies-page .case-studies-section .examples .example .row p {
    margin: 0;
  }
  
  .case-studies-page .case-studies-section .examples .example .row .label {
    font-weight: var(--fw-medium-bold);
    color: var(--txt-dark);
  }
  
  .case-studies-page .case-studies-section .examples .example .row .value {
    font-weight: var(--fw-bold);
    text-align: right;
  }
  
  /* ==========================================================================
     MEMBERS PAGE STYLES
     ========================================================================== */
  
  .members-page .wrapper {
    overflow: visible;
  }
  
  .members-page .details-section {
    border-radius: var(--br-medium);
    padding: var(--section-padding) 0;
  }
  
  .members-page .details-section .inner-container {
    align-items: flex-start;
    gap: 80px;
    display: flex;
  }
  
  .members-page .details-section .inner-container .left {
    width: 500px;
    border-radius: var(--br-medium);
    height: 400px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    left: 0;
    background-image: url("../img/bg/debt-collection-papers.jpg");
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }
  
  .members-page .details-section .inner-container .left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 90, 170, 0.1), rgba(0, 0, 0, 0.1));
  }
  
  .members-page .details-section .inner-container .right {
    width: 100%;
    flex-grow: 1;
  }
  
  .members-page .details-section .inner-container .right h2 {
    margin: 40px 0px 20px 0px;
    color: var(--txt-dark);
    border-bottom: 2px solid var(--blue-shade);
    padding-bottom: 10px;
  }
  
  .members-page .details-section .inner-container .right h2:first-child {
    margin-top: 0px;
  }
  
  .members-page .details-section .inner-container .right p {
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .members-page .details-section .inner-container .right p a {
    color: var(--primary-color);
    font-weight: var(--fw-medium-bold);
    text-decoration: underline;
    transition: all 0.3s ease;
  }
  
  .members-page .details-section .inner-container .right p a:hover {
    color: var(--blue);
    text-decoration: none;
  }
  
  .members-page .details-section .inner-container .right .pdf {
    width: fit-content;
    border-radius: var(--br-small);
    padding: 15px 40px 15px 20px;
    flex-shrink: 0;
    margin: 25px 0px;
    gap: 20px;
    background-color: var(--red-shade);
    border: 2px solid var(--red-shade);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .members-page .details-section .inner-container .right .pdf:hover {
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 49, 0.2);
  }
  
  .members-page .details-section .inner-container .right .pdf .icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .members-page .details-section .inner-container .right .pdf .icon img {
    width: 100%;
    height: auto;
  }
  
  .members-page .details-section .inner-container .right .pdf a,
  .members-page .details-section .inner-container .right .pdf p {
    color: var(--red);
    text-decoration: underline;
    font-weight: var(--fw-medium-bold);
    margin: 0;
    transition: color 0.3s ease;
  }
  
  .members-page .details-section .inner-container .right .pdf:hover a,
  .members-page .details-section .inner-container .right .pdf:hover p {
    color: #cc0029;
  }
  
  .members-page .details-section .inner-container .right .notes {
    gap: 15px;
    margin-top: 30px;
	margin-bottom: 30px;
    display: flex;
    flex-direction: column;
  }
  
  .members-page .details-section .inner-container .right .notes .note {
    width: 100%;
    border-radius: var(--br-small);
    padding: 20px 30px;
    border-left: 4px solid;
    transition: all 0.3s ease;
  }
  
  .members-page .details-section .inner-container .right .notes .note:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  }
  
  .members-page .details-section .inner-container .right .notes .note.red {
    background-color: var(--red-shade);
    border-left-color: var(--red);
  }
  
  .members-page .details-section .inner-container .right .notes .note.red p {
    color: var(--red);
  }
  
  .members-page .details-section .inner-container .right .notes .note.blue {
    background-color: var(--blue-shade);
    border-left-color: var(--blue);
  }
  
  .members-page .details-section .inner-container .right .notes .note.blue p {
    color: var(--blue);
  }
  
  .members-page .details-section .inner-container .right .notes .note p {
    font-weight: var(--fw-medium-bold);
    margin: 0;
    line-height: 1.5;
  }
  
  /* ==========================================================================
     BLOGS PAGE STYLES
     ========================================================================== */
  
  .blogs-page .hero-section .content p.description {
    margin: 0px auto;
    max-width: 600px;
  }
  
  .blogs-page .hero-section .content .search {
    margin: 30px auto;
    width: 100%;
    max-width: 800px;
    border-radius: var(--br-medium);
    background-color: var(--white);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
  }
  
  .blogs-page .hero-section .content .search input {
    background-color: var(--white);
    height: 70px;
    width: 100%;
    padding-left: 30px;
    border: none;
    outline: none;
    font-size: var(--fs-medium-large);
    color: var(--txt-dark);
  }
  
  .blogs-page .hero-section .content .search input::placeholder {
    color: var(--txt-light);
  }
  
  .blogs-page .hero-section .content .search button {
    transform: translateX(-30px);
    color: var(--blue);
    padding: 10px;
    height: auto;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
  }
  
  .blogs-page .hero-section .content .search button:hover {
    background-color: var(--blue-shade);
    color: var(--primary-color);
  }
  
  .blogs-page .hero-section .content .search button svg {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
  }
  
  .blogs-page .hero-section .content .categories {
    flex-wrap: wrap;
    gap: 15px;
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  
  .blogs-page .hero-section .content .categories a {
    width: fit-content;
    border-radius: var(--br-medium);
    background-color: rgba(255, 255, 255, 0.15);
    gap: 15px;
    padding: 20px 30px;
    color: var(--white);
    font-weight: var(--fw-medium-bold);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    border: 2px solid transparent;
  }
  
  .blogs-page .hero-section .content .categories a:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
  }
  
  .blogs-page .hero-section .content .categories a svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  
  .blogs-page .blogs-section .inner-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: var(--section-padding) 0;
  }
  
  .blogs-page .blogs-section .blog {
    width: 100%;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }
  
  .blogs-page .blogs-section .blog:hover {
    transform: translateY(-5px);
  }
  
  .blogs-page .blogs-section .blog:hover .content h1 {
    color: var(--primary-color);
  }
  
  .blogs-page .blogs-section .blog .image {
    width: 100%;
    border-radius: var(--br-medium);
    height: 220px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
  }
  
  .blogs-page .blogs-section .blog .image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
  }
  
  .blogs-page .blogs-section .blog:hover .image::before {
    background: linear-gradient(135deg, rgba(1, 90, 170, 0.1), rgba(255, 0, 49, 0.1));
  }
  
  .blogs-page .blogs-section .blog .content {
    padding-top: 20px;
  }
  
  .blogs-page .blogs-section .blog .content .category {
    background-color: var(--blue-shade);
    color: var(--blue);
    padding: 4px 12px;
    border-radius: var(--br-small);
    width: fit-content;
    font-size: var(--fs-small);
    font-weight: var(--fw-medium-bold);
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .blogs-page .blogs-section .blog:hover .content .category {
    background-color: var(--blue);
    color: var(--white);
  }
  
  .blogs-page .blogs-section .blog .content h1 {
    margin: 15px 0px 10px 0px;
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
    font-size: var(--fs-large);
    line-height: 1.3;
  }
  
  .blogs-page .blogs-section .blog .content p {
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 0;
    line-height: 1.5;
  }
  
  .blogs-page .blogs-section .blog .content .date {
    margin-top: 15px;
    width: 100%;
    gap: 10px;
    display: flex;
    align-items: center;
  }
  
  .blogs-page .blogs-section .blog .content .date svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--txt-light);
  }
  
  .blogs-page .blogs-section .blog .content .date p {
    font-size: var(--fs-small);
    margin: 0;
    color: var(--txt-light);
  }
  
  /* ==========================================================================
     INDIVIDUAL BLOG PAGE STYLES
     ========================================================================== */
  
  .blog-page .wrapper {
    overflow: visible;
  }
  
  .blog-page .blog-section {
    margin-top: 120px;
    padding-top: 50px;
    border-radius: var(--br-medium);
  }
  
  .blog-page .blog-section .inner-container {
    align-items: flex-start;
    gap: 80px;
    display: flex;
  }
  
  .blog-page .blog-section .blog-content {
    width: 100%;
    flex-grow: 1;
  }
  
  .blog-page .blog-section .blog-content .content {
    width: 100%;
  }
  
  .blog-page .blog-section .blog-content .content .author-date-category {
    gap: 15px;
    margin: 20px 0px 40px 0px;
    display: flex;
    flex-wrap: wrap;
  }
  
  .blog-page .blog-section .blog-content .content .author-date-category a,
  .blog-page .blog-section .blog-content .content .author-date-category p {
    gap: 12px;
    width: fit-content;
    flex-shrink: 0;
    background-color: var(--blue-shade);
    padding: 8px 16px;
    color: var(--blue);
    border-radius: var(--br-small);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: var(--fs-small);
    font-weight: var(--fw-medium-bold);
    margin: 0;
  }
  
  .blog-page .blog-section .blog-content .content .author-date-category a:hover {
    background-color: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
  }
  
  .blog-page .blog-section .blog-content .content .author-date-category a svg,
  .blog-page .blog-section .blog-content .content .author-date-category p svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
  }
  
  .blog-page .blog-section .blog-content .content .cover-image {
    width: 100%;
    max-height: 500px;
    margin-bottom: 40px;
    flex-shrink: 0;
    border-radius: var(--br-medium);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .blog-page .blog-section .blog-content .content .cover-image img {
    border-radius: var(--br-medium);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .blog-page .blog-section .blog-content .content h2 {
    margin: 40px 0px 20px 0px;
    color: var(--txt-dark);
    border-bottom: 2px solid var(--blue-shade);
    padding-bottom: 10px;
  }
  
  .blog-page .blog-section .blog-content .content h2:first-child {
    margin-top: 0px;
  }
  
  .blog-page .blog-section .blog-content .content p {
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .blog-page .blog-section .blog-content .content p a {
    color: var(--primary-color);
    font-weight: var(--fw-medium-bold);
    text-decoration: underline;
    transition: all 0.3s ease;
  }
  
  .blog-page .blog-section .blog-content .content p a:hover {
    color: var(--blue);
    text-decoration: none;
  }
  
  .blog-page .blog-section .side-panel {
    width: 500px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    left: 0;
    align-self: flex-start;
  }
  
  .blog-page .blog-section .side-panel .heading {
    margin-bottom: 30px;
  }
  
  .blog-page .blog-section .side-panel .categories {
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    display: flex;
  }
  
  .blog-page .blog-section .side-panel .categories a {
    width: fit-content;
    flex-shrink: 0;
    gap: 15px;
    padding: 15px 20px;
    color: var(--blue);
    font-weight: var(--fw-medium-bold);
    border-radius: var(--br-medium);
    border: 2px solid var(--blue-shade);
    background-color: var(--blue-shade);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: var(--fs-small);
  }
  
  .blog-page .blog-section .side-panel .categories a:hover {
    border-color: var(--blue);
    background-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 90, 170, 0.2);
  }
  
  .blog-page .blog-section .side-panel .categories a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  
  .blog-page .blog-section .side-panel .blogs {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  
  .blog-page .blog-section .side-panel .blogs .blog {
    width: 100%;
    padding: 20px;
    background-color: var(--blue-shade);
    border-radius: var(--br-large);
    border: 2px solid transparent;
    transition: all 0.3s ease;
  }
  
  .blog-page .blog-section .side-panel .blogs .blog:hover {
    border-color: var(--blue);
    background-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .blog-page .blog-section .side-panel .blogs .blog .image {
    width: 100%;
    border-radius: var(--br-medium);
    height: 180px;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
  }
  
  .blog-page .blog-section .side-panel .blogs .blog .content {
    padding: 0;
  }
  
  .blog-page .blog-section .side-panel .blogs .blog .content .category {
    color: var(--blue);
    font-weight: var(--fw-medium-bold);
    width: fit-content;
    font-size: var(--fs-small);
    margin-bottom: 10px;
    display: inline-block;
  }
  
  .blog-page .blog-section .side-panel .blogs .blog .content h1 {
    margin: 0px 0px 10px 0px;
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: var(--fs-medium-large);
    line-height: 1.3;
  }
  
  .blog-page .blog-section .side-panel .blogs .blog .content p {
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0 0 10px 0;
    line-height: 1.4;
  }
  
  .blog-page .blog-section .side-panel .blogs .blog .content .date {
    margin-top: 10px;
    width: 100%;
    gap: 8px;
    display: flex;
    align-items: center;
  }
  
  .blog-page .blog-section .side-panel .blogs .blog .content .date svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--txt-light);
  }
  
  .blog-page .blog-section .side-panel .blogs .blog .content .date p {
    font-size: var(--fs-small);
    margin: 0;
    color: var(--txt-light);
  }
  
  /* ==========================================================================
     WPFORMS STYLING
     ========================================================================== */
  
  .form-section .wpforms-container {
    width: 100%;
    max-width: 750px;
    transform: translateY(-150px);
    padding: 60px 40px;
    background-color: var(--white);
    border-radius: var(--br-large);
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.15);
    position: relative;
  }
  
  .form-section .wpforms-container .heading {
    margin-bottom: 40px;
    text-align: center;
  }
  
  /* Form Groups (side-by-side fields) */
  .wpforms-field-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* Input Field Styling */
  .wpforms-field {
    background-color: var(--white);
    border: 2px solid var(--dark-grey);
    border-radius: var(--br-small);
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .wpforms-field:hover {
    border-color: var(--blue);
  }
  
  .wpforms-field.wpforms-has-error {
    border-color: var(--primary-color) !important;
    animation: shake 0.5s ease;
  }
  
  .wpforms-field.wpforms-has-error label,
  .wpforms-field.wpforms-has-error .wpforms-field-sublabel {
    color: var(--primary-color) !important;
  }
  
  /* Input and Textarea Styling */
  .wpforms-field input[type="text"],
  .wpforms-field input[type="email"],
  .wpforms-field input[type="tel"],
  .wpforms-field input[type="url"],
  .wpforms-field input[type="number"],
  .wpforms-field textarea,
  .wpforms-field select {
    width: 100%;
    height: 55px;
    font-size: var(--fs-medium);
    font-weight: var(--fw-medium-bold);
    color: var(--txt-dark);
    padding-left: 25px;
    outline: none;
    border: none;
    border-radius: var(--br-small);
    background: transparent;
    transition: all 0.3s ease;
  }
  
  .wpforms-field input:focus,
  .wpforms-field textarea:focus,
  .wpforms-field select:focus {
    background-color: rgba(1, 90, 170, 0.02);
  }
  
  .wpforms-field textarea {
    height: 120px;
    max-height: 200px;
    min-height: 55px;
    padding: 25px;
    resize: vertical;
  }
  
  /* Label Styling */
  .wpforms-field-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    pointer-events: none;
    padding: 0px 5px;
    font-weight: var(--fw-medium-bold);
    background-color: var(--white);
    transition: all 0.3s ease;
    margin: 0;
    color: var(--txt-light);
    font-size: var(--fs-medium);
  }
  
  /* Textarea Label Position */
  .wpforms-field-textarea .wpforms-field-label {
    top: 30px;
    transform: none;
  }
  
  /* Field Description */
  .wpforms-field-sublabel {
    position: absolute;
    bottom: -28px;
    left: 5px;
    font-size: var(--fs-small);
    margin: 0;
    color: var(--txt-light);
  }
  
  /* Submit Button Container */
  .wpforms-submit-container {
    width: 100%;
    margin-top: 50px;
    text-align: center;
  }
  
  /* Submit Button */
  .wpforms-submit {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    border-radius: var(--br-medium);
    font-size: var(--fs-medium-large);
    font-weight: var(--fw-bold);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    min-width: 200px;
    height: 60px;
  }
  
  .wpforms-submit:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
  }
  
  .wpforms-submit:hover:not(:disabled) {
    background: #e6002b;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 49, 0.3);
  }
  
  /* Focus State - Label Up */
  .wpforms-field input:focus,
  .wpforms-field textarea:focus,
  .wpforms-field input:not(:placeholder-shown),
  .wpforms-field textarea:not(:placeholder-shown) {
    border-color: var(--blue) !important;
  }
  
  .wpforms-field input:focus + .wpforms-field-label,
  .wpforms-field textarea:focus + .wpforms-field-label,
  .wpforms-field input:not(:placeholder-shown) + .wpforms-field-label,
  .wpforms-field textarea:not(:placeholder-shown) + .wpforms-field-label {
    top: 0 !important;
    transform: translateY(-50%) !important;
    font-size: var(--fs-small);
    color: var(--blue);
  }
  
  /* Alternative approach for focus using JavaScript classes */
  .wpforms-field.label-up {
    border-color: var(--blue) !important;
  }
  
  .wpforms-field.label-up .wpforms-field-label {
    top: 0 !important;
    transform: translateY(-50%) !important;
    font-size: var(--fs-small);
    color: var(--blue);
  }
  
  /* Error Messages */
  .wpforms-error {
    color: var(--primary-color);
    font-size: var(--fs-small);
    margin-top: 0.5rem;
    font-weight: var(--fw-medium-bold);
  }
  
  /* Success Message */
  .wpforms-confirmation-container-4006 {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: var(--white);
    padding: 30px;
    border-radius: var(--br-medium);
    text-align: center;
    font-weight: var(--fw-bold);
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.3);
  }
  
  /* Required Field Indicator */
  .wpforms-required {
    color: var(--primary-color);
    font-weight: var(--fw-bold);
  }
  
  /* Loading State */
  .wpforms-submit.wpforms-submit-spinner {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
  }
  
  .wpforms-submit.wpforms-submit-spinner::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    margin: auto;
    border: 3px solid transparent;
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s ease infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Fallback Styling */
  .wpforms-fallback {
    background: #fff3cd;
    border: 2px solid #ffeaa7;
    color: #856404;
    padding: 30px;
    border-radius: var(--br-medium);
    text-align: center;
    transform: translateY(-150px);
    max-width: 750px;
    margin: 0 auto;
  }
  
  .wpforms-fallback ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
  }
  
  .wpforms-fallback ul li {
    margin-bottom: 0.5rem;
  }
  
  .wpforms-fallback a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: var(--fw-medium-bold);
  }
  
  .wpforms-fallback a:hover {
    text-decoration: underline;
  }
  
  /* ==========================================================================
     WOOCOMMERCE CHECKOUT STYLING
     ========================================================================== */
  
  .woocommerce-checkout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  /* Main checkout container */
  .woocommerce .col2-set {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    margin-bottom: 0;
  }
  
  .woocommerce .col-1,
  .woocommerce .col-2 {
    float: none;
    width: 100%;
  }
  
  /* LEFT COLUMN - BILLING & SHIPPING FORMS */
  .woocommerce-checkout .col-1 #customer_details {
    background: var(--white);
    padding: 40px;
    border-radius: var(--br-large);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border: 2px solid var(--blue-shade);
  }
  
  .woocommerce-checkout .col-1 h3 {
    font-size: var(--fs-extra-large);
    color: var(--blue);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--blue-shade);
    font-weight: var(--fw-bold);
    position: relative;
  }
  
  .woocommerce-checkout .col-1 h3::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  /* Form styling within col-1 */
  .woocommerce .col-1 .form-row {
    margin: 0 0 25px;
    padding: 0;
  }
  
  .woocommerce .col-1 .form-row-first,
  .woocommerce .col-1 .form-row-last {
    float: none;
    width: 100%;
    display: inline-block;
    margin-right: 0;
  }
  
  .woocommerce .col-1 .form-row-wide {
    width: 100%;
    clear: both;
  }
  
  /* Create 2-column layout for name fields within col-1 */
  .woocommerce .col-1 #billing_first_name_field,
  .woocommerce .col-1 #billing_last_name_field {
    width: 48%;
    display: inline-block;
    margin-right: 2%;
  }
  
  .woocommerce .col-1 #billing_last_name_field {
    margin-right: 0;
  }
  
  /* Labels within col-1 */
  .woocommerce .col-1 label {
    font-weight: var(--fw-bold);
    color: var(--txt-dark);
    margin-bottom: 8px;
    display: block;
    font-size: var(--fs-medium);
  }
  
  .woocommerce .col-1 .required {
    color: var(--primary-color);
  }
  
  /* Input fields within col-1 */
  .woocommerce .col-1 input[type="text"],
  .woocommerce .col-1 input[type="email"],
  .woocommerce .col-1 input[type="tel"],
  .woocommerce .col-1 input[type="password"],
  .woocommerce .col-1 select,
  .woocommerce .col-1 textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--dark-grey);
    border-radius: var(--br-small);
    font-size: var(--fs-medium);
    background: var(--white);
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
    color: var(--txt-dark);
    font-weight: var(--fw-medium-bold);
  }
  
  .woocommerce .col-1 input:focus,
  .woocommerce .col-1 select:focus,
  .woocommerce .col-1 textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(1, 90, 170, 0.1);
    background-color: rgba(1, 90, 170, 0.02);
  }
  
  .woocommerce .col-1 input:hover,
  .woocommerce .col-1 select:hover,
  .woocommerce .col-1 textarea:hover {
    border-color: var(--blue);
  }
  
  /* Select dropdowns within col-1 */
  .woocommerce .col-1 select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 45px;
    appearance: none;
    cursor: pointer;
  }
  
  /* RIGHT COLUMN - ORDER REVIEW & PAYMENT (col-2) */
  .woocommerce-checkout .col-2 #order_review_heading,
  .woocommerce-checkout .col-2 .woocommerce-checkout-review-order {
    background: var(--white);
    border-radius: var(--br-large);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
    overflow: hidden;
  }
  
  .woocommerce-checkout .col-2 #order_review_heading {
    background: linear-gradient(135deg, var(--blue), #0066cc);
    color: var(--white);
    margin: 0 0 -1px 0;
    padding: 25px 30px;
    border-radius: var(--br-large) var(--br-large) 0 0;
    font-size: var(--fs-large);
    font-weight: var(--fw-bold);
    text-align: center;
  }
  
  .woocommerce-checkout .col-2 .woocommerce-checkout-review-order {
    padding: 0;
    border-radius: 0 0 var(--br-large) var(--br-large);
    border: none;
  }
  
  /* Order review table within col-2 */
  .woocommerce .col-2 table.shop_table {
    width: 100%;
    border: none;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
  }
  
  .woocommerce .col-2 table.shop_table th,
  .woocommerce .col-2 table.shop_table td {
    padding: 20px 30px;
    border: none;
    border-bottom: 1px solid var(--light-grey);
    text-align: left;
    vertical-align: middle;
  }
  
  .woocommerce .col-2 table.shop_table th {
    background: var(--blue-shade);
    font-weight: var(--fw-bold);
    color: var(--txt-dark);
    font-size: var(--fs-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .woocommerce .col-2 table.shop_table .product-name {
    font-weight: var(--fw-bold);
    color: var(--txt-dark);
  }
  
  .woocommerce .col-2 table.shop_table .product-total {
    text-align: right;
    font-weight: var(--fw-bold);
    color: var(--blue);
    font-size: var(--fs-medium-large);
  }
  
  /* Order total section within col-2 */
  .woocommerce .col-2 .order-total {
    background: var(--blue-shade);
  }
  
  .woocommerce .col-2 .order-total th,
  .woocommerce .col-2 .order-total td {
    font-size: var(--fs-large);
    font-weight: var(--fw-bold);
    color: var(--blue);
    border-bottom: none;
    padding: 25px 30px;
  }
  
  /* PAYMENT SECTION (within col-2) */
  .woocommerce-checkout .col-2 #payment {
    background: var(--white);
    margin-top: 30px;
    border-radius: var(--br-large);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid var(--blue-shade);
  }
  
  .woocommerce-checkout .col-2 #payment .payment_methods {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .woocommerce-checkout .col-2 #payment .payment_method {
    border-bottom: 1px solid var(--light-grey);
    margin: 0;
  }
  
  .woocommerce-checkout .col-2 #payment .payment_method:last-child {
    border-bottom: none;
  }
  
  .woocommerce-checkout .col-2 #payment label {
    display: block;
    padding: 20px 30px;
    cursor: pointer;
    font-weight: var(--fw-bold);
    margin: 0;
    transition: all 0.3s ease;
    color: var(--txt-dark);
  }
  
  .woocommerce-checkout .col-2 #payment label:hover {
    background: var(--blue-shade);
    color: var(--blue);
  }
  
  .woocommerce-checkout .col-2 #payment input[type="radio"] {
    margin-right: 15px;
    transform: scale(1.2);
    accent-color: var(--blue);
  }
  
  .woocommerce-checkout .col-2 #payment .payment_box {
    background: var(--blue-shade);
    padding: 20px 30px;
    margin: 0;
    border: none;
    color: var(--txt-dark);
  }
  
  /* Place order button within col-2 */
  .woocommerce-checkout .col-2 #place_order {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), #e6002b);
    color: var(--white);
    border: none;
    padding: 20px 30px;
    font-size: var(--fs-large);
    font-weight: var(--fw-bold);
    border-radius: var(--br-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .woocommerce-checkout .col-2 #place_order:hover {
    background: linear-gradient(135deg, #e6002b, #cc0029);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 49, 0.4);
  }
  
  .woocommerce-checkout .col-2 #place_order:active {
    transform: translateY(-1px);
  }
  
  /* Terms and conditions within col-2 */
  .woocommerce-checkout .col-2 .woocommerce-terms-and-conditions-wrapper {
    padding: 20px 30px;
    background: var(--light-grey);
  }
  
  .woocommerce-checkout .col-2 .woocommerce-terms-and-conditions-checkbox-text {
    font-size: var(--fs-small);
    color: var(--txt-light);
    line-height: 1.5;
  }
  
  /* Override for col2-set to col1-set structure */
  .woocommerce-checkout .col2-set#customer_details {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    margin-bottom: 30px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--br-large);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--blue-shade);
  }
  
  .woocommerce-checkout .col2-set:not(#customer_details) {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    margin-bottom: 0;
  }
  
  /* Style the billing fields within the incorrect col2-set#customer_details */
  .woocommerce-checkout .col2-set#customer_details h3 {
    font-size: var(--fs-extra-large);
    color: var(--blue);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--blue-shade);
    font-weight: var(--fw-bold);
    position: relative;
  }
  
  .woocommerce-checkout .col2-set#customer_details h3::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  .woocommerce-checkout .col2-set#customer_details .form-row {
    margin: 0 0 25px;
    padding: 0;
  }
  
  .woocommerce-checkout .col2-set#customer_details .form-row-first,
  .woocommerce-checkout .col2-set#customer_details .form-row-last {
    float: none;
    width: 100%;
    display: inline-block;
    margin-right: 0;
  }
  
  .woocommerce-checkout .col2-set#customer_details .form-row-wide {
    width: 100%;
    clear: both;
  }
  
  .woocommerce-checkout .col2-set#customer_details #billing_first_name_field,
  .woocommerce-checkout .col2-set#customer_details #billing_last_name_field {
    width: 48%;
    display: inline-block;
    margin-right: 2%;
  }
  
  .woocommerce-checkout .col2-set#customer_details #billing_last_name_field {
    margin-right: 0;
  }
  
  .woocommerce-checkout .col2-set#customer_details label {
    font-weight: var(--fw-bold);
    color: var(--txt-dark);
    margin-bottom: 8px;
    display: block;
    font-size: var(--fs-medium);
  }
  
  .woocommerce-checkout .col2-set#customer_details .required {
    color: var(--primary-color);
  }
  
  .woocommerce-checkout .col2-set#customer_details input[type="text"],
  .woocommerce-checkout .col2-set#customer_details input[type="email"],
  .woocommerce-checkout .col2-set#customer_details input[type="tel"],
  .woocommerce-checkout .col2-set#customer_details input[type="password"],
  .woocommerce-checkout .col2-set#customer_details select,
  .woocommerce-checkout .col2-set#customer_details textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--dark-grey);
    border-radius: var(--br-small);
    font-size: var(--fs-medium);
    background: var(--white);
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
    color: var(--txt-dark);
    font-weight: var(--fw-medium-bold);
  }
  
  .woocommerce-checkout .col2-set#customer_details input:focus,
  .woocommerce-checkout .col2-set#customer_details select:focus,
  .woocommerce-checkout .col2-set#customer_details textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(1, 90, 170, 0.1);
    background-color: rgba(1, 90, 170, 0.02);
  }
  
  .woocommerce-checkout .col2-set#customer_details select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 45px;
    appearance: none;
    cursor: pointer;
  }
  
  /* CART PAGE STYLING */
  .woocommerce-cart .cart-collaterals {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-top: 40px;
  }
  
  .woocommerce-cart .cart_totals {
    background: var(--white);
    padding: 30px;
    border-radius: var(--br-large);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--blue-shade);
  }
  
  .woocommerce-cart .cart_totals h2 {
    color: var(--blue);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--blue-shade);
    font-weight: var(--fw-bold);
    position: relative;
  }
  
  .woocommerce-cart .cart_totals h2::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  /* LOADING STATES */
  .woocommerce .blockUI.blockOverlay {
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: var(--br-medium);
  }
  
  .woocommerce .loader {
    width: 50px !important;
    height: 50px !important;
    border: 4px solid var(--blue-shade) !important;
    border-top: 4px solid var(--blue) !important;
    border-radius: 50% !important;
    animation: spin 1s linear infinite !important;
  }
  
  /* ERROR & SUCCESS MESSAGES */
  .woocommerce .woocommerce-error,
  .woocommerce .woocommerce-info,
  .woocommerce .woocommerce-message {
    padding: 15px 55px;
    margin-bottom: 25px;
    border-radius: var(--br-medium);
    font-weight: var(--fw-medium-bold);
    border-left: 4px solid;
  }
  
  .woocommerce .woocommerce-error {
    background: var(--red-shade);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
  }
  
  .woocommerce .woocommerce-message {
    background: #e8f5e8;
    border-left-color: #2ecc71;
    color: #27ae60;
  }
  
  .woocommerce .woocommerce-info {
    background: var(--blue-shade);
    border-left-color: var(--blue);
    color: var(--blue);
  }

.woocommerce-checkout #payment ul.payment_methods li img {
width: 120px;
margin: 2px 0 0 .5em;
}
  
  /* ==========================================================================
     BLOG FILTER & CATEGORY STYLES
     ========================================================================== */
  
  .blog[style*="display: none"] {
    display: none !important;
  }
  
  .category-filter.active {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 49, 0.3);
  }
  
  /* ==========================================================================
     ACCESSIBILITY & MOTION PREFERENCES
     ========================================================================== */
  
  /* Reduced motion for users who prefer it */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
  
  /* High contrast mode support */
  @media (prefers-contrast: high) {
    * {
      border-color: currentColor !important;
    }
    
    button,
    .btn-link {
      border: 2px solid currentColor !important;
    }
  }
  
  /* Focus visible for better keyboard navigation */
  @supports selector(:focus-visible) {
    button:focus:not(:focus-visible),
    .btn-link:focus:not(:focus-visible),
    input:focus:not(:focus-visible),
    select:focus:not(:focus-visible),
    textarea:focus:not(:focus-visible) {
      outline: none;
    }
    
    button:focus-visible,
    .btn-link:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
      outline: 3px solid var(--primary-color);
      outline-offset: 2px;
    }
  }
  
  /* ==========================================================================
     PROGRESSIVE HEADER RESPONSIVE BREAKPOINTS
     ========================================================================== */
  
  /* Extra Large Screens (1600px and below) */
  @media screen and (max-width: 1600px) {
    header .inner-container .actions .call-us-now {
      display: flex;
    }
    
    .home-page .hero-section {
      height: 100%;
      min-height: 100vh;
      padding: 150px 0px 100px 0px;
    }
    
    .home-page .hero-section .content .image {
      width: 250px;
    }
    
    .home-page .hero-section .content h1 {
      font-size: 30px;
      line-height: 50px;
    }
  }
  
  /* Large Tablets and Small Desktops (1400px and below) */
  @media screen and (max-width: 1400px) {
    header .inner-container nav {
      display: none;
    }
    
    header .inner-container .mobile-menu-btn {
      display: flex;
    }
  }
  
  /* Large Tablets (1200px and below) */
  @media screen and (max-width: 1200px) {
    :root {
      --section-padding: 80px;
      --separator-margin: 40px;
    }
    
    header .inner-container .logo {
      width: 160px;
    }
    
    header .inner-container nav {
      margin-left: 20px;
    }
    
    header .inner-container .actions .btn-link {
      padding: 0px 20px;
      font-size: 13px;
      height: 45px;
    }
    
    .inner-container {
      width: 96%;
    }
  }
  
  /* Medium Tablets (1024px and below) */
  @media screen and (max-width: 1024px) {
    :root {
      --section-padding: 70px;
      --separator-margin: 35px;
    }
    
    header .inner-container .logo {
      width: 140px;
    }
    
    header .inner-container nav {
      margin-left: 15px;
    }
    
    header .inner-container .actions .btn-link {
      height: 45px;
      padding: 0px 18px;
      font-size: 12px;
    }
    
    /* Image content layouts */
    .image-content {
      gap: 40px;
      flex-direction: column;
    }
    
    .image-content .image,
    .image-content .content {
      width: 100%;
    }
    
    .image-content .image {
      min-height: 300px;
      order: 2;
    }
    
    .image-content .content {
      order: 1;
    }
    
    /* Blog grid adjustments */
    .blogs-page .blogs-section .inner-container {
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }
    
    /* WooCommerce adjustments */
    .woocommerce .col2-set {
      grid-template-columns: 1fr 350px;
      gap: 40px;
    }
    
    /* Footer adjustments */
    footer .columns {
      gap: 60px;
    }
  }
  
  /* Small Tablets (900px and below) */
  @media screen and (max-width: 900px) {
    header .inner-container .actions .secondary-btn {
      display: none; /* Hide Sign Me Up button */
    }
    
    /* Hero section adjustments */
    .home-page .hero-section .content h1 {
      font-size: 36px;
      line-height: 50px;
    }
    
    .home-page .hero-section .content .image {
      width: 280px;
    }
    
    /* Blog section */
    .home-page .blog-section .outer-container .inner-container .blogs .blog {
      width: 300px;
    }
  }
  
  /* Large Mobile and Small Tablets (768px and below) */
  @media screen and (max-width: 768px) {
    :root {
      --section-padding: 60px;
      --separator-margin: 30px;
      --fs-large: 20px;
      --fs-extra-large: 24px;
      --lh-large: 35px;
    }
    
    /* Header mobile */
    header .inner-container {
      padding: 8px 0px;
      min-height: 60px;
    }
    
    header .inner-container nav {
      display: none; /* Hide main navigation */
    }
    
    header .inner-container .mobile-menu-btn {
      display: flex; /* Show mobile menu button */
    }
    
    header .inner-container .logo {
      width: 130px;
    }
    
    header .inner-container .actions .btn-link {
      height: 42px;
      padding: 0px 16px;
      font-size: 11px;
    }
    
    /* Container adjustments */
    .inner-container {
      width: 95%;
    }
    
    /* Typography */
    .large-heading {
      font-size: 24px;
      line-height: 35px;
    }
    
    .medium-heading {
      font-size: 20px;
      line-height: 28px;
    }
    
    .small-heading {
      font-size: 18px;
      line-height: 24px;
    }
    
    /* Buttons */
    button,
    .btn-link {
      height: 45px;
      padding: 0px 25px;
      font-size: var(--fs-small);
    }
    
    /* Hero section mobile */
    .home-page .hero-section {
      height: auto;
      min-height: 80vh;
      padding: 120px 0px 60px 0px;
    }
    
    .home-page .hero-section .content .image {
      width: 200px;
    }
    
    .home-page .hero-section .content h1 {
      font-size: 24px;
      line-height: 35px;
      margin-bottom: 20px;
    }
    
    .home-page .hero-section .content .description {
      font-size: var(--fs-medium);
      line-height: var(--lh-medium);
    }
    
    .home-page .hero-section .content .call-to-actions {
      gap: 30px;
      flex-direction: column;
      align-items: center;
      margin-top: 30px;
    }
    
    .home-page .hero-section .content .call-to-actions .primary-btn {
      height: 50px;
      padding: 0px 40px;
    }
    
    .home-page .hero-section .content .call-to-actions .watch-btn {
      width: 55px;
      height: 55px;
    }
    
    .home-page .hero-section .content .call-to-actions .watch-btn::before {
      width: 70px;
      height: 70px;
    }
    
    /* Credit section */
    .home-page .credit-section .inner-container {
      flex-direction: column;
      gap: 30px;
    }
    
    .home-page .credit-section .inner-container .image {
      width: 100%;
      height: 250px;
      display: block;
    }
    
    .home-page .credit-section .inner-container .content .list {
      margin: 30px 0px;
    }
    
    .home-page .credit-section .inner-container .content .list .li {
      width: 100%;
      padding: 15px 20px;
      margin-bottom: 10px;
    }
    
    /* Benefits section */
    .home-page .benefits-section .inner-container .image .thumbnail {
      min-height: 250px;
    }
    
    .home-page .benefits-section .inner-container .image .thumbnail .play-btn {
      width: 60px;
      height: 60px;
    }
    
    .home-page .benefits-section .inner-container .image .thumbnail .play-btn::before {
      width: 80px;
      height: 80px;
    }
    
    /* Testimonials */
    .home-page .testimonials-section .testimonials {
      gap: 15px;
      margin: 30px auto;
    }
    
    .home-page .testimonials-section .testimonials .testimonial {
      padding: 25px;
      min-width: 280px;
      width: 280px;
    }
    
    .home-page .testimonials-section .testimonials .testimonial .svg {
      width: 40px;
      margin-bottom: 25px;
    }
    
    /* Blog section mobile */
    .home-page .blog-section .heading .categories {
      flex-wrap: wrap;
    }
    
    .home-page .blog-section .outer-container .inner-container .blogs .blog {
      width: 280px;
    }
    
    .home-page .blog-section .outer-container .inner-container .blogs {
      padding-right: 50px;
    }
    
    .home-page .blog-section .outer-container .inner-container .blogs .blog .image {
      height: 200px;
    }
    
    .home-page .blog-section .scrollers button {
      width: 40px;
      height: 40px;
    }
    
    /* Footer mobile */
    footer .columns {
      flex-direction: column;
      gap: 40px;
    }
    
    footer .columns .column:nth-child(1) {
      max-width: 100%;
    }
    
    footer .columns .column:nth-child(1) .logo {
      width: 80px;
    }
    
    footer .bottom .inner-container {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
    
    footer .bottom .block:last-child {
      margin-left: 0;
    }
    
    /* Modal mobile */
    .modal .content {
      width: 95%;
    }
    
    .modal .content .close-btn {
      top: -40px;
      width: 30px;
      height: 30px;
    }
    
    /* Benefits page */
    .benefits-page .benefits-section .list .li {
      width: 100%;
      padding: 15px 20px;
    }
    
    .benefits-page .comparison-section .comparison {
      flex-direction: column;
      gap: 15px;
    }
    
    .benefits-page .comparison-section .comparison .card {
      padding: 25px;
    }
    
    .benefits-page .comparison-section .comparison .vs {
      position: static;
      transform: none;
      width: 50px;
      height: 50px;
      margin: 0 auto;
    }
    
    /* Contact page */
    .contact-page .contact-section .inner-container {
      flex-direction: column;
      gap: 30px;
    }
    
    .contact-page .contact-section .left,
    .contact-page .contact-section .form {
      width: 100%;
    }
    
    .contact-page .contact-section .form {
      transform: none;
      margin-top: 0;
      padding: 40px 25px;
    }
    
    .contact-page .contact-section .form .group {
      flex-direction: column;
      gap: 0;
    }
    
    .contact-page .contact-section .alert {
      top: 120px;
      left: 10px;
      right: 10px;
      transform: none;
      padding: 12px 20px;
    }
    
    .contact-page .map-section .inner-container {
      height: 300px;
    }
    
    /* Case studies page */
    .case-studies-page .case-studies-section .examples {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .case-studies-page .case-studies-section .examples .example {
      padding: 20px;
    }
    
    /* Members page */
    .members-page .details-section .inner-container {
      flex-direction: column;
      gap: 30px;
    }
    
    .members-page .details-section .inner-container .left {
      width: 100%;
      height: 250px;
      position: static;
    }
    
    .members-page .details-section .inner-container .right .pdf {
      padding: 12px 20px 12px 15px;
    }
    
    .members-page .details-section .inner-container .right .notes .note {
      padding: 15px 20px;
    }
    
    /* Blog pages */
    .blogs-page .hero-section .content h1 {
      font-size: 28px;
    }
    
    .blogs-page .hero-section .content .search {
      margin: 20px auto;
    }
    
    .blogs-page .hero-section .content .search input {
      height: 50px;
      padding-left: 20px;
    }
    
    .blogs-page .hero-section .content .categories {
      gap: 10px;
    }
    
    .blogs-page .hero-section .content .categories a {
      padding: 15px 20px;
    }
    
    .blogs-page .blogs-section .inner-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    
    .blogs-page .blogs-section .blog .image {
      height: 180px;
    }
    
    /* Individual blog page */
    .blog-page .blog-section {
      margin-top: 80px;
    }
    
    .blog-page .blog-section .inner-container {
      flex-direction: column;
      gap: 40px;
    }
    
    .blog-page .blog-section .side-panel {
      width: 100%;
      position: static;
      order: -1;
    }
    
    .blog-page .blog-section .side-panel .categories a {
      padding: 12px 16px;
    }
    
    .blog-page .blog-section .side-panel .blogs .blog .image {
      height: 150px;
    }
    
    /* WPForms mobile */
    .wpforms-container {
      transform: none !important;
      margin-top: 0 !important;
      padding: 40px 25px !important;
    }
    
    .wpforms-field-row {
      flex-direction: column;
      gap: 0;
    }
    
    .wpforms-field-label,
    .contact-page .contact-section .form .input-field .label {
      font-size: 12px !important;
      padding: 0px 3px;
    }
    
    .wpforms-field input,
    .wpforms-field textarea,
    .contact-page .contact-section .form .input-field input,
    .contact-page .contact-section .form .input-field textarea {
      padding-left: 15px !important;
    }
    
    /* WooCommerce mobile */
    .woocommerce .col2-set {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .woocommerce-checkout #customer_details,
    .woocommerce-checkout .woocommerce-checkout-review-order {
      padding: 25px;
    }
    
    .woocommerce table.shop_table th,
    .woocommerce table.shop_table td {
      padding: 15px 20px;
    }
    
    .woocommerce #billing_first_name_field,
    .woocommerce #billing_last_name_field {
      width: 100%;
      margin-right: 0;
      margin-bottom: 20px;
    }
    
    .woocommerce-checkout .woocommerce-checkout-review-order {
      position: static;
    }
  }
  
  /* Medium Mobile (600px and below) */
  @media screen and (max-width: 600px) {
    header .inner-container .logo {
      width: 120px;
    }
    
    header .inner-container .actions {
      gap: 8px;
    }
    
    header .inner-container .actions .btn-link {
      height: 40px;
      padding: 0px 14px;
      font-size: 10px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      min-width: 60px;
    }
    
    header .inner-container .mobile-menu-btn {
      margin-left: 10px;
    }
    
    header .inner-container .mobile-menu-btn p {
      display: none; /* Hide "Menu" text, keep only icon */
    }
    
    /* Blog section mobile */
    .blogs-page .blogs-section .inner-container {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    /* Fix button text wrapping */
    button,
    .btn-link {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  }
  
  /* Small Mobile (480px and below) */
  @media screen and (max-width: 480px) {
    :root {
      --section-padding: 40px;
      --separator-margin: 20px;
      --fs-small: 11px;
      --fs-medium: 13px;
      --fs-medium-large: 15px;
      --fs-large: 18px;
      --fs-extra-large: 22px;
    }
    
    /* Container */
    .inner-container {
      width: 92%;
    }
    
    /* Typography */
    .large-heading {
      font-size: 22px;
      line-height: 30px;
    }
    
    .medium-heading {
      font-size: 18px;
      line-height: 25px;
    }
    
    /* Buttons */
    button,
    .btn-link {
      height: 40px;
      padding: 0px 20px;
      font-size: 12px;
    }
    
    /* Header */
    header .inner-container {
      padding: 8px 0px;
    }
    
    header .inner-container .logo {
      width: 100px;
    }
    
    header .inner-container .actions .btn-link {
      height: 38px;
      padding: 0px 12px;
      font-size: 9px;
      min-width: 70px;
    }
    
    header .inner-container .mobile-menu-btn {
      margin-left: 8px;
    }
    
    /* Hero section */
    .home-page .hero-section {
      min-height: 70vh;
      padding: 100px 0px 50px 0px;
    }
    
    .home-page .hero-section .content .image {
      width: 150px;
    }
    
    .home-page .hero-section .content h1 {
      font-size: 20px;
      line-height: 28px;
    }
    
    .home-page .hero-section .content .call-to-actions .primary-btn {
      height: 45px;
      padding: 0px 30px;
    }
    
    .home-page .hero-section .content .call-to-actions .watch-btn {
      width: 50px;
      height: 50px;
    }
    
    /* WPForms responsive */
    .wpforms-container {
      padding: 30px 20px !important;
    }
    
    .wpforms-field input,
    .wpforms-field textarea {
      height: 45px !important;
      padding-left: 20px !important;
      font-size: 14px !important;
    }
    
    .wpforms-field textarea {
      padding: 20px !important;
    }
    
    /* WooCommerce checkout */
    .woocommerce-checkout {
      padding: 0 15px;
    }
    
    .woocommerce-checkout #customer_details {
      padding: 20px;
    }
    
    .woocommerce table.shop_table th,
    .woocommerce table.shop_table td {
      padding: 12px 15px;
      font-size: 14px;
    }
    
    .woocommerce-checkout #order_review_heading {
      padding: 15px 20px;
      font-size: 18px;
    }
  }
  
  /* Extra Small Mobile (360px and below) */
  @media screen and (max-width: 360px) {
    :root {
      --fs-small: 10px;
      --fs-medium: 12px;
      --fs-medium-large: 14px;
      --fs-large: 16px;
      --fs-extra-large: 20px;
    }
    
    header .inner-container .logo {
      width: 90px;
    }
    
    header .inner-container .actions .btn-link {
      height: 36px;
      padding: 0px 10px;
      font-size: 8px;
      min-width: 60px;
    }
    
    /* Hide primary button if still overlapping */
    header .inner-container .actions .primary-btn {
      display: none;
    }
  }
  
  /* Emergency Fallback for Very Small Screens (320px and below) */
  @media screen and (max-width: 320px) {
    header .inner-container .logo {
      width: 80px;
    }
    
    header .inner-container .actions .btn-link {
      height: 34px;
      padding: 0px 8px;
      font-size: 7px;
      min-width: 50px;
    }
    
    header .inner-container .mobile-menu-btn svg {
      width: 20px;
      height: 20px;
    }
  }
  
  /* ==========================================================================
     MOBILE MENU IMPROVEMENTS
     ========================================================================== */
  
  @media screen and (max-width: 768px) {
    .mobile-menu .menu {
      width: 100%;
      max-width: 100%;
      border-radius: 0;
    }
    
    .mobile-menu .menu .header {
      padding: 20px;
      position: sticky;
      top: 0;
      background: var(--white);
      z-index: 100;
    }
    
    .mobile-menu .menu nav {
      max-height: calc(100vh - 80px);
      overflow-y: auto;
    }
    
    .mobile-menu .menu nav ul li a,
    .mobile-menu .menu nav ul li p {
      padding: 20px;
      font-size: 16px;
      border-bottom: 1px solid #f0f0f0;
    }
  }
  
  /* ==========================================================================
     UTILITY FIXES & PERFORMANCE OPTIMIZATIONS
     ========================================================================== */
  
  /* Prevent horizontal scrolling */
  @media screen and (max-width: 768px) {
    body {
      overflow-x: hidden;
    }
    
    .inner-container {
      max-width: 100%;
      overflow: hidden;
    }
    
    /* Ensure images don't overflow */
    div img {
      max-width: 100%;
      height: auto;
    }
    
    /* Fix parallax issues on mobile */
    .bg-img {
      background-attachment: scroll;
    }
  }
  
  /* GPU acceleration for better performance */
  .mobile-menu,
  .mobile-menu .menu,
  .home-page .hero-section .content .call-to-actions .watch-btn,
  .modal {
    will-change: transform;
    transform: translateZ(0);
  }
  
  /* ==========================================================================
     LANDSCAPE MOBILE OPTIMIZATIONS
     ========================================================================== */
  
  @media screen and (max-height: 500px) and (orientation: landscape) {
    .home-page .hero-section {
      height: auto;
      min-height: 100vh;
      padding: 80px 0px 40px 0px;
    }
    
    .home-page .hero-section .content .image {
      width: 120px;
    }
    
    .home-page .hero-section .content h1 {
      font-size: 18px;
      line-height: 25px;
      margin-bottom: 15px;
    }
    
    .home-page .hero-section .content .call-to-actions {
      margin-top: 20px;
      gap: 20px;
      flex-direction: row;
    }
  }
  
  /* ==========================================================================
     PRINT STYLES
     ========================================================================== */
  
  @media print {
    * {
      background: transparent !important;
      color: black !important;
      box-shadow: none !important;
      text-shadow: none !important;
    }
    
    header,
    footer,
    .mobile-menu,
    .modal,
    button,
    .btn-link {
      display: none !important;
    }
    
    body {
      font-size: 12pt;
      line-height: 1.5;
    }
    
    h1, h2, h3 {
      page-break-after: avoid;
    }
    
    .inner-container {
      width: 100% !important;
      max-width: none !important;
    }
    
    a[href]:after {
      content: " (" attr(href) ")";
    }
  }
  
  /* ==========================================================================
     UTILITY CLASSES
     ========================================================================== */
  
  /* Hide/Show utilities */
  .hide {
    display: none !important;
  }
  
  .show {
    display: block !important;
  }
  
  @media screen and (max-width: 767px) {
    .hide-mobile {
      display: none !important;
    }
    
    .show-mobile {
      display: block !important;
    }
    
    .text-center-mobile {
      text-align: center !important;
    }
    
    .text-left-mobile {
      text-align: left !important;
    }
    
    .flex-column-mobile {
      flex-direction: column !important;
    }
    
    .flex-center-mobile {
      justify-content: center !important;
      align-items: center !important;
    }
  }
  
  @media screen and (min-width: 768px) {
    .show-mobile-only {
      display: none !important;
    }
  }
  
  /* Loading states */
  .loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
  }
  
  .loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 3px solid var(--blue-shade);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  /* Smooth scrolling for modern browsers */
  @supports (scroll-behavior: smooth) {
    html {
      scroll-behavior: smooth;
    }
  }
  
  /* Container queries support (future-proofing) */
  @supports (container-type: inline-size) {
    .header-container {
      container-type: inline-size;
    }
    
    @container (max-width: 600px) {
      .actions .btn-link {
        font-size: 10px;
        padding: 0px 8px;
      }
    }
  }

fieldset {
	padding: 10px !important;
}

.entry-content ol {
    list-style-type: decimal !important; /* Forces numbers (1, 2, 3) to appear */
    list-style-position: outside !important; /* Aligns numbers to the left, outside the text flow */
    padding-left: 25px !important;      /* Adds space for the numbers. Adjust if needed. */
    margin-bottom: 20px;                /* Adds space below the entire list */
}

.entry-content ol li {
    display: list-item !important;      /* Ensures the element behaves like a list item */
    padding-left: 5px;                  /* Adds a small space between the number and the text */
    margin-bottom: 10px;                /* Adds space between each list item */
}

.woocommerce table.cart img {
	    display: none !important;
}
.woocommerce form.checkout_coupon {
	    display: block !important;
}

.showcoupon {
	 display: none !important;
}
