.u-section-1 .u-sheet-1 {
  min-height: 400px;
}

.u-section-1 .u-custom-html-1 {
  margin-bottom: 60px;
}* {
                  margin: 0;
                  padding: 0;
                  box-sizing: border-box;
            }
            body {
                  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
                  line-height: 1.6;
                  color: #232f3e;
                  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            }
            .container {
                  max-width: 1200px;
                  margin: 0 auto;
                  padding: 0 20px;
            }
            .hero {
                  padding: 100px 0;
                  text-align: center;
                  color: white;
            }
            .hero h1 {
                  font-size: 56px;
                  margin-bottom: 20px;
                  animation: fadeInUp 0.8s ease;
            }
            .hero p {
                  font-size: 24px;
                  margin-bottom: 40px;
                  opacity: 0.95;
                  animation: fadeInUp 0.8s ease 0.2s backwards;
            }
            .cta-button {
                  display: inline-block;
                  padding: 15px 40px;
                  background: #ff9900;
                  color: white;
                  text-decoration: none;
                  border-radius: 30px;
                  font-weight: bold;
                  font-size: 18px;
                  transition: all 0.3s;
                  animation: fadeInUp 0.8s ease 0.4s backwards;
                  box-shadow: 0 10px 30px rgba(255, 153, 0, 0.3);
            }
            .cta-button:hover {
                  transform: translateY(-3px);
                  box-shadow: 0 15px 40px rgba(255, 153, 0, 0.4);
            }
            .capabilities {
                  background: white;
                  padding: 80px 0;
            }
            .company-capabilities {
                  background: #f6f8ff;
                  padding: 80px 0;
            }
            .section-title {
                  text-align: center;
                  font-size: 42px;
                  margin-bottom: 60px;
                  color: #232f3e;
                  font-family: "Roboto Condensed" !important;
            }
            .section-lede {
                  max-width: 720px;
                  margin: 0 auto 50px;
                  text-align: center;
                  color: #4a5568;
                  font-size: 18px;
                  line-height: 1.7;
            }
            .company-grid {
                  display: grid;
                  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
                  justify-content: center;
                  gap: 30px;
            }
            .feature-section {
                  background: #f4f6fb;
                  padding: 80px 0;
            }
            .feature-content {
                  max-width: 1000px;
                  margin: 0 auto;
                  background: white;
                  border-radius: 14px;
                  padding: 36px;
                  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
                  border: 1px solid #e5e7eb;
            }
            .feature-title {
                  font-size: 32px;
                  margin-bottom: 16px;
                  color: #232f3e;
                  font-family: "Roboto Condensed" !important;
            }
            .feature-subtitle {
                  font-size: 18px;
                  color: #4b5563;
                  line-height: 1.7;
                  margin-bottom: 22px;
            }
            .feature-list {
                  list-style: none;
                  padding-left: 0;
                  display: grid;
                  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                  gap: 14px 24px;
                  color: #374151;
                  line-height: 1.7;
            }
            .feature-list li::before {
                  content: "•";
                  color: #ff9900;
                  margin-right: 10px;
            }
            .company-card {
                  background: white;
                  border-radius: 12px;
                  padding: 28px;
                  border: 1px solid #e5e7eb;
                  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
                  position: relative;
                  overflow: hidden;
                  transition: transform 0.3s, box-shadow 0.3s;
            }
            .company-card::before {
                  content: "";
                  position: absolute;
                  top: 0;
                  left: 0;
                  width: 100%;
                  height: 6px;
                  background: linear-gradient(90deg, #00c4cc 0%, #667eea 50%, #ff9900 100%);
            }
            .company-card:hover {
                  transform: translateY(-6px);
                  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
            }
            .company-icon {
                  width: 42px;
                  height: 42px;
                  border-radius: 50%;
                  background: #f0f5ff;
                  display: inline-flex;
                  align-items: center;
                  justify-content: center;
                  font-size: 20px;
                  color: #667eea;
                  margin-bottom: 16px;
            }
            .company-card h3 {
                  font-size: 22px;
                  margin-bottom: 10px;
                  color: #1f2937;
            }
            .company-card p {
                  color: #4b5563;
                  line-height: 1.7;
            }
            .capability-grid {
                  display: grid;
                  grid-template-columns: repeat(auto-fit, minmax(300px, 340px));
                  justify-content: center;
                  gap: 40px;
                  margin-bottom: 60px;
            }
            .capability-card {
                  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                  padding: 40px;
                  border-radius: 15px;
                  color: white;
                  transition: transform 0.3s, box-shadow 0.3s;
                  cursor: pointer;
                  margin: 0 auto;
            }
            .capability-card:hover {
                  transform: translateY(-10px);
                  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            }
            .capability-icon {
                  font-size: 48px;
                  margin-bottom: 20px;
            }
            .capability-card h3 {
                  font-size: 24px;
                  margin-bottom: 15px;
            }
            .capability-card p {
                  opacity: 0.9;
                  line-height: 1.7;
            }
            .services {
                  background: #f8f9fa;
                  padding: 80px 0;
            }
            .service-list {
                  display: grid;
                  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                  gap: 30px;
            }
            .service-item {
                  background: white;
                  padding: 30px;
                  border-radius: 10px;
                  border-left: 4px solid #ff9900;
                  transition: all 0.3s;
            }
            .service-item:hover {
                  transform: translateX(10px);
                  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }
            .service-item h4 {
                  color: #232f3e;
                  margin-bottom: 10px;
                  font-size: 20px;
            }
            .stats {
                  background: linear-gradient(135deg, #232f3e 0%, #3a4d66 100%);
                  padding: 80px 0;
                  color: white;
            }
            .stats-grid {
                  display: grid;
                  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                  gap: 40px;
                  text-align: center;
            }
            .stat-item h3 {
                  font-size: 48px;
                  color: #ff9900;
                  margin-bottom: 10px;
            }
            .stat-item p {
                  font-size: 18px;
                  opacity: 0.9;
            }
            footer {
                  background: #232f3e;
                  color: white;
                  padding: 40px 0;
                  text-align: center;
            }
            @keyframes fadeInUp {
                  from {
                        opacity: 0;
                        transform: translateY(30px);
                  }
                  to {
                        opacity: 1;
                        transform: translateY(0);
                  }
            }
            @media (max-width: 768px) {
                  .hero h1 {
                        font-size: 36px;
                  }
                  .hero p {
                        font-size: 18px;
                  }
                  nav {
                        display: none;
                  }
            }