@scope(.sectiondescription){

* {
  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-color: #f8f8f8;
}

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

.hero-section {
  margin-bottom: 80px;
  max-width: 900px;
}

.main-heading {
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.hero-description {
  font-size: 1.75rem;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #000;
  font-weight: 400;
  max-width: 1050px;
}

.secondary-description {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #666;
  max-width: 800px;
}

.features-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.logo-circle {
  width: 135px;
  height: 135px;
  background-color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.feature-content {
  flex: 1;
  padding-top: 10px;
}

.feature-title {
  font-size: 1.5rem;
  font-family: 'neue-haas-grotesk-text';
  margin-bottom: 15px;
  color: #1a1a1a;
  font-weight: 500;
  line-height: 1.3;
}

.feature-description {
  font-size: 1.25rem;
  line-height: 1.45;
  color: #666;
  max-width: 400px;
}

@media (max-width: 768px) {
  .container {
    padding: 40px 20px;
  }

  .secondary-description{
    font-size: 1rem;
  }

  .feature-description{
    font-size: 1 rem;
  }
  
  .main-heading {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .feature-item {
    gap: 20px;
  }
  
  .logo-circle {
    width: 100px;
    height: 100px;
  }
  
  .logo-text {
    font-size: 1rem;
  }
  
  .feature-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .main-heading {
    font-size: 2rem;
  }
  
  .feature-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }
  
  .feature-content {
    padding-top: 0;
  }
}
</style>
}
