@scope(.recycledyarns){

* {
  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;
}

.hero-section {
  min-height: 90vh;
  background: url('recycledyarns_1.jpg') center/cover;
  display: flex;
  align-items: center;
  padding: 2.5rem 80px;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.text-content {
  color: white;
}

.brand-label {
  color: #0cdbda;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.main-heading {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.description {
  font-size: 1.125rem;
  font-weight:500;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 400px;
}

.features {
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.feature-text h3 {
  color: #00f7f6;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-text p {
  opacity: 0.9;
  max-width: 350px;
  font-weight:300;
}

.cta-button {
  background: #00d5d5;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #22c55e;
  transform: translateY(-2px);
}

.image-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-section{
    padding: 0px 20px;
    background:url('recycled_yarns11.jpg') center / cover;
  }
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .main-heading {
    font-size: 2.5rem;
  }
  
  .hero-section {
    padding: 1rem;
  }
  
  .feature-item {
    justify-content: center;
    text-align: left;
  }
  
  .feature-text {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .main-heading {
    font-size: 2rem;
  }
  
  .description {
    font-size: 1rem;
  }
  
  .feature-text h3 {
    font-size: 1.125rem;
  }
  
  .feature-text p {
    font-size: 0.875rem;
  }
}
}
