      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      
      html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
      }
      
      body {
        font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        background-color: #ffffff;
        color: #1a2c3e;
        line-height: 1.5;
        font-weight: 400;
        overflow-x: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
      }
      
      /* Better text wrapping for all text elements */
      p, li, h1, h2, h3, h4, h5, h6, span {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
      }
      
      /* Prevent horizontal scrolling */
      img, video, iframe {
        max-width: 100%;
        height: auto;
      }
      
      /* Loading indicator for smooth transitions */
      .page-loading {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #c62828, #ff6b6b, #c62828);
        z-index: 10000;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
        pointer-events: none;
      }
      .page-loading.active {
        transform: scaleX(1);
      }
      
      .container-custom {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
      }
      
      :root {
        --primary-blue: #0a2b5e;
        --primary-red: #c62828;
        --white: #ffffff;
        --light-bg: #f8fafc;
        --border-light: #e9eef3;
        --text-dark: #1e2f3e;
        --text-muted: #4a5b6e;
        --card-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.02);
        --card-hover-shadow: 0 30px 45px -18px rgba(10, 43, 94, 0.15);
      }
      
      h1, h2, h3, h4 {
        font-family: "Montserrat", sans-serif;
        font-weight: 600;
        letter-spacing: -0.01em;
      }
      
      h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 0;
        display: inline-block;
        border-bottom: 3px solid var(--primary-red);
        padding-bottom: 0.5rem;
        font-weight: 700;
        color: var(--primary-blue);
        letter-spacing: -0.02em;
      }

      /* Unified Navbar */
      .navbar-custom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 24px;
        max-width: 1340px;
        margin: 0 auto;
        background: var(--white);
        border-bottom: 1px solid var(--border-light);
        flex-wrap: wrap;
        gap: 1rem;
      }
      .logo {
        font-family: "Montserrat", sans-serif;
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--primary-blue);
      }
      .logo span {
        font-weight: 800;
        color: var(--primary-red);
      }
      .logo img {
        height: 70px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
      }
      .nav-links {
        display: flex;
        gap: 1.8rem;
        align-items: center;
        flex-wrap: wrap;
      }
      .nav-item {
        position: relative;
      }
      .nav-links > a,
      .nav-item > a {
        font-family: "Montserrat", sans-serif;
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 500;
        font-size: 0.85rem;
        transition: color 0.2s;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        display: inline-block;
        padding: 0.5rem 0;
        cursor: pointer;
      }
      .nav-links > a:hover,
      .nav-item > a:hover,
      .nav-links > a.active,
      .nav-item > a.active {
        color: var(--primary-red);
      }
      .dropdown-menu-custom {
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        min-width: 280px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--border-light);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, visibility 0.2s ease;
        z-index: 1000;
      }
      .nav-item:hover .dropdown-menu-custom {
        opacity: 1;
        visibility: visible;
      }
      .dropdown-menu-custom a {
        display: block;
        padding: 0.75rem 1.2rem;
        font-size: 0.8rem;
        text-transform: none;
        border-bottom: 1px solid var(--border-light);
        color: var(--text-dark);
        text-decoration: none;
        font-family: "Montserrat", sans-serif;
        transition: color 0.2s;
        cursor: pointer;
      }
      .dropdown-menu-custom a:last-child {
        border-bottom: none;
      }
      .dropdown-menu-custom a:hover {
        color: var(--primary-red);
        background: rgba(198, 40, 40, 0.05);
      }

      /* Hero Slider */
      .hero-slider {
        position: relative;
        background: var(--light-bg);
        min-height: 500px;
        overflow: hidden;
      }
      .slides-container {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 500px;
      }
      .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 500px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 3rem 5%;
      }
      .slide.active {
        opacity: 1;
        visibility: visible;
        z-index: 2;
      }
      .slide-1,
      .slide-2,
      .slide-3 {
        background: transparent;
      }
      .slide img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        z-index: 0;
      }
      .slide-content {
        max-width: 580px;
        padding: 2rem 2.5rem;
        position: relative;
        z-index: 1;
        backdrop-filter: blur(0.8px);
      }
      .slide-content h1 {
        font-family: "Montserrat", sans-serif;
        font-size: clamp(1.3rem, 4vw, 2.2rem);
        font-weight: 700;
        line-height: 1.25;
        margin-bottom: 1.5rem;
        color: var(--primary-blue);
        letter-spacing: -0.02em;
      }
      .btn-primary-custom {
        background-color: var(--primary-red);
        color: white;
        border: none;
        padding: 0.8rem 2.2rem;
        font-family: "Montserrat", sans-serif;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        border-radius: 40px;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
        transition: 0.2s;
        box-shadow: 0 4px 10px rgba(198, 40, 40, 0.25);
        text-transform: uppercase;
      }
      .btn-primary-custom:hover {
        background-color: #9b2c2c;
        transform: translateY(-2px);
        color: white;
      }
      .slider-dots {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 0.8rem;
        z-index: 10;
      }
      .dot {
        width: 10px;
        height: 10px;
        background: #cbd5e1;
        border-radius: 20px;
        transition: all 0.3s ease;
        cursor: pointer;
      }
      .dot.active {
        background: var(--primary-red);
        width: 30px;
      }

      /* Feature Strip */
      .feature-strip {
        background: var(--white);
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-light);
        border-top: 1px solid var(--border-light);
      }
      .feature-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 2rem;
        align-items: center;
      }
      .feature-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: "Montserrat", sans-serif;
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.3px;
        color: var(--primary-blue);
        text-transform: uppercase;
      }
      .feature-item i {
        color: var(--primary-red);
        font-size: 1rem;
      }

      /* About Section */
      .about-section {
        padding: 4rem 0;
        background: var(--white);
      }
      .about-wrapper {
        display: flex;
        gap: 3rem;
        align-items: center;
        flex-wrap: wrap;
      }
      .about-content {
        flex: 1;
        min-width: 280px;
      }
      .about-content h3 {
        font-family: "Montserrat", sans-serif;
        font-size: clamp(1.3rem, 4vw, 1.6rem);
        font-weight: 700;
        color: var(--primary-blue);
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
      }
      .about-content p {
        font-family: "Lato", sans-serif;
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-dark);
        margin-bottom: 1.2rem;
      }
      .about-image {
        flex: 1;
        min-width: 280px;
        border-radius: 28px;
        overflow: hidden;
        box-shadow: var(--card-shadow);
        border: 1px solid var(--border-light);
      }
      .about-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
      }
      .about-image:hover img {
        transform: scale(1.02);
      }

      /* Product Header */
      .product-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 2rem;
      }
      .explore-all-btn {
        background-color: transparent;
        border: 2px solid var(--primary-red);
        color: var(--primary-red);
        padding: 0.7rem 1.8rem;
        font-family: "Montserrat", sans-serif;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        border-radius: 40px;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        transition: all 0.2s;
        text-transform: uppercase;
        background: white;
      }
      .explore-all-btn:hover {
        background-color: var(--primary-red);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(198, 40, 40, 0.25);
      }

      /* Carousel */
      .infinite-carousel-section {
        overflow: hidden;
        width: 100%;
        position: relative;
        background: linear-gradient(145deg, #fefefe 0%, #fafcff 100%);
        padding: 2rem 0 3rem 0;
      }
      .carousel-track-container {
        position: relative;
        width: 100%;
      }
      .carousel-track {
        display: flex;
        gap: 24px;
        width: max-content;
        will-change: transform;
        animation: infiniteScroll 45s linear infinite;
      }
      .infinite-carousel-section:hover .carousel-track {
        animation-play-state: paused;
      }
      .product-card-premium {
        width: 300px;
        flex-shrink: 0;
        background: var(--white);
        border-radius: 24px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: var(--card-shadow);
        border: 1px solid rgba(10, 43, 94, 0.08);
      }
      .product-card-premium:hover {
        transform: translateY(-6px);
        box-shadow: var(--card-hover-shadow);
        border-color: rgba(198, 40, 40, 0.2);
      }
      .card-image {
        position: relative;
        height: 240px;
        background-size: 100%;
        background-position: center;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        padding: 16px;
        border-radius: 24px 24px 24px 24px;
        margin: 14px 14px 0 14px;
        background-size: cover;
      }
      .card-image .icon-badge {
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(4px);
        border-radius: 40px;
        padding: 5px 14px;
        font-family: "Montserrat", sans-serif;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        color: var(--primary-blue);
        display: inline-flex;
        align-items: center;
        gap: 6px;
        text-transform: uppercase;
        display: none;
      }
      .card-image .icon-badge i {
        font-size: 0.9rem;
        color: var(--primary-red);
      }
      .card-content {
        padding: 18px 18px 22px;
      }
      .product-title {
        font-family: "Montserrat", sans-serif;
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--primary-blue);
        letter-spacing: -0.01em;
        line-height: 1.3;
        margin-bottom: 6px;
      }
      .product-category {
        font-family: "Montserrat", sans-serif;
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        font-weight: 600;
        color: var(--primary-red);
        margin-bottom: 8px;
      }
      .product-description {
        font-family: "Lato", sans-serif;
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-bottom: 16px;
        line-height: 1.45;
      }
      @keyframes infiniteScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
      }

      /* Global Section */
      .globe-container {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        margin-top: 2rem;
        flex-wrap: wrap;
      }
      .globe-image {
        text-align: center;
        flex: 5;
      }
      .globe-image img {
        width: 100%;
        width: 1000px;
        display: inline-block;
      }
      .globe-text {
        flex: 1;
      }
      .globe-text h1 {
        font-size: 0.8rem;
        margin-top: 1rem;
        color: var(--primary-blue);
      }
      .globe-text p {
        color: var(--text-muted);
      }

      /* Footer */
      footer {
        background: #0a2540;
        color: #eef2ff;
        padding: 3rem 24px 10px;
        border-top: 4px solid var(--primary-red);
      }
      .footer-content {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
      }
      .footer-col {
        min-width: 0; /* Allows content to shrink properly */
      }
      .footer-col .logo img {
        max-width: 100%;
        height: auto;
      }
      .footer-col h4 {
        color: white;
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 1.2rem;
        letter-spacing: 0.5px;
      }
      .footer-col p {
        font-size: 0.85rem;
        line-height: 1.6;
        color: #cddcec;
        margin-bottom: 0.5rem;
      }
      .footer-col .quote {
        font-style: italic;
        margin-top: 0.8rem;
        font-size: 0.85rem;
        color: #bdd3ec;
        border-left: 2px solid var(--primary-red);
        padding-left: 1rem;
      }
      .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
      }
      .footer-links a {
        font-family: "Montserrat", sans-serif;
        color: #cddcec;
        text-decoration: none;
        font-size: 0.8rem;
        transition: color 0.2s;
        cursor: pointer;
      }
      .footer-links a:hover {
        color: var(--primary-red);
      }
      .contact-info-footer {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
      }
      .contact-info-footer p {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.8rem;
        color: #cddcec;
      }
      .contact-info-footer i {
        width: 20px;
        color: var(--primary-red);
      }
      .footer-social {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
        flex-wrap: wrap;
      }
      .footer-social a {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #cddcec;
        font-size: 1rem;
        transition: all 0.2s;
        text-decoration: none;
      }
      .footer-social a:hover {
        background: var(--primary-red);
        color: white;
        transform: translateY(-3px);
      }
      .copyright {
        grid-column: span 4;
        text-align: center;
        padding-top: 2rem;
        margin-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.7rem;
        color: #b9cfec;
      }

      /* Fade transition for content */
      .page-content {
        transition: opacity 0.25s ease-in-out;
        opacity: 1;
      }
      .page-content.fade-out {
        opacity: 0;
      }

      /* Bootstrap responsive overrides */
      .img-fluid-custom {
        max-width: 100%;
        height: auto;
      }

      /* Responsive Design */
      @media (max-width: 992px) {
        .footer-content {
          grid-template-columns: repeat(2, 1fr);
          gap: 2rem;
        }
        .copyright {
          grid-column: span 2;
        }
        .nav-links {
          gap: 1.2rem;
        }
      }

      @media (max-width: 768px) {
        .container-custom {
          padding: 0 20px;
        }
        .navbar-custom {
          flex-direction: column;
          text-align: center;
          padding: 1rem 20px;
        }
        .nav-links {
          justify-content: center;
          gap: 1rem;
          flex-wrap: wrap;
        }
        .slide-content {
          padding: 1.2rem 1.5rem;
          max-width: 90%;
        }
        .slide-content h1 {
          font-size: 1.3rem;
          line-height: 1.4;
        }
        .hero-slider,
        .slides-container,
        .slide {
          min-height: 420px;
        }
        .about-section {
          padding: 2rem 0;
        }
        .about-wrapper {
          flex-direction: column;
        }
        .about-image {
          order: -1;
        }
        .product-card-premium {
          width: 270px;
        }
        .footer-content {
          grid-template-columns: 1fr;
          gap: 2.5rem;
          text-align: left;
        }
        .footer-col {
          padding: 0;
        }
        .footer-col h4 {
          font-size: 1.1rem;
          margin-bottom: 1rem;
        }
        .footer-col p {
          font-size: 0.85rem;
          line-height: 1.7;
          word-wrap: break-word;
          overflow-wrap: break-word;
        }
        .footer-col .quote {
          padding-left: 0.8rem;
          font-size: 0.9rem;
          line-height: 1.7;
          margin-top: 1rem;
          word-wrap: break-word;
          overflow-wrap: break-word;
        }
        .footer-links {
          align-items: flex-start;
        }
        .footer-links a {
          font-size: 0.85rem;
        }
        .contact-info-footer p {
          justify-content: flex-start;
          text-align: left;
          word-wrap: break-word;
          overflow-wrap: break-word;
        }
        .footer-social {
          justify-content: flex-start;
        }
        .copyright {
          grid-column: span 1;
          text-align: center;
          padding-top: 1.5rem;
        }
        .globe-container {
          flex-direction: column;
          text-align: center;
        }
        .globe-text {
          text-align: center;
        }
        .product-header {
          flex-direction: column;
          align-items: flex-start;
        }
      }

      @media (max-width: 480px) {
        .container-custom {
          padding: 0 16px;
        }
        .navbar-custom {
          padding: 1rem 16px;
        }
        .logo img {
          max-height: 60px;
        }
        .slide-content h1 {
          font-size: 1.1rem;
        }
        .slide-content p {
          font-size: 0.85rem;
        }
        .btn-primary-custom {
          padding: 0.6rem 1.5rem;
          font-size: 0.75rem;
        }
        .feature-item {
          font-size: 0.65rem;
        }
        .product-card-premium {
          width: 260px;
        }
        .card-image {
          height: 200px;
        }
        footer {
          padding: 2rem 16px 10px;
        }
        .footer-content {
          gap: 2rem;
        }
        .footer-col .logo {
          margin-bottom: 1rem;
        }
        .footer-col .logo img {
          height: 60px !important;
          max-height: 60px;
        }
        .footer-col h4 {
          font-size: 1rem;
        }
        .footer-col p, .contact-info-footer p {
          font-size: 0.8rem;
        }
        .footer-col .quote {
          font-size: 0.85rem;
        }
        .footer-social a {
          width: 32px;
          height: 32px;
          font-size: 0.9rem;
        }
      }

      @media (max-width: 375px) {
        .container-custom {
          padding: 0 12px;
        }
        .navbar-custom {
          padding: 0.8rem 12px;
        }
        .logo img {
          max-height: 55px;
        }
        footer {
          padding: 1.5rem 12px 10px;
        }
        .footer-col .logo img {
          height: 55px !important;
          max-height: 55px;
        }
        .footer-col .quote {
          font-size: 0.8rem;
          line-height: 1.6;
        }
        .slide-content {
          padding: 1rem 1.2rem;
        }
      }

      /* Lazy load image effect */
      img.lazy {
        opacity: 0;
        transition: opacity 0.3s ease;
      }
      img.lazy.loaded {
        opacity: 1;
      }