/* Local layout styles for the Healthcare subpage */

.healthcare-page-content {
  --color-primary: #5F3C5F;      /* Deep Purple */
  --color-primary-hover: #4E304E; /* Darker Purple */
  --color-primary-dark: #3D243D;  /* Deep Purple-Black */
}

/* BREADCRUMBS */
.breadcrumbs-section {
  background-color: #FFFFFF;
  padding: 24px 24px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.breadcrumbs-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
}

.breadcrumb-item {
  color: #4a7ab5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item:hover:not(.active) {
  color: #2b6cb0;
}

.breadcrumb-separator {
  color: #7A4F7A;
  user-select: none;
  font-size: 13.5px;
  margin: 0 4px;
}

.breadcrumb-item.active {
  color: #7A4F7A;
  font-weight: 600;
  pointer-events: none;
}

/* HERO SECTION */
.healthcare-hero-section {
  position: relative;
  width: 100%;
  min-height: 520px;
  padding: 100px 24px;
  background-image: url('assets/photo-1531297484001-80022131f5a1-1.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.healthcare-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(95, 60, 95, 0.88); /* Muted purple overlay to match screenshot background */
  z-index: 1;
}

.healthcare-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.healthcare-hero-badge-wrapper {
  margin-bottom: 24px;
}

.healthcare-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 6px 16px;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.badge-bolt {
  color: #FBBF24;
}

.healthcare-hero-title {
  font-family: 'Kalam', cursive;
  font-size: 3.2rem;
  line-height: 1.25;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.healthcare-hero-subtitle {
  font-family: 'Kalam', cursive;
  font-size: 1.65rem;
  line-height: 1.4;
  color: #FFFFFF;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 24px;
  max-width: 840px;
}

.healthcare-hero-description {
  font-family: 'Kalam', cursive;
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  max-width: 760px;
  margin-bottom: 36px;
}

.healthcare-hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.healthcare-btn-primary {
  font-family: 'Kalam', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  background-color: #FFFFFF;
  color: var(--color-primary);
  padding: 12px 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  border: 1px solid #FFFFFF;
  cursor: pointer;
  text-decoration: none;
}

.healthcare-btn-primary:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.healthcare-btn-secondary {
  font-family: 'Kalam', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  background-color: transparent;
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  text-decoration: none;
}

.healthcare-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .healthcare-hero-section {
    padding: 70px 16px;
    min-height: auto;
  }
  
  .healthcare-hero-title {
    font-size: 2.3rem;
  }
  
  .healthcare-hero-description {
    font-size: 1.05rem;
    margin-bottom: 28px;
  }
  
  .healthcare-hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .healthcare-btn-primary, .healthcare-btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
  
  .breadcrumbs-section {
    padding: 16px 16px;
  }
  
  .breadcrumbs {
    font-size: 13.5px;
  }
}

/* INTRO SECTION */
.healthcare-intro-section {
  background-color: #FFFFFF;
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.healthcare-intro-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.healthcare-intro-p {
  font-family: 'Kalam', cursive;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #556070;
  max-width: 980px;
  margin-top: 0;
  margin-bottom: 30px;
  text-align: center;
  font-style: italic;
}

.healthcare-intro-p:last-of-type {
  margin-bottom: 50px;
}

.healthcare-intro-grid-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  background-color: #F8FAFC;
  border: 1px solid rgba(95, 60, 95, 0.08);
  border-radius: 12px;
  padding: 40px 30px;
  box-sizing: border-box;
  box-shadow: 0 4px 25px rgba(95, 60, 95, 0.02);
  margin-top: 15px;
}

.healthcare-intro-grid-col {
  font-family: 'Kalam', cursive;
  font-size: 0.96rem;
  line-height: 1.6;
  color: #556070;
  text-align: center;
  font-style: italic;
}

/* RESPONSIVE DESIGN FOR INTRO */
@media (max-width: 1024px) {
  .healthcare-intro-grid-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 35px 25px;
  }
}

