  * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Georgia", serif;
        line-height: 1.6;
        color: #333;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        min-height: 100vh;
      }

      html,
      body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
      }

      main,
      .page,
      .page-content {
        width: 100%;
      }

      img,
      video,
      iframe {
        max-width: 100%;
        height: auto;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      /* Header */
      header {
        background: #ffffff;
        backdrop-filter: blur(12px);
        padding: 0.3rem 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        border-bottom: 1px solid rgba(52, 152, 219, 0.15);
      }

      .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1360px;
        margin: 0 auto;
        padding: 0 20px;
        gap: 12px;
        position: relative;
      }

      .logo {
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
        text-decoration: none;
        cursor: pointer;
        width: clamp(175px, 19vw, 265px);
      }

      .logo img {
        display: block;
        width: 100%;
        height: auto;
      }

      /* Desktop Navigation */
      nav {
        display: flex;
        align-items: center;
        gap: 0.9rem;
        margin-left: auto;
      }

      nav ul {
        display: flex;
        list-style: none;
        gap: 0.2rem;
        padding: 2px 6px;
        background: transparent;
        border: none;
        border-radius: 999px;
        box-shadow: none;
      }

      nav ul a {
        text-decoration: none;
        color: #2c3e50;
        font-family: "Times New Roman", Times, serif;
        font-size: 1.12rem;
        font-weight: 400;
        transition: color 0.25s ease, transform 0.2s ease, background 0.2s ease;
        position: relative;
        cursor: pointer;
        padding: 6px 8px;
        border-radius: 10px;
      }

      nav ul a:hover {
        color: #1f6fb2;
        background: transparent;
        transform: translateY(-1px);
      }

      nav ul a::after {
        content: "";
        position: absolute;
        left: 10px;
        right: 10px;
        bottom: 6px;
        height: 2px;
        background: #3498db;
        border-radius: 999px;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.25s ease;
      }

      nav ul a:hover::after {
        transform: scaleX(1);
      }

      nav ul a.active {
        color: #1f6fb2;
        background: rgba(52, 152, 219, 0.12);
      }

      nav ul a.active::after {
        transform: scaleX(1);
      }

      .cta-button {
        background: linear-gradient(45deg, #ea614c, #c0392b);
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        cursor: pointer;
        letter-spacing: 0.3px;
      }


      .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
      }

      /* Hamburger Menu */
      .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 10px;
        z-index: 1202;
        border-radius: 12px;
        border: 1px solid rgba(52, 152, 219, 0.2);
        background: linear-gradient(145deg, #ffffff, #f2f6fb);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      }

      .hamburger span {
        width: 25px;
        height: 3px;
        background: #1f2d3d;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 3px;
      }

      .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
      }

      .hamburger.active span:nth-child(2) {
        opacity: 0;
      }

      .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
      }

      .hamburger:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
        background: linear-gradient(145deg, #ffffff, #e8f1fb);
      }

      .hamburger.active {
        background: linear-gradient(145deg, #ea614c, #c0392b);
        border-color: rgba(234, 97, 76, 0.45);
      }

      .hamburger.active span {
        background: #fff;
      }

      /* Mobile Navigation */
      .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        z-index: 999;
        transition: right 0.3s ease;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
      }

      .mobile-nav.active {
        right: 0;
      }

      .mobile-nav ul {
        list-style: none;
        padding: 0;
      }

      .mobile-nav ul li {
        margin: 1.5rem 0;
      }

      .mobile-nav ul li a {
        color: #2c3e50;
        text-decoration: none;
        font-family: "Times New Roman", Times, serif;
        font-size: 1.2rem;
        font-weight: 400;
        padding: 10px 0;
        display: block;
        transition: color 0.3s ease;
        cursor: pointer;
      }

      .mobile-nav ul li a:hover {
        color: #3498db;
      }

      .mobile-nav .cta-button {
        margin-top: 2rem;
        display: inline-block;
        text-align: center;
        width: 100%;
      }

      /* Mobile Overlay */
      .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
      }

      .mobile-overlay.active {
        opacity: 1;
        pointer-events: auto;
      }

      /* Page Content */
      .page-content {
        margin-top: 80px;
        min-height: calc(100vh - 80px);
      }

      /* Home Page Styles */
      .hero {
        position: relative;
        height: 100vh;
        min-height: 100svh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 84px;
        padding-bottom: 24px;
        box-sizing: border-box;
        color: white;
        text-align: center;
        overflow: hidden;
      }

      /* Background Image Slider */
      .hero-bg-slider {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
      }

      .bg-slide {
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 2s ease-in-out;
      }

      .bg-slide.active {
        opacity: 1;
      }

      .hero-overlay::before {
        content: "";
        position: absolute;
        top: -10px;
        left: 0;
        width: 100%;
        height: 110%;
        background: rgba(0, 0, 0, 0.5); /* dark semi-transparent layer */
        z-index: -1;
        border-radius: 12px;
      }

      /* Foreground Content */
      .hero-overlay {
        position: relative;
        z-index: 1;
        padding: 0px 20px;
        max-width: 900px;
        text-align: center;
        color: white;
      }

      @keyframes gradientShift {
        0% {
          background-position: 0% 50%;
        }
        50% {
          background-position: 100% 50%;
        }
        100% {
          background-position: 0% 50%;
        }
      }

      .hero-content {
        position: relative;
        z-index: 2;
        animation: fadeInUp 3s ease forwards;
        opacity: 0;
      }

      /* Fade-in animation for smooth appearance */
      /* Animation Classes */
      .fade-in-up {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
      }

      .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .hero h1 {
        font-size: 3.2rem;
        margin-bottom: 1rem;
        font-weight: 700;
        letter-spacing: -1px;
        background: linear-gradient(90deg, #ffffff, #d4bfff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .hero h1 .highlight {
        background: linear-gradient(90deg, #ffe29f, #ffa99f);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .hero p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        font-weight: 300;
        line-height: 1.6;
        opacity: 0.95;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        color: white;
        font-weight: 400;
        text-shadow: none;

        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
      }

      .hero-cta {
        display: inline-flex;
        gap: 1rem;
        margin-top: 0.5rem;
        animation: fadeInUp 1s ease forwards;
        animation-delay: 0.2s;
        opacity: 0;
      }

      .hero-cta .btn {
        padding: 15px 35px;
        border: none;
        border-radius: 30px;
        font-size: 1.1rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
      }

      .btn-primary {
        background: linear-gradient(45deg, #f39c12, #e67e22);
        color: white;
        box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        border-radius: 15px;
        cursor: pointer;
        transition: transform 0.3s ease, background-color 0.3s ease;
      }

      .btn-primary:hover {
        box-shadow: 0 6px 20px rgba(255, 168, 27, 0.4);
        background-color: #2980b9;
        transform: scale(1.05);
      }

      .btn-secondary {
        color: white;
        border: 2px solid white;
      }

      .btn-secondary:hover {
        background: white;
        color: #2c3e50;
      }

      /* About Section */
      .about-section {
        padding: 80px 0;
        background: white;
      }

      .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
      }

      .about-text h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: #2c3e50;
        background: linear-gradient(45deg, #3498db, #2980b9);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .about-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        color: #555;
      }

      .ronald-photo {
        width: 100%;
        height: 550px;
        object-fit: cover;
        border-radius: 15px;
        display: block;
      }

      .ronaldb-photo {
        width: 95%;
        height: 500px;
        object-fit: cover;
        border-radius: 15px;
      }

      .bio-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.bio-layout .about-text {
  flex: 1 1 60%;
}

.bio-layout img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  object-fit: cover;
}

/* Bio Page Styling */
.bio-title {
  color: #ff7a00; /* Orange */
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Make all other h2 inside the bio page smaller */
.bio-layout h2:not(.bio-title) {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.content-section {
  padding-top: 4rem;
}
/* Bio Page Card */
.bio-card {
  background: #f7ede2; /* Slight beige luxury tone */
  padding: 60px;
  border-radius: 14px;
  max-width: 900px;
  margin: 60px auto;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}


/* Main Bio Title */
.bio-title {
  color: #ff7a00;
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  text-align: center;
}

.bio-page .fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

/* Subheadings inside bio */
.bio-card h2:not(.bio-title) {
  font-size: 1.4rem;
  margin-top: 2.4rem;
  margin-bottom: 0.6rem;
  color: #333;
  font-weight: 500;
  border-left: 4px solid #ff7a00;
  padding-left: 10px;
}

/* Paragraph text readability */
.bio-card p {
  line-height: 1.65;
  margin-bottom: 18px;
  line-height: 1.65;
  color: #444;
}
/* BIO PAGE ONLY BACKGROUND */
.bio-page {
  background: #fffaf5; /* soft warm neutral background */
}

/* Bio page: keep section audio control fully visible and polished */
.bio-page .content-section {
  padding-top: 130px;
}

.bio-page .section-audio-wrap {
  justify-content: center;
  position: sticky;
  top: 96px;
  z-index: 30;
  margin-bottom: 1.5rem;
}

      /* Services Section */
      .services-section {
        padding: 80px 0;
        background: url("https://www.transparenttextures.com/patterns/cubes.png");
        background-color: #e6f0fa;
      }

      .services-section h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #2c3e50;
      }

      .service-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
      }

      .service-card {
        background-color: #ffffff;
        border: 1px solid #d0e8ec;
        padding: 2.5rem;
        border-radius: 15px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      }

      .service-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 12px 25px rgba(61, 155, 214, 0.4);
        cursor: pointer;
      }

      .service-card ul {
  margin-top: 1rem; /* Adds gap after paragraph */
  padding-left: 1.2rem; /* Ensures bullet indent */
}

