.wfd {
      --primary: #b62025;
      --secondary: #1f2a44;
      --accent: #f2f4f8;
      --text-dark: #1a1a1a;
      --text-light: #ffffff;
      --border-radius: 14px;

      margin: 0;
      font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      color: var(--text-dark);
      background-color: #ffffff;
      line-height: 1.6;
    }

    .wfd * {
      box-sizing: border-box;
    }

    .wfd .wfd h1, .wfd .wfd h2, .wfd .wfd h3 {
      line-height: 1.2;
      margin-top: 0;
    }

    .wfd a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
    }

    .wfd a:hover {
      text-decoration: underline;
    }

    .wfd-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 3rem 1.5rem;
    }

/*------------- HERO SMALL -------------------------*/
    .wfd-hero-small {
      background-image:
        linear-gradient(rgba(31,42,68,0.7), rgba(31,42,68,0.7)),
		var(--hero-image);
	  background-position: center;
	  background-size: cover;
      background-repeat: no-repeat;
      color: var(--text-light);
      padding: 2rem 1.5rem;
      text-align: center;
    }

    .wfd-hero-small h1 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 1rem;
    }

    .wfd-hero-small p {
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.1rem;
      opacity: 0.95;
    }

/* ----------------- HERO LARGE ----------------- */

.wfd-hero-large {
  position: relative;
  width: 100%;
  max-width: 1200px;
  max-height: 250px;
  min-height: 200px;
  margin: 0 auto 2rem auto;
  aspect-ratio: 16 / 5; /* responsive height */
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  padding: 2rem;
  box-sizing: border-box;
}

/* Dark overlay */
.wfd-hero-large::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* Left Alignment (default) */
.wfd-hero-large.align-left {
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
}

/* Center Alignment */
.wfd-hero-large.align-center {
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Background Image */
.wfd-hero-large-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(85%);
}

/* Background Position Variants */
.wfd-hero-large-image.bg-top {
  object-position: top;
}

.wfd-hero-large-image.bg-center {
  object-position: center;
}

.wfd-hero-large-image.bg-bottom {
  object-position: bottom;
}

/* Content */
.wfd-hero-large-content {
  position: relative;
  z-index: 2;
  color: white !important;
  padding: 0 1.5rem;
  font-family: 'Segoe UI', sans-serif;
  max-width: 70%;
}

.wfd-hero-large-content h1 {
  margin: 0;
  color: white !important;
  font-size: 36px !important;
  line-height: 1.2;
	text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.5);
}

.wfd-hero-large-content p {
  margin-top: 0.75rem;
  color: white!important;
  font-size: 24px!important;
	text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.4),
    0 3px 8px rgba(0, 0, 0, 0.45);
}

.mc-banner img:empty {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .wfd-hero-large {
    padding: 1.75rem;
    min-height: 220px;
  }

  .wfd-hero-large-content {
    max-width: 100%;
  }


/*------------- CARDS -------------*/
    .wfd-card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: -4rem;
    }

    .wfd-card {
      background: #ffffff;
      border-radius: var(--border-radius);
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      padding: 2rem;
      display: flex;
      flex-direction: column;
    }

    .wfd-card h2 {
      color: var(--secondary);
    }

    .wfd-badge {
      align-self: flex-start;
      background: var(--primary);
      color: white;
      padding: 1rem 1.40rem;
      border-radius: 999px;
      font-size: 1.50rem;
      margin-bottom: 1.65rem;
    }

    .wfd-price {
      font-size: 2rem;
      font-weight: bold;
      color: var(--primary);
      margin: 1rem 0;
    }

    .wfd ul {
      padding-left: 1.2rem;
    }

    .wfd ul li {
      margin-bottom: 0.5rem;
    }

    .wfd .wfd-btn {
      margin-top: auto;
      display: inline-block;
      background: var(--primary);
      border: 1px solid var(--primary);
      color: var(--text-light);
      padding: 0.75rem 1.5rem;
      border-radius: 999px;
      text-align: center;
      transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
    }

    .wfd-btn:hover {
      background: #FFFFFF;
      color: var(--primary);
      border: 1px solid var(--primary);
      text-decoration: none;
    }

    /* SCHEDULES */
    .wfd-section-alt {
      background: var(--accent);
    }

    .wfd-table-wrapper {
      overflow-x: auto;
      margin-top: 1.5rem;
    }

    .wfd table {
      width: 100%;
      border-collapse: collapse;
      min-width: 600px;
      background: white;
      border-radius: var(--border-radius);
      overflow: hidden;
    }

    .wfd th, .wfd td {
      padding: 0.75rem 1rem;
      border-bottom: 1px solid #e0e0e0;
      text-align: left;
    }

    .wfd th {
      background: var(--secondary);
      color: white;
    }

    .wfd tr:last-child td {
      border-bottom: none;
    }

    /* ACCORDION (MOBILE FRIENDLY) */
    .wfd details {
      background: white;
      border-radius: var(--border-radius);
      padding: 1rem 1.25rem;
      margin-bottom: 1rem;
      box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    }

    .wfd summary {
      font-weight: 600;
      cursor: pointer;
      color: var(--secondary);
    }

    /* CONTACT */
    .wfd-contact-box {
      background: var(--secondary);
      color: white;
      border-radius: var(--border-radius);
      padding: 2rem;
      text-align: center;
    }

    .wfd-contact-box h3 {
      margin-bottom: 0.5rem;
    }

    @media (max-width: 768px) {
      .wfd table {
        display: none;
      }
    }

    @media (min-width: 769px) {
      .wfd details {
        display: none;
      }
    }