 :root {
        --primary-blue: #005b96;
        --accent-blue: #00a6d6;
        --solar-yellow: #f4c430;
        --eco-green: #3fa34d;
        --light-gray: #f6f6f6;
        --slate-gray: #555555;
        --charcoal-black: #1e1e1e;
        --white: #ffffff;
        --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
        --transition: all 0.3s ease;
      }

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

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Jost", sans-serif;
        line-height: 1.6;
        color: var(--slate-gray);
        background: linear-gradient(
            rgba(238, 239, 240, 0.829),
            rgba(248, 249, 250, 0.788)
          ),
          url("WhatsApp Image 2025-11-27 at 20.12.18_d3f0f74b.jpg");
        background-size: cover;
        background-position: center;
      }

      h1,
      h2,
      h3,
      h4 {
        color: var(--charcoal-black);
        margin-bottom: 1rem;
        line-height: 1.2;
      }

      h1 {
        font-size: 2.8rem;
        font-weight: 700;
      }

      h2 {
        font-size: 2.2rem;
        font-weight: 600;
        position: relative;
        padding-bottom: 0.8rem;
        margin-bottom: 2rem;
      }

      h2:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: var(--accent-blue);
      }

      h3 {
        font-size: 1.5rem;
        font-weight: 600;
      }

      h4 {
        font-size: 1.2rem;
        font-weight: 600;
      }

      p {
        margin-bottom: 1rem;
      }

      a {
        text-decoration: none;
        color: var(--primary-blue);
        transition: var(--transition);
      }

      img {
        max-width: 100%;
        height: auto;
        display: block;
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }

      .section-padding {
        padding: 5rem 0;
      }

      .text-center {
        text-align: center;
      }

      .text-center h2:after {
        left: 50%;
        transform: translateX(-50%);
      }

      /* Buttons */
      .btn {
        display: inline-block;
        padding: 14px 32px;
        border-radius: 50px;
        font-weight: 600;
        text-align: center;
        cursor: pointer;
        transition: var(--transition);
        border: none;
        font-size: 1rem;
        letter-spacing: 0.5px;
      }

      .btn-primary {
        background-color: var(--primary-blue);
        color: var(--white);
        box-shadow: var(--shadow);
      }

      .btn-primary:hover {
        background-color: #003b63;
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
      }

      .btn-secondary {
        background-color: var(--accent-blue);
        color: var(--white);
        box-shadow: var(--shadow);
      }

      .btn-secondary:hover {
        background-color: #0085b3;
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
      }

      .btn-small {
        padding: 10px 22px;
        font-size: 0.9rem;
      }

      .btn-whatsapp {
        background-color: #25d366;
        color: white;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }

      .btn-whatsapp:hover {
        background-color: #128c7e;
        transform: translateY(-3px);
      }

      /* Header */
      .page-header {
        background: linear-gradient(
            rgba(0, 91, 150, 0.85),
            rgba(0, 166, 214, 0.85)
          ),
          url("https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
        background-size: cover;
        background-position: center;
        color: white;
        padding: 100px 0 60px;
        text-align: center;
        margin-bottom: 30px;
      }

      .page-header h1 {
        color: white;
        margin-bottom: 0.5rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
      }

      .breadcrumb {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 1.5rem;
        font-size: 0.95rem;
      }

      .breadcrumb a {
        color: var(--solar-yellow);
        transition: var(--transition);
      }

      .breadcrumb a:hover {
        color: white;
        text-decoration: underline;
      }

      .breadcrumb span {
        color: rgba(255, 255, 255, 0.8);
      }

      /* Product Categories Grid */
      .categories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin: 40px 0;
      }

      .category-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        height: 100%;
        display: flex;
        flex-direction: column;
      }

      .category-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
      }

      .category-img {
        height: 220px;
        overflow: hidden;
      }

      .category-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .category-card:hover .category-img img {
        transform: scale(1.05);
      }

      .category-content {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
      }

      .category-content h3 {
        color: var(--primary-blue);
        margin-bottom: 15px;
        font-size: 1.4rem;
      }

      .category-list {
        list-style: none;
        margin-bottom: 20px;
        flex-grow: 1;
      }

      .category-list li {
        padding: 6px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .category-list li:last-child {
        border-bottom: none;
      }

      .category-list li i {
        color: var(--accent-blue);
        font-size: 0.9rem;
      }

      /* Products Showcase */
      .products-showcase {
        background-color: var(--light-gray);
        border-radius: 15px;
        padding: 40px;
        margin: 60px 0;
      }

      .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
      }

      .product-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        height: 100%;
      }

      .product-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-hover);
      }

      .product-img {
        height: 180px;
        overflow: hidden;
      }

      .product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .product-card:hover .product-img img {
        transform: scale(1.08);
      }

      .product-content {
        padding: 20px;
      }

      .product-content h4 {
        color: var(--charcoal-black);
        margin-bottom: 10px;
        font-size: 1.1rem;
      }

      .product-content p {
        font-size: 0.9rem;
        color: var(--slate-gray);
        line-height: 1.5;
        margin-bottom: 15px;
      }

      .product-category {
        display: inline-block;
        background: rgba(0, 166, 214, 0.1);
        color: var(--accent-blue);
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 10px;
      }

      /* Section Headers */
      .section-header {
        margin-bottom: 40px;
      }

      .section-header h2 {
        margin-bottom: 10px;
      }

      .section-header p {
        max-width: 700px;
        margin: 0 auto;
        color: var(--slate-gray);
      }

      /* Footer */
      footer {
        background-color: var(--charcoal-black);
        color: var(--white);
        padding: 4rem 0 2rem;
        margin-top: 60px;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
      }

      .footer-column h3 {
        color: var(--solar-yellow);
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
      }

      .footer-column ul {
        list-style: none;
      }

      .footer-column ul li {
        margin-bottom: 0.8rem;
      }

      .footer-column ul li a {
        color: #ccc;
        transition: var(--transition);
      }

      .footer-column ul li a:hover {
        color: var(--accent-blue);
        padding-left: 5px;
      }

      .contact-info li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
      }

      .contact-info li i {
        margin-right: 10px;
        color: var(--accent-blue);
      }

      .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
      }

      .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--white);
        transition: var(--transition);
      }

      .social-links a:hover {
        background-color: var(--accent-blue);
        transform: translateY(-3px);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.9rem;
        color: #aaa;
      }

      /* Responsive Design */
      @media (max-width: 992px) {
        h1 {
          font-size: 2.3rem;
        }

        h2 {
          font-size: 1.8rem;
        }

        .categories-grid {
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .products-grid {
          grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        }
      }

      @media (max-width: 768px) {
        .section-padding {
          padding: 3rem 0;
        }

        .page-header {
          padding: 80px 0 50px;
        }

        .categories-grid {
          grid-template-columns: 1fr;
        }

        .products-showcase {
          padding: 30px 20px;
        }

        .products-grid {
          grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
          gap: 20px;
        }

        .footer-content {
          grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        }
      }

      @media (max-width: 480px) {
        h1 {
          font-size: 2rem;
        }

        h2 {
          font-size: 1.6rem;
        }

        .products-grid {
          grid-template-columns: 1fr;
        }

        .category-img {
          height: 200px;
        }
      }