@scope(.sectionrange){

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: white;
}

.container {
  display: flex;
  /* height: 70vh; */
  max-width: 1280px;
  margin: 0 auto;
}

.hero-section {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 600px;
  /* max-height: 600px; */
  /* width: 580px; */
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background: linear-gradient(45deg, rgba(139, 0, 0, 0.4), rgba(255, 20, 147, 0.4), rgba(75, 0, 130, 0.4));*/
  opacity: 0.7;
}

.logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.logo-icon {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 3px;
  margin-bottom: 20px;
  height: 40px;
}

.bar {
  width: 4px;
  background: white;
  border-radius: 2px;
  animation: pulse 2s ease-in-out infinite;
}

.bar1 {
  height: 20px;
  animation-delay: 0s;
}

.bar2 {
  height: 35px;
  animation-delay: 0.2s;
}

.bar3 {
  height: 25px;
  animation-delay: 0.4s;
}

.bar4 {
  height: 40px;
  animation-delay: 0.6s;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.logo-text h1 {
  color: white;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 5px;
}

.logo-text p {
  color: white;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
}

.content-section {
  flex: 1;
  justify-content: center;
  /* padding: 0px 20px; */
  padding-right: 0px;
  /* background: white; */
  display: flex;
  align-items: center;
}

.main-content h2 {
  font-size: 4.4rem;
  max-width: 1200px;
  margin: auto;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  margin-top: 80px;
  text-align: center;
  color: #000000;
}

.description {
  font-size: 24px;
  /* max-width: 700px; */
  color: #000000;
  margin-bottom: 35px;
  text-align: center;
  font-weight:300;
  margin: auto;
  line-height: 1.6;
}

.features {
  display: flex;
  margin: auto;
  max-width: 950px;
  justify-content: center;
  flex-direction: row;
  gap: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

 @media(max-width:1470px) and (min-width:768px) {
      

      .main-content h2{
        font-size: 4rem;
      }
    }

     @media(max-width:1350px) and (min-width:768px){
      
      .main-content h2{
        font-size: 4rem;
      }
    }


.feature-icon {
  width: 111px;
  height: 110px;
  background: #393939;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 80px;
  height: 80px;
}

.feature-content h3 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #000000;
}

.feature-content p {
  font-size: 18px;
  max-width: 380px;
  font-weight: 300;
  color: #000000;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    max-width: 768px;
  }
  
  .hero-section {
    height: 300px;
    max-height: 300px;
  }
  
  .content-section {
    padding: 40px 30px;
  }
  
  .main-content h2 {
    font-size: 2.3rem;
  }
  
  .feature-item {
    gap: 20px;
  }
  
  .feature-icon {
    width: 75px;
    height: 75px;
  }
  
  .feature-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .feature-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {

  

  .content-section {
    padding: 30px 20px;
  }
  
  .main-content h2 {
    font-size: 2.3rem;
    margin-top: 40px;
  }
  
  .description {
    font-size: 16px;
  }

  .product-card{
    height: 300px;
  }
  
  .feature-content h3 {
    font-size: 20px;
  }

  
  .feature-content p {
    font-size: 14px;
  }
}
}
