.specialties-section {
  background: linear-gradient(
    135deg,
    #fff 0%,
    lightgray 100%
  );
  padding: 100px 24px;
}

.specialties-container {
  max-width: 1200px;
  margin: 0 auto;
}

.specialties-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 70px;
}

.specialties-header h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #d4a93a;
  margin-bottom: 14px;
}

.specialties-header p {
  font-size: 1rem;
  color: #d4a93a;
  line-height: 1.6;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.specialty-card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialty-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.specialty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.specialty-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.specialty-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #d4a93a;
  margin-bottom: 10px;
}

.specialty-card p {
  font-size: 0.95rem;
  color: #d4a93a;
  line-height: 1.6;
}

.specialties-cta {
margin-top: 70px;
text-align: center;
}

.cta-button {
display: inline-block;
padding: 18px 42px;
font-size: 1rem;
font-weight: 600;
color: #fff;
background: #d4a93a;
border-radius: 999px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
background: #d4a93a;
}

@media (max-width: 1024px) {
  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .specialties-grid {
    grid-template-columns: 1fr;
  }
}