/* Services Page Styles */
.text-gold {
  color: var(--accent-gold);
}

.service-learn-btn {
  padding: 0.8rem 1.5rem;
  align-self: flex-start;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

section {
  padding: 0rem;
}

.services-intro-section {
  background: var(--bg-color);
  text-align: center;
  max-width: 900px;
  margin: 0 auto
}

.services-intro-section h2 {
  font-size: 2.5rem;
  color: var(--text-color);
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.services-intro-section p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Strengths Section */
.strengths-section {
  padding: 5rem 5%;
  background: var(--bg-color);
}

.strengths-header {
  text-align: center;
  margin-bottom: 4rem;
}

.strengths-header h2 {
  font-size: 3rem;
  color: var(--text-color);
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.minimalist-card-img {
  filter: grayscale(2);
}

.minimalist-card:hover .minimalist-card-img {
  filter: grayscale(0);
  transition: filter 0.3s ease-in-out;
}

.strength-card {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.strength-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.strength-card h3 {
  font-size: 1.5rem;
  color: var(--accent-gold, #d4af37);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.strength-card p {
  color: var(--text-muted);
  line-height: 1.6;
}