/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 02 2026 | 16:29:29 */
.cf7-path-selector {
  padding: 64px 20px;
  background: #f7f7f4;
}

.cf7-path-selector__inner {
  max-width: 960px;
  margin: 0 auto;
}

.cf7-path-selector__eyebrow {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b6b5f;
}

.cf7-path-selector__title {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  color: #1f1f1b;
}

.cf7-path-selector__text {
  max-width: 620px;
  margin: 20px 0 36px;
  font-size: 18px;
  line-height: 1.5;
  color: #4f4f46;
}

.cf7-path-selector__grid {
  display: grid;
  gap: 16px;
}

.cf7-path-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  border-radius: 18px;
  background: #ffffff;
  color: #1f1f1b;
  text-decoration: none;
  border: 1px solid rgba(31, 31, 27, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cf7-path-card:hover,
.cf7-path-card:focus {
  transform: translateY(-2px);
  border-color: rgba(31, 31, 27, 0.24);
  box-shadow: 0 14px 34px rgba(31, 31, 27, 0.08);
}

.cf7-path-card__number {
  font-size: 14px;
  font-weight: 700;
  color: #8a8a7a;
}

.cf7-path-card__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.cf7-path-card__arrow {
  font-size: 24px;
  line-height: 1;
}

.cf7-path-card--secondary {
  background: transparent;
}

@media (max-width: 640px) {
  .cf7-path-selector {
    padding: 48px 16px;
  }

  .cf7-path-card {
    grid-template-columns: 1fr auto;
    gap: 10px 16px;
    padding: 20px;
  }

  .cf7-path-card__number {
    grid-column: 1 / -1;
  }

  .cf7-path-card__title {
    font-size: 18px;
  }
}