:root {
      --equipment-accent: #288a5d; /* Green accent */
      --equipment-accent-dark: #235c49;
      --equipment-accent-light: #aed581;
      --gradient-hero: linear-gradient(135deg, rgb(40, 138, 93) 0%, rgb(35, 92, 73) 100%);
    }

    .equipment-page {
      --accent-color: var(--equipment-accent);
      --nav-hover-color: var(--equipment-accent);
    }

    /* Logo Icon */
    .logo-icon {
      width: 40px;
      height: 40px;
      background: #235c49;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 12px;
      flex-shrink: 0;
    }

    .logo-icon i {
      color: white;
      font-size: 20px;
    }

    .header .logo h1 {
      font-size: 24px;
      font-weight: 700;
      margin: 0;
      color: var(--heading-color);
    }

    .header .logo h1 span {
      color: var(--equipment-accent);
    }

    /* Hero Section */
    .equipment-hero {
      min-height: 100vh;
      padding: 100px 0 60px;
      background: #f7f9f9;
      background-image: url('assets/img/hero-background.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .equipment-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(247, 249, 249, 0.3);
      z-index: 0;
    }

    .equipment-hero .container {
      position: relative;
      z-index: 1;
    }

    .equipment-hero .hero-badge {
      background: var(--equipment-accent);
      color: white;
      font-size: 14px;
      font-weight: 500;
      padding: 8px 20px;
      border-radius: 50px;
      margin-bottom: 30px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .equipment-hero h1 {
      font-size: 48px;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 24px;
      color: var(--heading-color);
    }

    .equipment-hero h1 .accent-text {
      color: var(--equipment-accent);
      display: block;
    }

    .equipment-hero .hero-description {
      font-size: 18px;
      color: var(--default-color);
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .equipment-hero .cta-buttons {
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary-equipment {
      background: var(--gradient-hero);
      background-image: linear-gradient(135deg, rgb(40, 138, 93) 0%, rgb(35, 92, 73) 100%);
      color: white;
      padding: 14px 32px;
      border-radius: 8px;
      font-weight: 600;
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-primary-equipment:hover {
      background: linear-gradient(135deg, rgb(35, 92, 73) 0%, rgb(40, 138, 93) 100%);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(40, 138, 93, 0.3);
      color: white;
    }

    .btn-link-equipment {
      background: white;
      color: var(--heading-color);
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: 8px;
      border: 1px solid #ddd;
      transition: all 0.3s;
    }

    .btn-link-equipment:hover {
      background: #f7f9f9;
      border-color: var(--equipment-accent);
      color: var(--heading-color);
    }

    .hero-features {
      display: flex;
      gap: 24px;
      margin-top: 60px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .hero-feature {
      background: white;
      border-radius: 8px;
      padding: 12px 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      min-width: 140px;
      transition: all 0.3s;
    }

    .hero-feature:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    .hero-feature-icon {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--equipment-accent);
      font-size: 24px;
      margin-bottom: 6px;
    }

    .hero-feature-text {
      font-weight: 500;
      color: var(--heading-color);
      font-size: 13px;
      line-height: 1.4;
    }

    /* How It Works Section */
    .how-it-works {
      padding: 80px 0;
      background: #f7f9f9;
    }

    .how-it-works .section-title {
      text-align: center;
      margin-bottom: 20px;
    }

    .section-subtitle {
      text-align: center;
      color: var(--default-color);
      font-size: 18px;
      margin-bottom: 40px;
    }

    .how-it-works .section-subtitle {
      margin-bottom: 60px;
    }

    .process-steps-row {
      margin-top: 50px;
    }

    .process-step-card {
      background: white;
      border-radius: 12px;
      padding: 40px 30px;
      text-align: center;
      position: relative;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: all 0.3s;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .process-step-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .step-number {
      position: absolute;
      top: 20px;
      left: 20px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--equipment-accent);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 18px;
    }

    .process-step-icon {
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 20px auto 24px;
      color: var(--equipment-accent);
      font-size: 48px;
    }

    .process-step-card h3 {
      font-size: 22px;
      margin-bottom: 16px;
      color: var(--heading-color);
      font-weight: 700;
    }

    .process-step-card p {
      color: var(--default-color);
      line-height: 1.6;
      margin: 0;
    }


    /* What We Buy Section */
    .what-we-buy {
      padding: 80px 0;
      background: white;
    }

    .equipment-grid {
      margin-top: 50px;
    }

    .equipment-item {
      text-align: left;
      padding: 24px;
      background: white;
      border-radius: 12px;
      transition: all 0.3s;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .equipment-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .equipment-item-icon {
      font-size: 40px;
      color: var(--equipment-accent);
      margin-bottom: 16px;
      display: inline-block;
    }

    .equipment-item h4 {
      font-size: 16px;
      font-weight: 500;
      color: var(--heading-color);
      margin: 0;
    }

    /* Brands Section */
    .brands-section {
      padding: 60px 0;
      background: #f7f9f9;
    }

    .brands-list {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 40px;
    }

    .brand-item {
      font-size: 16px;
      font-weight: 500;
      color: var(--heading-color);
      background: white;
      padding: 10px 24px;
      border-radius: 50px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: all 0.3s;
      white-space: nowrap;
    }

    .brand-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    /* Sectors Section */
    .sectors-section {
      padding: 80px 0;
      background: #f7f9f9;
    }

    .sectors-grid {
      margin-top: 50px;
    }

    .sector-item {
      text-align: center;
      padding: 40px 30px;
      background: white;
      border-radius: 12px;
      transition: all 0.3s;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .sector-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .sector-item-icon {
      font-size: 56px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .sector-item-icon i {
      display: block;
    }

    /* Sector icon colors */
    .sectors-grid .col-lg-3:nth-child(1) .sector-item-icon {
      color: #e91e63; /* Pink - Sveikatos priežiūra */
    }

    .sectors-grid .col-lg-3:nth-child(2) .sector-item-icon {
      color: #2196f3; /* Blue - Finansai */
    }

    .sectors-grid .col-lg-3:nth-child(3) .sector-item-icon {
      color: #ff9800; /* Orange - Gamyba */
    }

    .sectors-grid .col-lg-3:nth-child(4) .sector-item-icon {
      color: #9c27b0; /* Purple - Technologijos */
    }

    .sectors-grid .col-lg-3:nth-child(5) .sector-item-icon {
      color: #4caf50; /* Green - Mažmeninė prekyba */
    }

    .sectors-grid .col-lg-3:nth-child(6) .sector-item-icon {
      color: #ff9800; /* Orange - Švietimas / NVO */
    }

    .sectors-grid .col-lg-3:nth-child(7) .sector-item-icon {
      color: #757575; /* Grey - Valstybinės institucijos */
    }

    .sectors-grid .col-lg-3:nth-child(8) .sector-item-icon {
      color: #e91e63; /* Pink - Renginių organizavimas */
    }

    .sector-item h4 {
      font-size: 16px;
      font-weight: 500;
      color: var(--heading-color);
      margin: 0;
    }

    /* FAQ Section */
    .faq-section {
      padding: 80px 0;
      background: #f7f9f9;
    }

    .faq-list {
      max-width: 800px;
      margin: 50px auto 0;
    }

    .faq-item {
      background: white;
      border-radius: 8px;
      margin-bottom: 16px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .faq-question {
      padding: 20px 24px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: var(--heading-color);
      transition: all 0.3s;
    }

    .faq-question:hover {
      color: var(--equipment-accent);
    }

    .faq-question i {
      color: var(--equipment-accent);
      transition: transform 0.3s;
    }

    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }

    .faq-answer {
      padding: 0 24px;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s;
      color: var(--default-color);
    }

    .faq-item.active .faq-answer {
      padding: 0 24px 20px;
      max-height: 500px;
    }

    /* Contact Section */
    .contact-section {
      padding: 80px 0;
      background: #f7f9f9;
    }

    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 50px;
    }

    .contact-info {
      padding: 0;
    }

    @media (max-width: 991px) {
      .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
      }
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 32px;
    }

    .contact-info-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(40, 138, 93, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--equipment-accent);
      font-size: 24px;
      flex-shrink: 0;
    }

    .contact-info-content h4 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--heading-color);
    }

    .contact-info-content p,
    .contact-info-content ul {
      margin: 0;
      padding: 0;
      list-style: none;
      color: var(--default-color);
      line-height: 1.6;
    }

    .contact-info-content ul li {
      margin-bottom: 4px;
    }

    .why-choose-us {
      background: white;
      padding: 32px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      margin-top: 32px;
    }

    .why-choose-us h4 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 20px;
      color: var(--heading-color);
    }

    .why-choose-us ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .why-choose-us ul li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
      color: var(--default-color);
      line-height: 1.6;
    }

    .why-choose-us ul li::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--equipment-accent);
      flex-shrink: 0;
      margin-top: 6px;
    }

    .contact-form {
      background: white;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .contact-form .form-group {
      margin-bottom: 24px;
    }

    .contact-form label {
      font-weight: 600;
      color: var(--heading-color);
      margin-bottom: 8px;
      display: block;
    }

    .contact-form .form-control {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 16px;
      transition: all 0.3s;
      background: white;
    }

    .contact-form .form-control::placeholder {
      color: #999;
    }

    .contact-form .form-control:focus {
      outline: none;
      border-color: var(--equipment-accent);
      box-shadow: 0 0 0 3px rgba(40, 138, 93, 0.1);
    }

    .contact-form textarea {
      min-height: 120px;
      resize: vertical;
    }

    .btn-submit {
      background: var(--gradient-hero);
      background-image: linear-gradient(135deg, rgb(40, 138, 93) 0%, rgb(35, 92, 73) 100%);
      color: white;
      padding: 14px 32px;
      border-radius: 8px;
      font-weight: 600;
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }

    .btn-submit:hover {
      background: linear-gradient(135deg, rgb(35, 92, 73) 0%, rgb(40, 138, 93) 100%);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(40, 138, 93, 0.3);
    }

    /* Footer */
    .equipment-footer {
      background: #1f2f31;
      color: white;
      padding: 60px 0 30px;
    }

    .equipment-footer .footer-logo {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 16px;
      color: white;
    }

    .equipment-footer .footer-logo .accent {
      color: var(--equipment-accent);
    }

    .equipment-footer .footer-description {
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .equipment-footer h4 {
      color: white;
      font-size: 18px;
      margin-bottom: 20px;
    }

    .equipment-footer ul {
      list-style: none;
      padding: 0;
    }

    .equipment-footer ul li {
      margin-bottom: 12px;
    }

    .equipment-footer ul li a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: all 0.3s;
    }

    .equipment-footer ul li a:hover {
      color: var(--equipment-accent);
    }

    .equipment-footer .copyright {
      text-align: center;
      padding-top: 30px;
      margin-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.6);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .equipment-hero h1 {
        font-size: 32px;
      }

      .contact-wrapper {
        grid-template-columns: 1fr;
      }

      .process-steps {
        grid-template-columns: 1fr;
      }

      .equipment-grid,
      .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }