.solutions-section {
  background: 
    radial-gradient(circle at 10% 50%, rgba(100, 149, 237, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 30% 60%, rgba(147, 197, 253, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 60% 55%, rgba(186, 230, 253, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(125, 211, 252, 0.1) 0%, transparent 40%);

  padding: 4rem 4rem;
position: relative;
overflow: hidden;
margin: 0 auto;
max-width: 670px;
background-color: white;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.footer-content {
text-align: left;
} 

.solutions-intro {
margin-bottom: 1rem;
max-width: 800px;
}

.solutions-intro p {
font-size: 1.125rem;
line-height: 1.8;
color: var(--text-secondary);
}

.solutions-section h2 {
font-size: 2.5rem;
color: var(--text-primary);
margin-bottom: 2rem;
font-weight: 800;
}

.video-container {
width: 100%;
margin: 3rem 0;
position: relative;
overflow: hidden;
border-radius: 8px;
}

.video-container video {
width: 100%;
height: auto;
display: block;
}

@media (max-width: 768px) {
.solutions-section {
  padding: 2rem 1rem;
  margin: 0 1rem;
  border-radius: 8px;
}

.solutions-intro p {
  font-size: 1rem;
}

.solutions-section h2 {
  font-size: 2rem;
}

.video-container {
  margin: 2rem 0;
}
}

.solutions-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-section {
  text-align: center;
  margin-bottom: 4rem;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.hero-section .tagline {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #34495e;
}

.taglineNew {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 1.5rem;
  background: linear-gradient(to right, rgba(52, 152, 219, 0.05), rgba(46, 204, 113, 0.05));
  border-left: 4px solid #3498db;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hero-section .intro {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.content-block {
  margin-bottom: 3rem;
}

.content-block h2 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.benefits-list, .feature-list, .compliance-list, .deployment-list {
  list-style: none;
  padding: 0;
}

.benefits-list li, .feature-list li, .compliance-list li, .deployment-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.benefits-list li:before, .feature-list li:before, .compliance-list li:before, .deployment-list li:before {
  content: "•";
  color: #3498db;
  position: absolute;
  left: 0;
}

.table-container {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

th, td {
  padding: 1rem;
  text-align: left;
  border: 1px solid #e0e0e0;
}

th {
  background: #f8f9fa;
  font-weight: 600;
}

.cta-section {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.brand-highlight {
  color: #2c3e50;
  font-weight: 700;
}
.hero-section h1 {
  color: #2c3e50; /* Dark blue-gray */
}

.tagline {
  color: #34495e; /* Slightly lighter blue-gray */
}

.intro {
  color: #576574; /* Medium gray with slight blue tint */
}

.content-block h2 {
  color: #2c3e50; /* Dark blue-gray */
}

.benefits-list li, .feature-list li, .compliance-list li, .deployment-list li {
  color: #576574; /* Medium gray with slight blue tint */
}

.benefits-list strong, .feature-list strong, .compliance-list strong, .deployment-list strong {
  color: #34495e; /* Slightly lighter blue-gray */
}

table th {
  color: #2c3e50; /* Dark blue-gray */
}

table td {
  color: #576574; /* Medium gray with slight blue tint */
}

.cta-section {
  color: #2c3e50; /* Dark blue-gray */
}

.brand-highlight {
  color: #3498db; /* Bright blue for emphasis */
}

@media (max-width: 768px) {
  .solutions-section {
    padding: 1rem;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section .tagline {
    font-size: 1.1rem;
  }
  
  .content-block h2 {
    font-size: 1.5rem;
  }
}

.roadmap-note {
  font-size: 0.9rem;
  color: #718096;
  font-style: italic;
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  position: relative;
  padding-left: 2.5rem;
}

.roadmap-note::before {
  content: "ℹ";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #3498db;
  font-style: normal;
  font-size: 1.1rem;
}