.remote-support-page {
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
  background-image: url('/public/assets/static/bg-sit-back-relax.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;
  position: relative; /* ensure overlay anchors to this section */
  z-index: 0;
}
.remote-support-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(255 255 255 / 30%);
  z-index: -1;
}

.remote-hero {
  text-align: center;
  max-width: 70%;
  margin: 0 auto;
  margin-bottom: 40px;
  padding-top: 20px;
}
.remote-hero h1 {
  font-size: 32px;
  color: #1a72ad;
  margin-bottom: 10px;
}
.remote-hero p {
  font-size: 18px;
  color: #555;
}

.subscription-plans .plans-container {
  max-width: 70%;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 0;
}

.subscription-card {
  flex: 1 1 280px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}
.subscription-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.subscription-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #1a72ad;
}
.subscription-card .duration {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}
.subscription-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
}
.subscription-card .price {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}

/* extra details sections */
.subscription-card .sessions { font-size: 14px; color:#666; margin: 6px 0 10px; }
.subscription-card .plan-notes { margin: 10px auto 16px; padding-left: 18px; text-align:left; max-width: 90%; color:#444; }
.subscription-card .plan-notes li { margin: 4px 0; font-size: 13px; }
.subscription-card .plan-section { text-align:left; margin-top: 16px; }
.subscription-card .plan-section h4 { font-size: 15px; color:#1a72ad; margin: 10px 0 6px; }
.subscription-card .plan-section ul { padding-left: 18px; margin: 0; }
.subscription-card .plan-section li { margin: 6px 0; font-size: 14px; color:#444; line-height: 1.35; }
.subscription-card .appointment-note { margin-top: 12px; font-size: 13px; color:#555; font-style: italic; }

/* button */
.subscription-card button {
  background-color: #1a72ad;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.subscription-card button:hover {
  background-color: #145c8a;
}

/* Pitch Card Styles */
.pitch-card {
  max-width: 70%;
  margin: 0 auto;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px 20px;
  margin-bottom: 40px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.pitch-card h2 {
  font-size: 24px;
  color: #1a72ad;
  margin-bottom: 10px;
}
.pitch-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}
.pitch-card ul {
  list-style: disc;
  padding-left: 20px;
  text-align: left;
}
.pitch-card ul li {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}