body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 100vh;
}

header .container {
  margin-top: 10px;
  margin-bottom: 10px;
}

.container {
  max-width: 1300px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.header {
  text-align: center;
  margin-bottom: 60px;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 30px;
  color: #3b82f6;
  font-size: 14px;
  font-weight: 500;
}

.badge::before {
  content: "🔵";
  margin-right: 8px;
}

.main-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 20px;
  line-height: 1.1;
}

.highlight {
  color: #3b82f6;
}

.subtitle {
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.info-card {
  background: white;
  border-radius: 20px;
  padding: 35px;
  margin-top: 60px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: white;
}

.icon-blue {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.icon-green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.icon-purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.card-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 25px;
}

.card-action {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.card-action:hover {
  color: #1d4ed8;
}

.card-action::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.card-action:hover::after {
  transform: translateX(4px);
}

.bottom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 15px;
  color: white;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
}

.service-list {
  list-style: none;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  color: #4b5563;
  font-weight: 500;
  transition: color 0.2s ease;
  cursor: pointer;
}

.service-item:hover {
  color: #3b82f6;
}

.service-item:last-child {
  border-bottom: none;
}

.service-item::after {
  content: "→";
  color: #cbd5e1;
  transition: all 0.2s ease;
}

.service-item:hover::after {
  color: #3b82f6;
  transform: translateX(4px);
}

.highlight-item {
  background: rgba(34, 197, 94, 0.05);
  border-radius: 8px;
  padding: 12px 16px;
  margin: 8px -16px;
  color: #16a34a;
  font-weight: 600;
}

.highlight-item::after {
  color: #16a34a;
}

@media (max-width: 768px) {
  .main-title {
    font-size: 2.5rem;
  }

  .cards-grid,
  .bottom-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-card,
  .service-card {
    padding: 25px;
  }

  body {
    padding: 40px 15px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }
}
