

@scope(.clientrelationships){

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

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

.container {
  display: flex;
  max-width: 1280px;
  padding: 0 0px;
  margin: 0 auto;
  /* min-height: 100vh; */
  padding-top: 80px;
  background-color: white;
}

.image-section {
  flex: 1;
  padding: 0px 40px;
  padding-left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-image {
  width: 100%;
  height: 500px;
  background: url('AdobeStock_175862697.jpeg');
  background-size: cover;
  /* border-radius: 4px; */
}

.content-section {
  flex: 1;
  padding: 0px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1 {
  font-size: 3rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.2;
}

.intro-text {
  font-size: 1.25rem;
  max-width: 500px;
  color: #666;
  font-style: italic;
  margin-bottom: 40px;
  line-height: 1.5;
}

.content-item {
  margin-bottom: 35px;
  max-width: 400px;
}

.content-item h3 {
  font-size: 1.2rem;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 12px;
}

.content-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 0 20px ;
  }
  
  .image-section {
    padding: 30px 20px;
  }
  
  .placeholder-image {
    height: 250px;
  }
  
  .content-section {
    padding: 30px 20px;
  }
  
  h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .intro-text {
    font-size: 1rem;
  }
  
  .content-item h3 {
    font-size: 1.1rem;
  }

  .image-section{
    padding: 40px 0px;
    padding-bottom: 15px;
  }
  
  .content-item p {
    font-size: 0.95rem;
  }
}
}


