/* why section and footer */
.why-section {
  background: #65473B;
  padding: 4rem 1rem;
  text-align: center;
  color: white;
}

.why-section h2 {
  color: #fff;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.feature:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
}
.feature img {
  filter: brightness(0) invert(1);
  width: 50px;
  margin-bottom: 1rem;
}
.feature strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-footer {
  padding: 3rem 1rem 2rem;
  text-align: center;
}
.footer-header h2 {
  color: var(--primary-dark);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.footer-header p {
  color: #777;
  margin-bottom: 2.5rem;
}
.footer-contacts ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  list-style: none;
}
.footer-contacts a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}
.footer-contacts a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(28%) sepia(11%) saturate(1500%) hue-rotate(330deg);
}