.service-card ul li {
  margin-bottom: 0.5rem; /* Adds spacing between bullets */
  line-height: 1.5;
}
.all-services-include {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}


      .service-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        background: linear-gradient(45deg, #3498db, #2980b9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
      }

      .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #2c3e50;
      }

      .service-card p {
        color: #666;
        line-height: 1.6;
      }

      /* Process Section */
      .process-section {
        padding: 80px 0;
        background: white;
      }

      .process-section h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #2c3e50;
      }

      .process-section .highlight-box {
        background: rgba(255, 255, 255, 0.1);
        border-left: 4px solid #f39c12;
        padding: 1.5rem;
        border-radius: 12px;
        margin-top: 1rem;
        color: black;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
      }

      .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
      }

      .process-step {
        text-align: center;
        padding: 2rem;
        background-color: #ffffff;
        border-radius: 12px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        border: 2px solid #f39c12; /* ← Orange border */
      }

      .process-step:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 10px 20px rgba(61, 155, 214, 0.5);
        cursor: pointer;
      }

      .step-number {
        width: 60px;
        height: 60px;
        background: linear-gradient(45deg, #e74c3c, #c0392b);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: bold;
        margin: 0 auto 1rem;
      }

      .process-step h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        color: #2c3e50;
      }

      .process-step p {
        color: #666;
      }

      /* Contact Section */
      .contact-section {
        padding: 80px 0;
        background: white;
      }

      .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
      }

      .contact-info h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: #2c3e50;
      }

      .contact-info p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        color: #555;
      }

      .contact-details {
        background: #f8f9fa;
        padding: 2rem;
        border-radius: 15px;
      }

      .contact-details h3 {
        margin-bottom: 1rem;
        color: #2c3e50;
      }

      .contact-details p {
        margin-bottom: 1rem;
        color: #666;
      }

      .contact-form {
        background: rgb(234, 196, 125);
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      }

      .form-group {
        margin-bottom: 1.5rem;
      }

      .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: #2c3e50;
        font-weight: 500;
      }

      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 1rem;
        transition: border-color 0.3s ease;
      }

      .form-group input:focus,
      .form-group textarea:focus {
        outline: none;
        border-color: #3498db;
      }

      .form-group textarea {
        resize: vertical;
        min-height: 120px;
      }

      .contact-form .btn.btn-primary {
        background-color: #ddb4b0 !important;
        color: white !important;
        padding: 14px 28px !important;
        font-size: 1.1rem !important;
        border: none !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        font-weight: 600 !important;
        transition: background-color 0.3s ease, transform 0.3s ease !important;
      }

      .contact-form .btn.btn-primary:hover {
        background-color: #f61b02 !important;
        transform: translate(0.5) !important;
      }

      /* Book Session Section */
      .book-session-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        text-align: center;
      }

      .book-session-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
      }

      .book-session-section p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
      }

      .pricing-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
        position: relative;
        overflow: visible; /* <--- This is crucial */
        z-index: 1;
      }

      .pricing-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 2.5rem;
        border-radius: 15px;
        text-align: center;
        border: 2px solid rgba(255, 255, 255, 0.2);
      }

      .pricing-card .btn.btn-primary {
        color: #ffffff !important;
        padding: 12px 24px !important;
        font-size: 0.9rem !important;
        border: none !important;
        border-radius: 20px !important;
        cursor: pointer !important;
        font-weight: 600 !important;
      }

      .pricing-card h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
      }

      .pricing-card .price {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 1rem;
      }

      .pricing-card ul {
        list-style: none;
        margin-bottom: 2rem;
      }

      .pricing-card ul li {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      }
      .pricing-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 2.5rem;
        border-radius: 15px;
        text-align: center;
        border: 2px solid rgba(255, 255, 255, 0.2);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        position: relative;
        z-index: 1;
        transform: scale(1);
      }

      .pricing-card:hover {
        transform: scale(1.1); /* Bigger zoom */
        box-shadow: 0 25px 35px rgba(0, 0, 0, 0.3);
        z-index: 10;
      }

      .testimonials-section {
        background-color: #f7fbff;
        padding: 80px 0;
      }

      .testimonials-section h2 {
        font-size: 2.6rem;
        text-align: center;
        font-weight: 600;
        margin-bottom: 3rem;
        color: #2c3e50;
        background: linear-gradient(90deg, #3498db, #6dd5fa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
      }

      .testimonial-card {
        background: #ffffff;
        border: 2px solid #d0e8ec;
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .testimonial-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 30px rgba(61, 155, 214, 0.15);
      }

      .testimonial-card .quote-icon,
      .testimonial-card .audio-icon {
        font-size: 2rem;
        color: #3498db;
        margin-bottom: 1rem;
      }

      .testimonial-card p {
        font-size: 1.05rem;
        color: #555;
        margin-bottom: 1.2rem;
        line-height: 1.6;
      }

      .client-info {
        border-top: 1px solid #eee;
        padding-top: 1rem;
      }

      .client-name {
        font-weight: bold;
        color: #2c3e50;
      }

      .client-role {
        font-size: 0.95rem;
        color: #888;
      }

      .audio-player audio {
        width: 100%;
        margin-top: 0.5rem;
        border-radius: 10px;
        outline: none;
      }

      /* Footer */
      footer {
        background: #2c3e50;
        color: white;
        padding: 40px 0;
        text-align: center;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
      }

      .footer-section h3 {
        margin-bottom: 1rem;
        color: #3498db;
      }

      .footer-section p,
      .footer-section a {
        color: #bdc3c7;
        text-decoration: none;
        line-height: 1.6;
      }

      .footer-section a:hover {
        color: #3498db;
      }

      .footer-bottom {
        border-top: 1px solid #ffffff;
        padding-top: 1rem;
        margin-top: 2rem;
      }
      .footer-bottom a {
        color: #bdc3c7;
        text-decoration: none;
      }

      .footer-bottom a:hover {
        color: #3498db;
      }

      /* Page-specific styles */
   

      .page.active {
        display: block;
      }

      .about-hero {
        background-image: url("../images/about-img.jpg");
      }

      .services-hero {
        background-image: url("../images/services-img.jpg");
      }

      .contact-hero {
        background-image: url("../images/contact-img.png");
      }

      .process-hero {
        background-image: url("../images/process-img.jpg");
      }

      .page-hero {
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 587px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 60px 20px;
        text-align: center;
        color: white;
        z-index: 1;
        box-sizing: border-box;
      }

      .page-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5); /* semi-transparent black overlay */
        z-index: -1;
      }

      .page-hero h1 {
        font-size: 4rem;
        margin-bottom: 1rem;
      }

      .page-hero p {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 6rem;

      }

      .content-section {
        padding: 80px 0;
        background: white;
      }

      .content-section h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        color: #2c3e50;
      }

      .content-section p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        color: #555;
        line-height: 1.8;
      }

      .highlight-box {
        background: #f8f9fa;
        padding: 2rem;
        border-radius: 15px;
        margin: 2rem 0;
        border-left: 4px solid #3498db;
      }

      .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin: 3rem 0;
      }

      .stat-item {
        text-align: center;
        padding: 1.5rem;
      }

      .stat-number {
        font-size: 3rem;
        font-weight: bold;
        color: #3498db;
      }

      .stat-label {
        font-size: 1.1rem;
        color: #666;
      }

      /* Responsive Design */
      @media (max-width: 1024px) {
        .header-content {
          align-items: center;
        }

        .hamburger {
          display: flex;
          position: static;
          background: #ffffff;
          padding: 10px;
          border-radius: 12px;
          border: 1px solid rgba(52, 152, 219, 0.2);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
          z-index: 1202;
          margin-left: auto;
        }

        nav ul {
          display: none;
        }

        nav .cta-button {
          display: none;
        }

        .mobile-nav {
          display: block;
        }

        .mobile-overlay {
          display: block;
        }

        nav {
          flex: 1;
        }

        .hero h1 {
          font-size: 2.5rem;
        }

        .hero p {
          font-size: 1.1rem;
        }

        .about-content,
        .contact-content {
          grid-template-columns: 1fr;
          gap: 2rem;
        }

        .hero-cta {
          flex-direction: column;
          align-items: center;
        }

        .service-grid,
        .pricing-cards {
          grid-template-columns: 1fr;
        }

        .process-steps {
          grid-template-columns: 1fr;
        }

        .footer-content {
          grid-template-columns: 1fr;
          text-align: center;
        }

        .page-hero h1 {
          font-size: 2.2rem;
        }

        .page-hero {
          min-height: 460px;
          padding: 56px 20px;
        }

        .page-hero p {
          margin-bottom: 3rem;
        }

        .bio-card {
          padding: 40px;
        }

        .ronald-photo,
        .ronaldb-photo {
          height: auto;
          max-height: 560px;
        }

        .stats-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      /* Animations */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .service-card,
      .process-step,
      .pricing-card {
        animation: fadeInUp 0.6s ease-out;
      }

      html {
        scroll-behavior: smooth;
      }

      /* Section audio controls (homepage) */
      .audio-enabled-section {
        position: relative;
      }

      .section-audio-wrap {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 1rem;
      }

      .section-audio-wrap.floating {
        position: absolute;
        top: 110px;
        right: 20px;
        z-index: 4;
        margin-bottom: 0;
      }

      .section-audio-btn {
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 999px;
        padding: 10px 20px;
        background: linear-gradient(135deg, #1f3b57, #2c4f73);
        color: #fff;
        font-family: "Times New Roman", Georgia, serif;
        font-size: 0.96rem;
        font-weight: 600;
        letter-spacing: 0.2px;
        cursor: pointer;
        box-shadow: 0 10px 24px rgba(22, 47, 78, 0.25);
        transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
      }

      .section-audio-btn:hover {
        background: linear-gradient(135deg, #24486b, #335f89);
        transform: translateY(-1px);
        box-shadow: 0 12px 26px rgba(22, 47, 78, 0.3);
      }

      .section-audio-btn[data-state="speaking"] {
        background: linear-gradient(135deg, #7a2f2f, #5c2323);
      }

      .section-audio-btn[data-state="paused"] {
        background: linear-gradient(135deg, #7a6430, #5d4b24);
      }

      .section-audio-btn.is-disabled,
      .section-audio-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        box-shadow: none;
      }

      @media (max-width: 768px) {
        .section-audio-wrap.floating {
          top: 94px;
          right: 14px;
        }

        .section-audio-btn {
          padding: 8px 13px;
          font-size: 0.84rem;
        }
      }

      @media (max-width: 600px) {
        .section-audio-wrap {
          justify-content: center;
        }

        .section-audio-wrap.floating {
          position: static;
          margin-bottom: 1rem;
        }

        .section-audio-btn {
          width: 100%;
          max-width: 280px;
          display: inline-flex;
          justify-content: center;
        }
      }

      /* Audio reader control */
      .audio-reader {
        position: fixed;
        left: 14px;
        bottom: 14px;
        display: none;
        flex-direction: column;
        gap: 8px;
        width: min(280px, calc(100% - 48px));
        padding: 10px 12px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid #e0e6f0;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        z-index: 1200;
        backdrop-filter: blur(6px);
      }

      .audio-reader.open {
        display: flex;
      }

      .audio-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
      }

      .audio-label {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #2c3e50;
        font-weight: 700;
      }

      .audio-icon {
        font-size: 1.1rem;
      }

      .audio-title {
        font-size: 0.98rem;
        line-height: 1.2;
      }

      .audio-close {
        background: transparent;
        border: 1px solid #d9e1ec;
        color: #2c3e50;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 1rem;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      }

      .audio-close:hover {
        transform: translateY(-1px);
        background: #f4f7fb;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      }

      .audio-launcher {
        position: fixed;
        left: 14px;
        bottom: 14px;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        border: none;
        background: linear-gradient(135deg, #3498db, #2980b9);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
        z-index: 1201;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .audio-launcher:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
      }

      .audio-launcher:focus-visible {
        outline: 3px solid #8ec5ff;
        outline-offset: 2px;
      }

      .audio-launcher-icon {
        font-size: 1.25rem;
      }

      .audio-launcher-tooltip {
        position: absolute;
        left: 64px;
        bottom: 18px;
        background: #fff;
        color: #1f2d3d;
        padding: 8px 12px;
        border-radius: 10px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        font-weight: 700;
        font-size: 0.9rem;
        white-space: nowrap;
        animation: floatIn 0.5s ease forwards;
      }

      @media (max-width: 768px) {
        .audio-launcher {
          left: 12px;
          bottom: 12px;
        }

        .audio-launcher-tooltip {
          left: 60px;
          bottom: 16px;
        }
      }

      .audio-actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }

      .audio-options {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        align-items: flex-end;
      }

      .audio-field {
        display: flex;
        flex-direction: column;
        gap: 4px;
        min-width: 140px;
        color: #2c3e50;
        font-weight: 600;
        font-size: 0.9rem;
      }

      .audio-field span {
        color: #2c3e50;
        font-size: 0.88rem;
        font-weight: 600;
      }

      .audio-field select {
        padding: 8px 10px;
        border-radius: 10px;
        border: 1px solid #d9e1ec;
        background: #f8fafc;
        color: #2c3e50;
        font-weight: 500;
        cursor: pointer;
      }

      .audio-btn {
        border: none;
        cursor: pointer;
        padding: 10px 14px;
        border-radius: 10px;
        font-weight: 600;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .audio-btn.primary {
        background: linear-gradient(45deg, #3498db, #2980b9);
        color: #fff;
        box-shadow: 0 6px 16px rgba(52, 152, 219, 0.35);
      }

      .audio-btn.secondary {
        background: #eef2f7;
        color: #2c3e50;
        border: 1px solid #d9e1ec;
      }

      .audio-btn:hover {
        transform: translateY(-1px);
      }

      .audio-status {
        display: block;
        font-size: 0.88rem;
        color: #2c3e50;
        min-height: 1.1em;
      }

      @media (max-width: 768px) {
        .container {
          padding: 0 16px;
        }

        .hero h1 {
          font-size: 1.9rem;
        }

        .hero p {
          font-size: 1rem;
        }

        .audio-reader {
          left: 12px;
          right: 12px;
          bottom: 12px;
          width: calc(100% - 24px);
          max-width: 520px;
        }

        .audio-actions {
          width: 100%;
        }

        .audio-btn {
          flex: 1 1 calc(50% - 8px);
          justify-content: center;
        }

        .audio-options {
          width: 100%;
        }

        .audio-field {
          flex: 1 1 48%;
        }
      }

      /* Chatbot */
      .chatbot {
        position: fixed;
        right: 14px;
        bottom: 14px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 288px;
        height: 384px;
        max-height: 384px;
        padding: 0;
        background: linear-gradient(135deg, #f7fbff, #e9f1ff);
        border: 1px solid #d6e2f5;
        border-radius: 16px;
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
        z-index: 1195;
        backdrop-filter: blur(8px);
        font-family: "Times New Roman", Times, serif;
        display: none;
        overflow: hidden;
      }

      .chatbot.open {
        display: flex;
      }

      .chatbot header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 700;
        color: #fff;
        padding: 12px 14px;
        background: linear-gradient(135deg, #ea614c, #c0392b);
        border-radius: 16px 16px 0 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        letter-spacing: 0.2px;
      }

      .chatbot-close {
        background: transparent;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.5);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 1.2rem;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      }

      .chatbot-close:hover {
        transform: translateY(-1px);
        background: transparent;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      }

      .chatbot-messages {
        flex: 1;
        overflow-y: auto;
        padding: 8px;
        background: #f7f9fc;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
        margin: 0 12px 6px 12px;
      }

      .chat-message {
        margin-bottom: 10px;
        padding: 10px 12px;
        border-radius: 12px;
        line-height: 1.5;
        font-size: 0.92rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: transform 0.15s ease, box-shadow 0.15s ease;
      }

      .chat-message.user {
        background: linear-gradient(135deg, #e8f4ff, #d6e9ff);
        color: #1d6fb8;
        align-self: flex-end;
        border: 1px solid #c6defc;
      }

      .chat-message.bot {
        background: #eef2f7;
        color: #2c3e50;
        border: 1px solid #e2e6ef;
      }

      .chat-message:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
      }

      .chatbot form {
        display: flex;
        gap: 8px;
        align-items: center;
        padding: 0 12px 12px 12px;
        width: 100%;
        box-sizing: border-box;
      }

      .chatbot input[type="text"] {
        flex: 1;
        padding: 10px 12px;
        border-radius: 12px;
        border: 1px solid #d9e1ec;
        font-size: 0.95rem;
        background: #f8fafc;
      }

      .chatbot button {
        background: linear-gradient(45deg, #3498db, #2980b9);
        color: #fff;
        border: none;
        padding: 8px 11px;
        border-radius: 12px;
        cursor: pointer;
        font-weight: 700;
        box-shadow: 0 6px 16px rgba(52, 152, 219, 0.35);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        flex-shrink: 0;
        font-size: 0.92rem;
      }

      .chatbot button:hover {
        transform: translateY(-1px);
      }

      @media (max-width: 768px) {
        .chatbot {
          left: 12px;
          right: auto;
          width: calc(100% - 30px);
          max-width: 320px;
          bottom: 130px;
          height: 360px;
          max-height: 360px;
          left: 10px;
          right: 10px;
          width: calc(100% - 20px);
          max-width: none;
          height: 65vh;
          max-height: 65vh;
        }

        .chatbot-messages {
          max-height: 45vh;
        }

        .chatbot-launcher {
          right: 14px;
          bottom: 14px;
        }
      }

      .chatbot-launcher {
        position: fixed;
        right: 16px;
        bottom: 16px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: none;
        background: linear-gradient(135deg, #ea614c, #c0392b);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
        z-index: 1196;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .chatbot-launcher:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
      }

      .chatbot-launcher:focus-visible {
        outline: 3px solid #8ec5ff;
        outline-offset: 2px;
      }

      .chatbot-launcher-icon {
        font-size: 1.35rem;
      }

      .chatbot-launcher-tooltip {
        position: absolute;
        right: 70px;
        bottom: 22px;
        background: rgba(255, 255, 255, 0.65);
        color: #1f2d3d;
        padding: 8px 12px;
        border-radius: 10px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        font-weight: 700;
        font-size: 0.9rem;
        font-family: "Georgia", "Times New Roman", serif;
        white-space: nowrap;
        animation: floatIn 0.5s ease forwards;
      }

      @keyframes floatIn {
        from {
          opacity: 0;
          transform: translateY(6px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }


      @media (max-width: 768px) {
        .chatbot-launcher {
          right: 14px;
          bottom: 14px;
        }

        .chatbot-launcher-tooltip {
          right: 66px;
          bottom: 18px;
        }
      }

      @media (max-width: 480px) {
        header {
          padding: 0.3rem 0;
        }

        .header-content {
          padding: 0 14px;
        }

        .logo {
          width: min(52vw, 190px);
        }

        nav ul {
          gap: 0.8rem;
          padding: 6px 10px;
        }

        .cta-button {
          padding: 9px 16px;
        }

        .audio-launcher {
          left: 10px;
          bottom: 10px;
        }

        .chatbot-launcher {
          right: 10px;
          bottom: 10px;
        }

        .chatbot {
          height: 60vh;
          max-height: 60vh;
        }

        .chatbot-messages {
          max-height: 38vh;
        }

        .stats-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 768px) {
        .page-hero {
          min-height: 360px;
          padding: 42px 16px;
        }

        .book-session-section,
        .content-section,
        .about-section,
        .services-section,
        .process-section,
        .contact-section,
        .testimonials-section {
          padding: 56px 0;
        }

        .bio-card {
          padding: 28px;
          margin: 40px auto;
        }

        .highlight-box {
          padding: 1.25rem;
        }

        .contact-form {
          padding: 1.25rem;
        }

        .form-group input,
        .form-group textarea {
          font-size: 16px;
        }

        .bio-page .content-section {
          padding-top: 112px;
        }

        .bio-page .section-audio-wrap {
          top: 84px;
        }
      }

      @media (max-width: 600px) {
        .mobile-nav {
          width: min(90%, 320px);
        }

        .hero {
          height: auto;
          min-height: 100svh;
          padding-top: 84px;
          padding-bottom: 40px;
        }

        .hero-overlay {
          padding: 0 14px;
        }

        .hero h1 {
          font-size: 1.7rem;
        }

        .hero p {
          font-size: 0.98rem;
        }

        .hero-cta .btn {
          width: 100%;
          max-width: 280px;
        }

        .page-hero h1 {
          font-size: 1.8rem;
        }

        .page-hero p {
          font-size: 1rem;
          margin-bottom: 2rem;
        }

        .stats-grid {
          grid-template-columns: 1fr;
        }

        .bio-page .content-section {
          padding-top: 102px;
        }

        .bio-page .section-audio-wrap {
          top: 78px;
          margin-bottom: 1rem;
        }
      }
