.siemens-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px 0 20px;
  text-align: center;
}

.siemens-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #333333;
}

.siemens-content h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 40px 0;
  color: #555555;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin: 2rem 0;
  padding: 1rem 0;
}

.logo-container .partner-logo {
  max-height: 80px;
  max-width: 200px;
  object-fit: contain;
}

.intro-section {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 60px;
  text-align: center;
  color: #333333;
}

.content-section {
  margin-bottom: 50px;
  text-align: left;
}

.content-section h2 {
  font-size: 32px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 20px;
  border-bottom: 2px solid #f28b2a;
  padding-bottom: 10px;
}

.content-section h3 {
  font-size: 22px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 10px;
}

.content-section p {
  font-size: 18px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 15px;
}

.content-section ul {
  list-style-type: none;
  padding-left: 0;
}

.content-section ul li {
  font-size: 18px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.content-section ul li::before {
  content: "✓";
  color: #f28b2a;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 20px;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.capability-card {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.capability-card h3 {
  color: #f28b2a;
  margin-top: 0;
}

.results-section {
  background: linear-gradient(135deg, #f28b2a22, #f28b2a11);
  border: 1px solid #f28b2a44;
  border-radius: 8px;
  padding: 40px;
  margin: 60px 0;
  text-align: center;
}

.results-section h2 {
  font-size: 32px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 20px;
  border: none;
  padding: 0;
}

.results-highlight {
  font-size: 24px;
  font-weight: 600;
  color: #f28b2a;
  margin-bottom: 20px;
}

.cta-section {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 60px 0;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #00b0b9;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #008a91;
  transform: translateY(-2px);
  text-decoration: none;
}

@media (max-width: 768px) {
  .siemens-content h1 {
    font-size: 36px;
  }

  .siemens-content h2 {
    font-size: 20px;
  }

  .content-section h2 {
    font-size: 28px;
  }

  .content-section h3 {
    font-size: 20px;
  }

  .content-section p,
  .content-section ul li {
    font-size: 16px;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .results-highlight {
    font-size: 20px;
  }

  .cta-section {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}