@media (max-width: 768px) {
  .healthcare-intro-section {
    padding: 70px 16px;
  }
  
  .healthcare-intro-p {
    font-size: 1.06rem;
    margin-bottom: 24px;
    line-height: 1.7;
  }
  
  .healthcare-intro-p:last-of-type {
    margin-bottom: 35px;
  }
  
  .healthcare-intro-grid-box {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 20px;
  }
}

/* SECTION TITLE */
.healthcare-section-title {
  font-family: 'Kalam', cursive;
  font-size: 2.3rem;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  text-align: center;
}

/* KEY FEATURES SECTION */
.healthcare-features-section {
  background-color: #FAF9FB; /* Soft background to alternate sections */
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.healthcare-features-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.healthcare-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.healthcare-feature-card {
  background: #FFFFFF;
  border: 1px solid rgba(95, 60, 95, 0.12);
  border-radius: 12px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 calc(33.333% - 24px); /* Three columns */
  min-width: 280px;
  max-width: 380px;
  box-shadow: 0 4px 15px rgba(95, 60, 95, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
}

.healthcare-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(95, 60, 95, 0.1);
  border-color: rgba(95, 60, 95, 0.3);
}

.healthcare-card-icon-circle {
  width: 54px;
  height: 54px;
  background-color: rgba(95, 60, 95, 0.08); /* Soft purple background tint */
  color: var(--color-primary);
  border-radius: 12px; /* Rounded box layout as in screenshot */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.healthcare-feature-card:hover .healthcare-card-icon-circle {
  background-color: var(--color-primary);
  color: #FFFFFF;
}

.healthcare-card-title {
  font-family: 'Kalam', cursive;
  font-size: 1.35rem;
  color: #1F2937;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.3;
}

.healthcare-card-text {
  font-family: 'Kalam', cursive; /* Using Kalam for descriptions as explicitly requested */
  font-size: 1.05rem;
  line-height: 1.6;
  color: #556070;
  margin: 0;
  font-style: italic;
}

/* RESPONSIVE DESIGN FOR FEATURES */
@media (max-width: 1024px) {
  .healthcare-feature-card {
    flex: 1 1 calc(50% - 20px); /* Two columns on tablets */
    max-width: 48%;
  }
}

@media (max-width: 768px) {
  .healthcare-features-section {
    padding: 70px 16px;
  }
  
  .healthcare-feature-card {
    flex: 1 1 100%; /* Single column on mobile */
    max-width: 100%;
    padding: 30px 20px;
  }
}

/* WHY ODOO SECTION */
.healthcare-why-section {
  background-color: #FFFFFF; /* White background to alternate */
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.healthcare-why-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.healthcare-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.healthcare-why-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.healthcare-why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.healthcare-why-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.healthcare-why-item i {
  color: var(--color-primary);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.healthcare-why-item p {
  font-family: 'Kalam', cursive; /* Using Kalam font for list description as requested */
  font-size: 1.08rem;
  line-height: 1.6;
  color: #556070;
  margin: 0;
  font-style: italic;
}

.healthcare-why-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.healthcare-why-image {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.healthcare-why-image:hover {
  transform: scale(1.02);
}

/* HOW ODOOVIZION HELPS SECTION */
.healthcare-helps-section {
  background-color: #FAF9FB; /* Soft background to alternate sections */
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.healthcare-helps-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.healthcare-helps-subtitle {
  font-family: 'Kalam', cursive; /* Using Kalam for descriptions as requested */
  font-size: 1.15rem;
  line-height: 1.7;
  color: #556070;
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
  font-style: italic;
}

.healthcare-helps-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.healthcare-help-card {
  background: #FFFFFF;
  border: 1px solid rgba(95, 60, 95, 0.12);
  border-radius: 12px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 calc(33.333% - 24px); /* Three columns */
  min-width: 280px;
  max-width: 380px;
  box-shadow: 0 4px 15px rgba(95, 60, 95, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
}

.healthcare-help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(95, 60, 95, 0.1);
  border-color: rgba(95, 60, 95, 0.3);
}

.healthcare-help-card-title {
  font-family: 'Kalam', cursive;
  font-size: 1.3rem;
  color: #1F2937;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.3;
}

.healthcare-help-card-text {
  font-family: 'Kalam', cursive; /* Using Kalam font for card descriptions as requested */
  font-size: 1.05rem;
  line-height: 1.6;
  color: #556070;
  margin: 0;
  font-style: italic;
}

/* RESPONSIVE DESIGN FOR NEW SECTIONS */
@media (max-width: 1024px) {
  .healthcare-why-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .healthcare-why-content {
    align-items: center;
    text-align: center;
  }
  
  .healthcare-why-content .healthcare-section-title {
    text-align: center;
  }
  
  .healthcare-help-card {
    flex: 1 1 calc(50% - 20px); /* Two columns on tablets */
    max-width: 48%;
  }
}

@media (max-width: 768px) {
  .healthcare-why-section, .healthcare-helps-section {
    padding: 70px 16px;
  }
  
  .healthcare-helps-subtitle {
    font-size: 1.08rem;
    margin-bottom: 35px;
  }
  
  .healthcare-help-card {
    flex: 1 1 100%; /* Single column on mobile */
    max-width: 100%;
    padding: 30px 20px;
  }
}

/* TESTIMONIALS SLIDER SECTION */
.healthcare-testimonials-section {
  background-color: #FFFFFF; /* White background to alternate sections */
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.healthcare-testimonials-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.healthcare-slider-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.healthcare-testimonials-viewport {
  width: calc(100% - 120px);
  overflow: hidden;
}

.healthcare-testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.healthcare-testimonial-card {
  background: #FFFFFF;
  border: 1px solid rgba(95, 60, 95, 0.12);
  border-radius: 12px;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  flex: 0 0 calc(33.333% - 20px); /* Exactly 3 cards visible on desktop */
  box-shadow: 0 4px 15px rgba(95, 60, 95, 0.03);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  min-height: 250px;
}

.healthcare-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(95, 60, 95, 0.10);
  border-color: rgba(95, 60, 95, 0.3);
}

.healthcare-testimonial-text {
  font-family: 'Kalam', cursive; /* Using Kalam as requested */
  font-size: 1.05rem;
  line-height: 1.6;
  color: #556070;
  margin-top: 0;
  margin-bottom: 24px;
  font-style: italic;
}

.healthcare-testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.healthcare-testimonial-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary); /* Deep Purple */
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Kalam', cursive;
  font-size: 20px;
  font-weight: 700;
  user-select: none;
}

.healthcare-testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.healthcare-testimonial-name {
  font-family: 'Kalam', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 4px 0;
}

.healthcare-testimonial-stars {
  color: #F5A623; /* Gold stars */
  font-size: 12px;
  margin-bottom: 4px;
  display: flex;
  gap: 2px;
}

.healthcare-testimonial-location {
  font-family: 'Kalam', cursive;
  font-size: 0.88rem;
  color: #7A8D9F;
  font-style: italic;
}

.healthcare-slider-arrow {
  width: 44px;
  height: 44px;
  background-color: var(--color-primary);
  border: none;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(95, 60, 95, 0.15);
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.healthcare-slider-arrow:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-50%) scale(1.08);
}

.prev-arrow {
  left: 0;
}

.next-arrow {
  right: 0;
}

@media (max-width: 1024px) {
  .healthcare-testimonial-card {
    flex: 0 0 calc(50% - 15px); /* Two columns on tablets */
  }
  .healthcare-testimonials-viewport {
    width: calc(100% - 100px);
  }
}

@media (max-width: 768px) {
  .healthcare-testimonials-section {
    padding: 70px 16px;
  }
  
  .healthcare-slider-wrapper {
    margin-top: 25px;
  }
  
  .healthcare-testimonials-viewport {
    width: 100%;
  }
  
  .healthcare-testimonial-card {
    flex: 0 0 100%; /* Single column on mobile */
    padding: 24px 20px;
    min-height: auto;
  }
  
  .healthcare-slider-arrow {
    display: none;
  }
}

/* FREQUENTLY ASKED QUESTIONS SECTION */
.healthcare-faq-section {
  background-color: #FFFFFF;
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.healthcare-faq-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.healthcare-faq-header {
  text-align: center;
  margin-bottom: 55px;
}

.healthcare-faq-title {
  font-family: 'Kalam', cursive;
  font-size: 2.3rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
}

.healthcare-faq-list {
  display: flex;
  flex-direction: column;
}

.healthcare-faq-item {
  border-bottom: 1.5px solid rgba(95, 60, 95, 0.08);
}

.healthcare-faq-item:first-child {
  border-top: 1.5px solid rgba(95, 60, 95, 0.08);
}

.healthcare-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.healthcare-faq-question-text {
  font-family: 'Kalam', cursive;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  transition: color 0.25s ease;
}

.healthcare-faq-chevron {
  font-size: 14px;
  color: var(--color-primary);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.25s ease;
  margin-left: 20px;
  flex-shrink: 0;
}

.healthcare-faq-question:hover .healthcare-faq-question-text {
  color: var(--color-primary-hover);
}

.healthcare-faq-question:hover .healthcare-faq-chevron {
  color: var(--color-primary-hover);
}

.healthcare-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

.healthcare-faq-answer-content {
  font-family: 'Kalam', cursive;
  font-size: 1.05rem;
  color: #556070;
  line-height: 1.7;
  padding: 0 8px 24px;
  margin: 0;
  font-style: italic;
}

/* FAQ Active state styling */
.healthcare-faq-item.active .healthcare-faq-chevron {
  transform: rotate(180deg);
}

@media (max-width: 900px) {
  .healthcare-faq-section {
    padding: 70px 16px;
  }
  
  .healthcare-faq-title {
    font-size: 1.95rem;
  }
  
  .healthcare-faq-question-text {
    font-size: 1.18rem;
  }
  
  .healthcare-faq-question {
    padding: 20px 4px;
  }
  
  .healthcare-faq-answer-content {
    font-size: 0.95rem;
    padding: 0 4px 20px;
  }
}

/* CALL TO ACTION (CTA) SECTION */
.healthcare-cta-section {
  position: relative;
  width: 100%;
  padding: 100px 24px;
  background-image: url('assets/photo-1486312338219-ce68d2c6f44d.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.healthcare-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(95, 60, 95, 0.88);
  z-index: 1;
}

.healthcare-cta-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.healthcare-cta-title {
  font-family: 'Kalam', cursive;
  font-size: 2.5rem;
  line-height: 1.35;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.healthcare-cta-description {
  font-family: 'Kalam', cursive;
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin-bottom: 35px;
  font-style: italic;
}

.healthcare-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.healthcare-cta-btn-primary {
  font-family: 'Kalam', cursive;
  font-size: 1.05rem;
  font-weight: 700;
  background-color: #FFFFFF;
  color: var(--color-primary);
  padding: 12px 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  border: 1.5px solid #FFFFFF;
  cursor: pointer;
  text-decoration: none;
}

.healthcare-cta-btn-primary:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.healthcare-cta-btn-secondary {
  font-family: 'Kalam', cursive;
  font-size: 1.05rem;
  font-weight: 700;
  background-color: transparent;
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  text-decoration: none;
}

.healthcare-cta-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .healthcare-cta-section {
    padding: 70px 16px;
  }
  
  .healthcare-cta-title {
    font-size: 1.95rem;
  }
  
  .healthcare-cta-description {
    font-size: 0.98rem;
    margin-bottom: 28px;
  }
  
  .healthcare-cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .healthcare-cta-btn-primary, .healthcare-cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}



