body {
    margin: 0;
    font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
    background: linear-gradient(120deg, #f3f7f0 0%, #faf9f6 100%);
    color: #222;
  }
  .LISSHOIMAH-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 80px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(58,125,68,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .company-logo {
    width: 180px;
    height: 60px;
    background-image: url('img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .LISSHOIMAH-nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .LISSHOIMAH-nav a {
    text-decoration: none;
    color: #3A7D44;
    font-weight: 600;
    font-size: 18px;
    padding: 8px 18px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
  }
  .LISSHOIMAH-nav a.active, .LISSHOIMAH-nav a:hover {
    background: linear-gradient(90deg, #3A7D44 60%, #FFB347 100%);
    color: #fff;
  }
  .LISSHOIMAH-hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 48px auto 0 auto;
    padding: 0 40px;
    min-height: 420px;
    background: linear-gradient(100deg, #e6f4ea 0%, #f9f6f0 100%);
    border-radius: 36px;
    box-shadow: 0 8px 32px rgba(58,125,68,0.10);
    position: relative;
    overflow: hidden;
  }
  .LISSHOIMAH-hero-content {
    max-width: 520px;
    z-index: 2;
  }
  .LISSHOIMAH-hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    color: #3A7D44;
    margin: 0 0 12px 0;
    letter-spacing: 1px;
  }
  .LISSHOIMAH-hero-sub {
    font-size: 22px;
    color: #888;
    margin-bottom: 18px;
    font-weight: 500;
  }
  .LISSHOIMAH-hero-desc {
    font-size: 18px;
    color: #444;
    margin-bottom: 28px;
    line-height: 1.7;
  }
  .LISSHOIMAH-btn-primary {
    display: inline-block;
    background: linear-gradient(90deg, #3A7D44 60%, #FFB347 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 38px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(58,125,68,0.10);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .LISSHOIMAH-btn-primary:hover {
    background: linear-gradient(90deg, #FFB347 60%, #3A7D44 100%);
    transform: translateY(-2px) scale(1.04);
  }
  .LISSHOIMAH-hero-img {
    width: 520px;
    height: 340px;
    object-fit: cover;
    border-radius: 0 36px 36px 0;
    box-shadow: 0 4px 24px rgba(58,125,68,0.10);
    z-index: 1;
  }
  .LISSHOIMAH-section {
    max-width: 1200px;
    margin: 64px auto 0 auto;
    padding: 0 40px;
  }
  .LISSHOIMAH-about-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 36px;
    box-shadow: 0 8px 32px rgba(58,125,68,0.10);
    width: 100%;
    overflow: hidden;
    min-height: 260px;
  }
  .LISSHOIMAH-about-img {
    width: 320px;
    height: 260px;
    margin-left: 10px;
    /* object-fit: cover; */
    /* border-radius: 0 0 36px 0; */
    /* box-shadow: 0 4px 24px rgba(58,125,68,0.10); */
  }
  .LISSHOIMAH-about-content {
    flex: 1 1 0;
    padding: 40px 48px 32px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .LISSHOIMAH-about-bar {
    width: 60px;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, #3A7D44 60%, #FFB347 100%);
    margin-bottom: 18px;
  }
  .LISSHOIMAH-about-content h2 {
    font-size: 32px;
    font-weight: 900;
    color: #3A7D44;
    margin: 0 0 8px 0;
    letter-spacing: 1px;
  }
  .LISSHOIMAH-about-sub {
    font-size: 18px;
    color: #888;
    margin-bottom: 12px;
    font-weight: 500;
  }
  .LISSHOIMAH-about-desc {
    font-size: 17px;
    color: #444;
    margin-bottom: 18px;
    line-height: 1.7;
  }
  .LISSHOIMAH-section-title {
    font-size: 28px;
    font-weight: 800;
    color: #3A7D44;
    margin-bottom: 32px;
    letter-spacing: 1px;
  }
  .LISSHOIMAH-products-list {
    display: flex;
    gap: 32px;
    justify-content: space-between;
  }
  .LISSHOIMAH-product-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(58,125,68,0.10);
    padding: 24px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
    min-width: 0;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .LISSHOIMAH-product-card:hover {
    box-shadow: 0 8px 32px rgba(58,125,68,0.16);
    transform: translateY(-4px) scale(1.03);
  }
  .LISSHOIMAH-product-img {
    width: 180px;
    height: 140px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 18px;
  }
  .LISSHOIMAH-product-info {
    text-align: center;
  }
  .LISSHOIMAH-product-name {
    font-size: 20px;
    font-weight: 700;
    color: #3A7D44;
    margin-bottom: 8px;
  }
  .LISSHOIMAH-product-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 14px;
  }
  .LISSHOIMAH-btn-secondary {
    display: inline-block;
    background: #fffbe6;
    color: #3A7D44;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 8px;
    border: 1.5px solid #FFB347;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
  }
  .LISSHOIMAH-btn-secondary:hover {
    background: #FFB347;
    color: #fff;
    border: 1.5px solid #3A7D44;
    transform: translateY(-2px) scale(1.04);
  }
  .LISSHOIMAH-contact-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(58,125,68,0.10);
    padding: 36px 40px;
    max-width: 700px;
    margin: 0 auto;
  }
  .LISSHOIMAH-contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 18px;
  }
  .LISSHOIMAH-contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 17px;
    color: #3A7D44;
    font-weight: 600;
  }
  .LISSHOIMAH-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F3F7F0;
    padding: 4px;
    box-sizing: border-box;
    border: 2px solid #F3F7F0;
    transition: border 0.2s, background 0.2s, filter 0.2s;
    filter: grayscale(0.2) brightness(0.95);
  }
  .LISSHOIMAH-contact-icon:hover {
    border: 2px solid #FFB347;
    background: #fffbe6;
    filter: none;
  }
  .LISSHOIMAH-footer {
    background: linear-gradient(90deg, #f3f7f0 60%, #e6f4ea 100%);
    border-top: 1px solid #e6e6e6;
    margin-top: 64px;
    padding: 0;
  }
  .LISSHOIMAH-footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 40px 24px 40px;
    gap: 48px;
  }
  .LISSHOIMAH-footer-col {
    flex: 1 1 0;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .LISSHOIMAH-footer-brand {
    align-items: flex-start;
  }
  .LISSHOIMAH-footer-desc {
    color: #3A7D44;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 12px;
    max-width: 260px;
  }
  .LISSHOIMAH-footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #3A7D44;
    margin-bottom: 16px;
  }
  .LISSHOIMAH-footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .LISSHOIMAH-footer-nav a {
    color: #444;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
  }
  .LISSHOIMAH-footer-nav a:hover {
    color: #3A7D44;
  }
  .LISSHOIMAH-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
  }
  .LISSHOIMAH-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3A7D44;
    font-size: 15px;
  }
  .LISSHOIMAH-footer-icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F3F7F0;
    margin-right: 8px;
    transition: background 0.2s, box-shadow 0.2s;
  }
  .LISSHOIMAH-footer-icon-svg svg {
    width: 22px;
    height: 22px;
    display: block;
  }
  .LISSHOIMAH-footer-icon-svg:hover, .LISSHOIMAH-footer-social a:hover {
    background: #FFB347;
    box-shadow: 0 2px 8px rgba(255,179,71,0.10);
  }
  .LISSHOIMAH-footer-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
  }
  .LISSHOIMAH-footer-social a {
    text-decoration: none;
  }
  .LISSHOIMAH-footer-divider {
    width: 100%;
    height: 1px;
    background: #e6e6e6;
    margin: 0 auto;
  }
  .LISSHOIMAH-footer-copyright {
    color: #888;
    font-size: 15px;
    text-align: center;
    padding: 18px 0 12px 0;
  }
  .LISSHOIMAH-advantages-list {
    display: flex;
    gap: 32px;
    justify-content: space-between;
    margin-bottom: 24px;
  }
  .LISSHOIMAH-advantage-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(58,125,68,0.10);
    padding: 32px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
    min-width: 0;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .LISSHOIMAH-advantage-card:hover {
    box-shadow: 0 8px 32px rgba(58,125,68,0.16);
    transform: translateY(-4px) scale(1.03);
  }
  .LISSHOIMAH-advantage-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
  }
  .LISSHOIMAH-advantage-title {
    font-size: 19px;
    font-weight: 700;
    color: #3A7D44;
    margin-bottom: 8px;
  }
  .LISSHOIMAH-advantage-desc {
    font-size: 15px;
    color: #666;
  }
  .LISSHOIMAH-stats-list {
    display: flex;
    gap: 32px;
    justify-content: space-between;
    margin: 32px 0 24px 0;
  }
  .LISSHOIMAH-stat-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(58,125,68,0.10);
    padding: 32px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 220px;
    min-width: 0;
    text-align: center;
  }
  .LISSHOIMAH-stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #3A7D44;
    margin-bottom: 8px;
  }
  .LISSHOIMAH-stat-label {
    font-size: 15px;
    color: #888;
  }
  .LISSHOIMAH-process-list {
    display: flex;
    gap: 32px;
    justify-content: space-between;
    margin-bottom: 24px;
  }
  .LISSHOIMAH-process-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(58,125,68,0.10);
    padding: 32px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
    min-width: 0;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .LISSHOIMAH-process-card:hover {
    box-shadow: 0 8px 32px rgba(58,125,68,0.16);
    transform: translateY(-4px) scale(1.03);
  }
  .LISSHOIMAH-process-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
  }
  .LISSHOIMAH-process-title {
    font-size: 18px;
    font-weight: 700;
    color: #3A7D44;
    margin-bottom: 8px;
  }
  .LISSHOIMAH-process-desc {
    font-size: 15px;
    color: #666;
  }
  .LISSHOIMAH-news-list {
    display: flex;
    gap: 32px;
    justify-content: space-between;
    margin-bottom: 24px;
  }
  .LISSHOIMAH-news-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(58,125,68,0.10);
    padding: 18px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 260px;
    min-width: 0;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .LISSHOIMAH-news-card:hover {
    box-shadow: 0 8px 32px rgba(58,125,68,0.16);
    transform: translateY(-4px) scale(1.03);
  }
  .LISSHOIMAH-news-img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
  }
  .LISSHOIMAH-news-title {
    font-size: 16px;
    font-weight: 700;
    color: #3A7D44;
    margin-bottom: 4px;
  }
  .LISSHOIMAH-news-date {
    font-size: 13px;
    color: #888;
  }
  .LISSHOIMAH-testimonials-list {
    display: flex;
    gap: 32px;
    justify-content: flex-start;
    margin-bottom: 24px;
  }
  .LISSHOIMAH-testimonial-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(58,125,68,0.10);
    padding: 24px 20px 20px 20px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    max-width: 420px;
    min-width: 0;
    width: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .LISSHOIMAH-testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(58,125,68,0.16);
    transform: translateY(-4px) scale(1.03);
  }
  .LISSHOIMAH-testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
  }
  .LISSHOIMAH-testimonial-content {
    flex: 1 1 0;
  }
  .LISSHOIMAH-testimonial-text {
    font-size: 15px;
    color: #444;
    margin-bottom: 8px;
    line-height: 1.6;
  }
  .LISSHOIMAH-testimonial-name {
    font-size: 14px;
    color: #3A7D44;
    font-weight: 700;
    margin-bottom: 2px;
  }
  .LISSHOIMAH-testimonial-stars {
    color: #FFB347;
    font-size: 16px;
    letter-spacing: 2px;
  }
  @media (max-width: 900px) {
    .LISSHOIMAH-header-wrapper {
      flex-direction: column;
      height: auto;
      padding: 0 16px;
    }
    .LISSHOIMAH-nav ul {
      gap: 18px;
    }
    .LISSHOIMAH-hero-section {
      flex-direction: column;
      min-height: unset;
      padding: 24px 8px;
    }
    .LISSHOIMAH-hero-img {
      width: 100%;
      height: 180px;
      border-radius: 0 0 36px 36px;
      margin-top: 18px;
    }
    .LISSHOIMAH-section {
      padding: 0 8px;
    }
    .LISSHOIMAH-about-card {
      flex-direction: column;
      min-height: unset;
    }
    .LISSHOIMAH-about-img {
      width: 100%;
      height: 180px;
      border-radius: 0;
    }
    .LISSHOIMAH-about-content {
      padding: 24px 16px 16px 16px;
    }
    .LISSHOIMAH-products-list {
      flex-direction: column;
      gap: 24px;
      align-items: center;
    }
    .LISSHOIMAH-product-card {
      max-width: 100%;
      width: 100%;
    }
    .LISSHOIMAH-contact-card {
      padding: 24px 8px;
    }
    .LISSHOIMAH-footer-main {
      flex-direction: column;
      gap: 32px;
      padding: 32px 8px 16px 8px;
    }
    .LISSHOIMAH-footer-col {
      min-width: 0;
      align-items: flex-start;
    }
    .LISSHOIMAH-footer-social {
      margin-bottom: 8px;
    }
    .LISSHOIMAH-advantages-list,
    .LISSHOIMAH-stats-list,
    .LISSHOIMAH-process-list,
    .LISSHOIMAH-news-list,
    .LISSHOIMAH-testimonials-list {
      flex-direction: column;
      gap: 24px;
      align-items: center;
    }
    .LISSHOIMAH-advantage-card,
    .LISSHOIMAH-stat-card,
    .LISSHOIMAH-process-card,
    .LISSHOIMAH-news-card,
    .LISSHOIMAH-testimonial-card {
      max-width: 100%;
      width: 100%;
    }
  }
  /* Cookie Consent Modal */
  .cookie-consent-modal {
    position: fixed;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cookie-consent-content {
    background: #23272F;
    color: #fff;
    border-radius: 28px;
    box-shadow: 0 12px 48px rgba(58,125,68,0.18);
    padding: 48px 40px 36px 40px;
    max-width: 600px;
    width: 90%;
    position: relative;
    text-align: left;
    font-family: inherit;
  }
  .cookie-consent-title {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 18px;
    color: #FFB347;
  }
  .cookie-consent-desc {
    font-size: 17px;
    color: #e0e0e0;
    margin-bottom: 32px;
    line-height: 1.7;
  }
  .cookie-consent-desc a {
    color: #3A7D44;
    text-decoration: underline;
  }
  .cookie-consent-actions {
    display: flex;
    gap: 18px;
    justify-content: flex-end;
  }
  .cookie-consent-btn {
    font-size: 16px;
    font-weight: 800;
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  }
  .cookie-consent-btn.accept {
    background: linear-gradient(90deg, #3A7D44 60%, #FFB347 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(58,125,68,0.10);
  }
  .cookie-consent-btn.accept:hover {
    background: linear-gradient(90deg, #FFB347 60%, #3A7D44 100%);
  }
  .cookie-consent-btn.reject {
    background: #fffbe6;
    color: #3A7D44;
    border: 2px solid #FFB347;
  }
  .cookie-consent-btn.reject:hover {
    background: #FFB347;
    color: #fff;
    border: 2px solid #3A7D44;
  }
  .cookie-consent-close {
    position: absolute;
    top: 18px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 2;
  }
  .cookie-consent-close:hover {
    color: #FFB347;
  }
  @media (max-width: 600px) {
    .cookie-consent-content {
      padding: 24px 8px 18px 8px;
      max-width: 98vw;
    }
    .cookie-consent-title {
      font-size: 20px;
    }
    .cookie-consent-desc {
      font-size: 15px;
    }
    .cookie-consent-btn {
      font-size: 14px;
      padding: 10px 10px;
    }
  }
  .company-name {
    font-size: 28px;
    font-weight: 900;
    color: #3A7D44;
    margin-left: 6px;
    letter-spacing: 1.2px;
    font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
    display: flex;
    align-items: center;
    height: 60px;
    user-select: none;
  }