@scope(.sectionwiththefeatures){

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

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

.container {

      background-color: #23304f;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 0px;
}

.hero-section {
  text-align: left;
  margin-bottom: 120px;
}

.hero-title {
  font-size: 3.75rem;
  max-width: 1100px;
  font-weight: 300;
  margin-bottom: 40px;
  /* letter-spacing: -0.02em; */
  color:white;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  color:white;
  font-weight: 300;
  font-style: italic;
  max-width: 800px;
  margin: 0;
  opacity: 0.9;
  line-height: 1.5;
}

.features-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 80px;
  align-items: start;
}

.feature-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.icon-container {
  margin-bottom: 40px;
  align-self: flex-start;
}

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

.feature-title {
  font-size: 1.5rem;
  color:white;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.3;
  max-width: 280px;
  text-align: left;
}

.feature-description {
  color:white;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 32px;
  opacity: 0.85;
  line-height: 1.6;
  max-width: 300px;
  text-align: left;
}

.feature-link {
  color: white;
  text-decoration: underline;
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.feature-link:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .container {
    padding: 60px 20px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .features-section {
    gap: 60px;
    grid-template-columns: 1fr;
  }
  
  .feature-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
}
}
