body {
  background: #f4f6fb;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container {
  margin-top: 48px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 40px 32px 32px 32px;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
h2 {
  font-weight: 600;
  color: #1a237e;
  margin-bottom: 4px;
  letter-spacing: -1px;
}
.subtitle {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 32px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
.features-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
  margin-top: 20px;
}
.feature-card {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: #1976d2;
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.15);
  transform: translateY(-2px);
}
.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a237e;
}
.feature-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.cta-section {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e9ecef;
}
.cta-button {
  background: linear-gradient(90deg, #1976d2 60%, #42a5f5 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
  transition: background 0.2s, box-shadow 0.2s;
}
.cta-button:hover {
  background: linear-gradient(90deg, #1565c0 60%, #1976d2 100%);
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.13);
}
@media (max-width: 600px) {
  .container {
    padding: 18px 4vw 18px 4vw;
    max-width: 98vw;
  }
  .features-section {
    grid-template-columns: 1fr;
  }
}
.hero-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 20px;
  margin-bottom: 40px;
}
.tech-logos-section {
  margin-top: 40px;
  padding: 32px;
  background: #f8f9fa;
  border-radius: 16px;
  text-align: center;
}
.tech-logos-section h3 {
  color: #1a237e;
  margin-bottom: 16px;
  font-size: 1.3rem;
  font-weight: 600;
}
.tech-logos-section p {
  color: #666;
  margin-bottom: 32px;
  font-size: 1rem;
}
.tech-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.tech-logo {
  text-align: center;
  transition: transform 0.2s ease;
}
.tech-logo:hover {
  transform: translateY(-2px);
}
.tech-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 8px;
  border-radius: 8px;
  background: white;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}
.tech-logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
/* Fallback for broken images */
.tech-logo img:not([src]), 
.tech-logo img[src=""],
.tech-logo img[src*="broken"] {
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
}
.tech-logo img:not([src])::after, 
.tech-logo img[src=""]::after,
.tech-logo img[src*="broken"]::after {
  content: attr(alt);
  color: white;
  font-weight: bold;
  font-size: 18px;
}
.tech-logo span {
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
}
@media (max-width: 768px) {
  .tech-logos {
    gap: 20px;
  }
  .tech-logo img {
    width: 50px;
    height: 50px;
  }
  .tech-logo span {
    font-size: 0.8rem;
  }
}
