.gsm-tyc-header {
  color: #1a1a1a;
  padding: 1.5rem 0 1.5rem 0;
  text-align: center;
  margin: 0;
}

.gsm-tyc-header h1 {
  font-size: 2rem;
  margin: 0 0 0.5rem 0;
  text-align: center;
  font-weight: 600;
  color: #333333;
}

.gsm-tyc-header p {
  max-width: 800px;
  margin: 0 auto;
  color: #666666;
  font-size: 1.1rem;
  line-height: 1.5;
}

.gsm-tyc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
}

.gsm-tyc-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto 4rem;
  padding: 0 1rem;
  align-items: stretch;
}

@media (max-width: 1000px) {
  .gsm-tyc-grid {
    grid-template-columns: repeat(auto-fill, 300px);
  }
}

.gsm-tyc-card {
  width: 300px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: auto;
  position: relative;
  padding-top: 0.5rem;
  justify-content: space-between;
}

.gsm-tyc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.gsm-tyc-icon {
  color: #404040;
  font-size: 2rem;
  padding: 0 1.5rem 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.gsm-tyc-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.gsm-tyc-content h2 {
  color: #404040;
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
  display: block;
  text-align: left;
  line-height: 1.5;
  padding: 0 0.5rem;
  position: relative;
  min-height: 2.8rem;
}

.gsm-tyc-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  width: 28px;
  height: 28px;
  background-color: #404040;
  color: white;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 600;
  margin-right: 8px;
  flex-shrink: 0;
}

.gsm-tyc-content p {
  color: #666666;
  margin: 0 0 1rem 0;
  line-height: 1.7;
  flex-grow: 1;
  text-align: left;
}

@media (max-width: 768px) {
  .gsm-tyc-header h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .gsm-tyc-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gsm-tyc-header {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }
}