@scope(.applications){


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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
}

/* App Container */
.app {
  /* max-width: 1200px; */
  margin: 0 auto;
  /* padding: 0 20px; */
  background-color: white;
  min-height: 100vh;
}

/* Header Styles */
.header {
  padding: 60px 0 40px 0px;
  max-width: 1200px;
  margin: auto;
}

.header-title {
  font-size: 3.75rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 32px;
  line-height: 1.2;
}

.header-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
}

/* Tab Navigation Styles */
.tab-navigation {
  /* border-bottom: 2px solid #000; */
  margin: auto;
  max-width: 1200px;
  padding-left: 0px;
  margin-bottom: 20px;
}

.tab-list {
  display: flex;
  gap: 0;
}

.tab {
  background: none;
  border: 1px solid #ccc;
  border-radius: 40px;
  /* border-bottom: none; */
  margin-right: 16px;
  padding: 20px 40px;
  font-size: 16px;
  cursor: pointer;
  color: #666;
  transition: all 0.2s ease;
  min-width: 160px;
}

.tab:first-child {
  border-left: 1px solid #ccc;
}

.tab:hover {
  background-color: #f5f5f5;
}

.tab-active {
  background-color: #000;
  color: white;
  border-color: #000;
}

.tab-active:hover {
  background-color: #000;
}

/* Content Section Styles */
.content-section {
  padding: 40px 0;
  background-color: #ffffff;
  /* padding-bottom: 120px; */
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  /* align-items: center; */
  max-width: 1200px;
  margin: auto;
}

.content-text {
  /* max-width: 400px; */
  padding-top: 12px;
  /* margin-left: 80px; */
}

.content-title {
  font-size: 40px;
  font-weight: 300;
  color: #000000;
  margin-bottom: 24px;
  line-height: 1.2;
}

.content-description {
  font-size: 16px;
 white-space:pre-wrap;
  max-width: 400px;
  color: #000000;
  line-height: 1.7;
}

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

.image-placeholder {
  width: 100%;
  height: 400px;
  background-color: #888;
  border-radius: 4px;
  /* margin-right: 80px; */
}


.tab-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
  transition: opacity 0.3s ease-in-out;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .app {
    max-width: 768px;
    padding: 15px 16px;
  }
  
  .header {
    padding: 40px 0 60px 0;
  }
  
  .header-title {
    font-size: 32px;
    margin-bottom: 24px;
  }
  
  .header-description {
    font-size: 14px;
  }
  
  .tab-navigation {
    margin-bottom: 40px;
  }
  
  .tab-list {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .tab {
    padding: 12px 20px;
    font-size: 14px;
    min-width: 120px;
    flex: 1;
    margin-right:0px;
  }
  
  .content-section {
    padding-bottom: 60px;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .content-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .content-description {
    font-size: 14px;
  }
  
  .image-placeholder {
    height: 240px;
  }
}
}
