/*
===========================================
P4T GLOBAL - MASTER STYLESHEET
Planning for Tomorrow Youth Organisation
===========================================
*/

/* ============================================
   BROWSER COMPATIBILITY
   ============================================ */
/* Force consistent box-sizing across all browsers */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Smooth scrolling for all browsers */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* ============================================
   CSS VARIABLES - BRAND COLORS
   ============================================ */
   :root {
    /* Primary Colors */
    --p4t-primary-orange: #F37021;
    --p4t-primary-black: #000000;
    
    /* Secondary Colors */
    --p4t-coral: #FF8C5A;
    --p4t-sunset: #E85D04;
    
    /* Supporting Colors */
    --p4t-sky-blue: #87CEEB;
    --p4t-green: #6BA368;
    --p4t-yellow: #FDB833;
    --p4t-teal: #1A5F7A;
    --p4t-berry: #B83B5E;
    
    /* Neutral Colors */
    --p4t-white: #FFFFFF;
    --p4t-off-white: #FAF9F6;
    --p4t-light-gray: #E8E8E8;
    --p4t-very-light-gray: #F8F8F8;
    --p4t-black: #000000;
    
    /* Typography */
    --p4t-body-font: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --p4t-heading-font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --p4t-section-padding: 80px 0;
    --p4t-content-padding: 0 50px;
    --p4t-mobile-padding: 0 20px;
  }
  
  /* ============================================
     GLOBAL STYLES & RESET
     ============================================ */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
  
  body {
    font-family: var(--p4t-body-font);
    color: var(--p4t-primary-black);
    background-color: var(--p4t-white);
    line-height: 1.7;
    font-size: 18px;
    overflow-x: hidden;
    /* Font smoothing for all browsers */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  
  /* ============================================
     TYPOGRAPHY
     ============================================ */
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--p4t-heading-font);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.2px;
    margin-bottom: 20px;
    color: var(--p4t-primary-black);
  }
  
  h1 {
    font-size: 4.5rem; /* 72px */
  }
  
  h2 {
    font-size: 2.75rem; /* 44px */
  }
  
  h3 {
    font-size: 2.25rem; /* 36px */
  }
  
  h4 {
    font-size: 1.875rem; /* 30px */
  }
  
  h5 {
    font-size: 1.5rem; /* 24px */
  }
  
  h6 {
    font-size: 1.25rem; /* 20px */
  }
  
  p {
    font-size: 1.125rem; /* 18px */
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--p4t-primary-black);
  }
  
  a {
    color: var(--p4t-primary-orange);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  a:hover {
    color: var(--p4t-sunset);
  }
  
  a:visited {
    color: var(--p4t-primary-black);
  }

.p4t-orange-text-hard {
  color: var(--p4t-primary-orange);
}
  


  
  /* ============================================
     BUTTONS
     ============================================ */
  .p4t-btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
  }
  
  .p4t-btn-primary {
    background-color: var(--p4t-primary-orange);
    color: var(--p4t-white);
    border-color: var(--p4t-primary-orange);
  }
  
  .p4t-btn-primary:hover {
    background-color: var(--p4t-sunset);
    border-color: var(--p4t-sunset);
    color: var(--p4t-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 112, 33, 0.3);
  }
  
  .p4t-btn-secondary {
    background-color: var(--p4t-white);
    color: var(--p4t-primary-orange);
    border-color: var(--p4t-primary-orange);
  }
  
  .p4t-btn-secondary:hover {
    background-color: #FFF4ED;
    color: var(--p4t-primary-orange);
    transform: translateY(-3px);
  }
  
  .p4t-btn-large {
    padding: 18px 45px;
    font-size: 1.15rem;
  }
  
  /* ============================================
     HERO SECTION
     ============================================ */
  .p4t-hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(243, 112, 33, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 100px 50px;
    position: relative;
  }
  
  .p4t-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .p4t-hero h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1.2;
  }
  
  .p4t-hero .p4t-highlight {
    color: var(--p4t-primary-orange);
  }
  
  .p4t-hero p {
    font-size: 1.35rem;
    color: var(--p4t-primary-black);
    max-width: 800px;
    margin: 0 auto 40px;
  }
  
  .p4t-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* ============================================
     HERO SLIDER SECTION (Full HD 1920x1080)
     ============================================ */
  .p4t-hero-slider {
    position: relative;
    width: 100%;
    height: 1080px; /* Full HD height for 1920x1080 images */
    max-height: 90vh; /* Maximum 90% of viewport height */
    overflow: hidden;
  }
  
  /* Individual Slide */
  .p4t-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: visible;
    transition: opacity 1.5s ease-in-out; /* Slow smooth fade */
  }
  
  /* Initial slide - no transition on page load */
  .p4t-slide.p4t-slide-initial {
    opacity: 1;
    transition: none; /* No transition for first slide */
  }
  
  .p4t-slide.p4t-slide-active {
    opacity: 1;
    z-index: 2;
  }
  
  /* Previous slide fades out */
  .p4t-slide.p4t-slide-prev {
    opacity: 0;
    z-index: 1;
  }
  
  /* Slide Background Image - Optimized for 1920x1080 */
  .p4t-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  
  /* Dark Overlay for Image Depth */
  .p4t-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* No overlay - clear images */
    z-index: 2;
  }
  
  /* ============================================
     FLOATING STATS CARDS
     ============================================ */
  .p4t-floating-stats {
    position: relative;
    width: 100%;
    margin-top: -100px; /* Overlap the hero section */
    z-index: 100;
    padding: 0 50px;
  }
  
  .p4t-floating-stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  
  .p4t-stat-card {
    background: var(--p4t-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .p4t-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  
  .p4t-stat-card:hover {
    transform: translateY(-8px);
  }
  
  .p4t-stat-card:hover::before {
    transform: scaleX(1);
  }
  
  .p4t-stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .p4t-stat-icon i {
    font-size: 2rem;
    transition: all 0.3s ease;
  }
  
  .p4t-stat-card:hover .p4t-stat-icon {
    transform: scale(1.1) rotate(5deg);
  }
  
  .p4t-stat-number {
    font-family: var(--p4t-heading-font);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
  }
  
  .p4t-stat-label {
    font-size: 1rem;
    color: var(--p4t-primary-black);
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  /* Individual Card Colors */
  .p4t-stat-card:nth-child(1) {
    border-top: 4px solid #FDB833;
  }
  
  .p4t-stat-card:nth-child(1) .p4t-stat-icon {
    background: linear-gradient(135deg, rgba(253, 184, 51, 0.15), rgba(253, 184, 51, 0.05));
  }
  
  .p4t-stat-card:nth-child(1) .p4t-stat-icon i {
    color: #FDB833;
  }
  
  .p4t-stat-card:nth-child(1):hover {
    box-shadow: 0 15px 50px rgba(253, 184, 51, 0.25);
  }
  
  .p4t-stat-card:nth-child(1):hover .p4t-stat-icon {
    background: #FDB833;
  }
  
  .p4t-stat-card:nth-child(1):hover .p4t-stat-icon i {
    color: var(--p4t-white);
  }
  
  .p4t-stat-card:nth-child(1) .p4t-stat-number {
    color: #FDB833;
  }
  
  /* Card 2 - Teal */
  .p4t-stat-card:nth-child(2) {
    border-top: 4px solid #1A5F7A;
  }
  
  .p4t-stat-card:nth-child(2) .p4t-stat-icon {
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.15), rgba(26, 95, 122, 0.05));
  }
  
  .p4t-stat-card:nth-child(2) .p4t-stat-icon i {
    color: #1A5F7A;
  }
  
  .p4t-stat-card:nth-child(2):hover {
    box-shadow: 0 15px 50px rgba(26, 95, 122, 0.25);
  }
  
  .p4t-stat-card:nth-child(2):hover .p4t-stat-icon {
    background: #1A5F7A;
  }
  
  .p4t-stat-card:nth-child(2):hover .p4t-stat-icon i {
    color: var(--p4t-white);
  }
  
  .p4t-stat-card:nth-child(2) .p4t-stat-number {
    color: #1A5F7A;
  }
  
  /* Card 3 - Berry */
  .p4t-stat-card:nth-child(3) {
    border-top: 4px solid #B83B5E;
  }
  
  .p4t-stat-card:nth-child(3) .p4t-stat-icon {
    background: linear-gradient(135deg, rgba(184, 59, 94, 0.15), rgba(184, 59, 94, 0.05));
  }
  
  .p4t-stat-card:nth-child(3) .p4t-stat-icon i {
    color: #B83B5E;
  }
  
  .p4t-stat-card:nth-child(3):hover {
    box-shadow: 0 15px 50px rgba(184, 59, 94, 0.25);
  }
  
  .p4t-stat-card:nth-child(3):hover .p4t-stat-icon {
    background: #B83B5E;
  }
  
  .p4t-stat-card:nth-child(3):hover .p4t-stat-icon i {
    color: var(--p4t-white);
  }
  
  .p4t-stat-card:nth-child(3) .p4t-stat-number {
    color: #B83B5E;
  }
  
  /* Card 4 - Sky Blue */
  .p4t-stat-card:nth-child(4) {
    border-top: 4px solid #87CEEB;
  }
  
  .p4t-stat-card:nth-child(4) .p4t-stat-icon {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.15), rgba(135, 206, 235, 0.05));
  }
  
  .p4t-stat-card:nth-child(4) .p4t-stat-icon i {
    color: #87CEEB;
  }
  
  .p4t-stat-card:nth-child(4):hover {
    box-shadow: 0 15px 50px rgba(135, 206, 235, 0.25);
  }
  
  .p4t-stat-card:nth-child(4):hover .p4t-stat-icon {
    background: #87CEEB;
  }
  
  .p4t-stat-card:nth-child(4):hover .p4t-stat-icon i {
    color: var(--p4t-white);
  }
  
  .p4t-stat-card:nth-child(4) .p4t-stat-number {
    color: #87CEEB;
  }
  
  /* Dark Overlay for Text Readability */
  .p4t-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
  }
  
  /* Slide Content */
  
  /* Slider Controls (Arrows) */
  .p4t-slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--p4t-white);
    color: var(--p4t-white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    font-size: 1.4rem;
  }
  
  .p4t-slider-prev {
    left: 30px;
  }
  
  .p4t-slider-next {
    right: 30px;
  }
  
  .p4t-slider-control:hover {
    background-color: var(--p4t-primary-orange);
    border-color: var(--p4t-primary-orange);
    transform: translateY(-50%) scale(1.1);
  }
  
  /* Slider Dots Navigation */
  .p4t-slider-dots {
    display: none; /* Hide navigation dots */
  }
  
  .p4t-dot {
    display: none;
  }
  
  .p4t-dot:hover {
    display: none;
  }
  
  .p4t-dot.p4t-dot-active {
    display: none;
  }
  
  /* Pause on Hover */
  .p4t-hero-slider:hover .p4t-slide-bg {
    animation-play-state: paused;
  }
  
  /* ============================================
     SECTIONS
     ============================================ */
  .p4t-section {
    padding: var(--p4t-section-padding);
    width: 100%;
  }
  
  .p4t-section-content {
    max-width: 100%;
    padding: var(--p4t-content-padding);
    margin: 0 auto;
  }
  
  /* Alternating Background Sections */
  .p4t-section-alt {
    background-color: var(--p4t-very-light-gray);
  }
  
  /* Section Headers */
  .p4t-section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .p4t-section-header h2 {
    margin-bottom: 15px;
  }
  
  .p4t-section-header .p4t-subtitle {
    font-size: 1.2rem;
    color: var(--p4t-primary-black);
    max-width: 700px;
    margin: 0 auto;
  }
  
  .p4t-section-header .p4t-accent {
    color: var(--p4t-primary-orange);
  }
  
  /* ============================================
     CARDS & PROGRAM HIGHLIGHTS
     ============================================ */
  .p4t-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 40px;
  }
  
  .p4t-card {
    background-color: var(--p4t-white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
  }
  
  .p4t-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }
  
  .p4t-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--p4t-white);
  }
  
  .p4t-card h3 {
    margin-bottom: 15px;
    font-size: 1.75rem;
  }
  
  .p4t-card p {
    color: var(--p4t-primary-black);
    font-size: 1.05rem;
    margin-bottom: 20px;
  }
  
  /* Program-Specific Card Colors */
  .p4t-card-education {
    border-top-color: var(--p4t-green);
  }
  
  .p4t-card-education .p4t-card-icon {
    background-color: var(--p4t-green);
  }
  
  .p4t-card-health {
    border-top-color: var(--p4t-sky-blue);
  }
  
  .p4t-card-health .p4t-card-icon {
    background-color: var(--p4t-sky-blue);
  }
  
  .p4t-card-protection {
    border-top-color: var(--p4t-teal);
  }
  
  .p4t-card-protection .p4t-card-icon {
    background-color: var(--p4t-teal);
  }
  
  .p4t-card-livelihood {
    border-top-color: var(--p4t-yellow);
  }
  
  .p4t-card-livelihood .p4t-card-icon {
    background-color: var(--p4t-yellow);
  }
  
  .p4t-card-women {
    border-top-color: var(--p4t-coral);
  }
  
  .p4t-card-women .p4t-card-icon {
    background-color: var(--p4t-coral);
  }
  
  /* ============================================
     STATS / IMPACT SECTION
     ============================================ */
  .p4t-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
    margin-top: 40px;
  }
  
  .p4t-stat-item h3 {
    font-size: 3.5rem;
    color: var(--p4t-primary-orange);
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .p4t-stat-item p {
    font-size: 1.15rem;
    color: var(--p4t-primary-black);
    font-weight: 500;
  }
  
  /* ============================================
     CALL TO ACTION SECTIONS
     ============================================ */
  .p4t-cta {
    background: linear-gradient(135deg, var(--p4t-primary-orange) 0%, var(--p4t-sunset) 100%);
    color: var(--p4t-white);
    padding: 80px 50px;
    text-align: center;
    border-radius: 16px;
    margin: 80px 50px;
  }
  
  .p4t-cta h2 {
    color: var(--p4t-white);
    margin-bottom: 20px;
  }
  
  .p4t-cta p {
    color: var(--p4t-white);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0.95;
  }
  
  .p4t-cta .p4t-btn-secondary {
    background-color: var(--p4t-white);
    color: var(--p4t-primary-orange);
    border-color: var(--p4t-white);
  }
  
  .p4t-cta .p4t-btn-secondary:hover {
    background-color: var(--p4t-off-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  }
  

  /* Mobile Devices */
  @media (max-width: 768px) {
    body {
      font-size: 16px;
    }
   
    .p4t-section {
      padding: 50px 0;
    }
    
    .p4t-hero {
      min-height: 500px;
      padding: 60px 20px;
    }
    
    .p4t-hero-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .p4t-hero-buttons .p4t-btn {
      width: 100%;
      max-width: 300px;
    }
    
    .p4t-cards-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .p4t-stats {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .p4t-footer {
      padding: 40px 0 0;
    }
    
    .p4t-footer-content {
      grid-template-columns: 1fr; /* Stack on mobile */
      gap: 30px;
      padding: 0 30px 40px;
    }
    
    .p4t-footer-divider {
      display: none; /* Hide dividers on mobile */
    }
    
    .p4t-footer-column {
      padding: 0;
      text-align: center;
    }
    
    .p4t-footer-logo img {
      max-width: 150px;
    }
    
    .p4t-social-links {
      justify-content: center;
    }
    
    .p4t-footer-bottom {
      padding: 10px 20px; /* Very compact on mobile */
      font-size: 0.85rem;
    }
  }
  
  /* Large Desktop - Full HD */
  @media (min-width: 1920px) {
    .p4t-hero-slider {
      height: 1080px; /* Native Full HD height */
    }
  }
  
  /* Standard Desktop - Maintain 16:9 */
  @media (min-width: 1200px) and (max-width: 1919px) {
    .p4t-hero-slider {
      height: calc(100vw * 0.5625); /* 16:9 aspect ratio */
      max-height: 1080px;
    }
  }
  
  /* Medium Desktop/Laptop - Maintain 16:9 */
  @media (min-width: 992px) and (max-width: 1199px) {
    .p4t-hero-slider {
      height: calc(100vw * 0.5625); /* 16:9 aspect ratio */
      max-height: 700px;
    }
    
    .p4t-floating-stats {
      margin-top: -90px;
    }
    
    .p4t-stat-card {
      padding: 35px 25px;
    }
    
    .p4t-stat-number {
      font-size: 2.5rem;
    }
  }
  
  /* Tablet Landscape - Maintain 16:9 */
  @media (min-width: 769px) and (max-width: 991px) {
    .p4t-hero-slider {
      height: calc(100vw * 0.5625); /* 16:9 aspect ratio */
      max-height: 600px;
    }
    
    .p4t-floating-stats {
      margin-top: -70px;
      padding: 0 30px;
    }
    
    .p4t-floating-stats-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    
    .p4t-stat-card {
      padding: 30px 20px;
    }
    
    .p4t-stat-icon {
      width: 60px;
      height: 60px;
    }
    
    .p4t-stat-icon i {
      font-size: 1.75rem;
    }
    
    .p4t-stat-number {
      font-size: 2.25rem;
    }
    
    .p4t-stat-label {
      font-size: 0.9rem;
    }
  }
  
  /* Hero Slider Mobile Responsive */
  @media (max-width: 768px) {
    .p4t-hero-slider {
      height: calc(100vw * 0.5625); /* 16:9 aspect ratio */
      max-height: 500px;
    }
    
    .p4t-floating-stats {
      margin-top: -60px;
      padding: 0 20px;
    }
    
    .p4t-floating-stats-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
    
    .p4t-stat-card {
      padding: 25px 15px;
    }
    
    .p4t-stat-icon {
      width: 55px;
      height: 55px;
      margin-bottom: 15px;
    }
    
    .p4t-stat-icon i {
      font-size: 1.5rem;
    }
    
    .p4t-stat-number {
      font-size: 2rem;
    }
    
    .p4t-stat-label {
      font-size: 0.85rem;
    }
    
    .p4t-slider-control {
      width: 45px;
      height: 45px;
      font-size: 1.1rem;
    }
    
    .p4t-slider-prev {
      left: 15px;
    }
    
    .p4t-slider-next {
      right: 15px;
    }
    
    .p4t-slider-dots {
      bottom: 20px;
      gap: 8px;
    }
    
    .p4t-dot {
      width: 10px;
      height: 10px;
    }
    
    .p4t-dot.p4t-dot-active {
      width: 28px;
    }
  }
  
  /* Small Mobile Devices */
  @media (max-width: 480px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.625rem; }
    
    .p4t-hero h1 { font-size: 2rem; }
    
    /* Hero Slider Extra Small Mobile */
    .p4t-hero-slider {
      height: calc(100vw * 0.5625); /* 16:9 aspect ratio */
      max-height: 350px;
    }
    
    .p4t-floating-stats {
      margin-top: -50px;
      padding: 0 15px;
    }
    
    .p4t-floating-stats-container {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    
    .p4t-stat-card {
      padding: 20px 15px;
      display: flex;
      align-items: center;
      text-align: left;
    }
    
    .p4t-stat-icon {
      width: 50px;
      height: 50px;
      margin: 0 15px 0 0;
      flex-shrink: 0;
    }
    
    .p4t-stat-icon i {
      font-size: 1.25rem;
    }
    
    .p4t-stat-number {
      font-size: 1.75rem;
      margin-bottom: 5px;
    }
    
    .p4t-stat-label {
      font-size: 0.8rem;
    }
    
    .p4t-slider-control {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
    
    .p4t-slider-prev {
      left: 10px;
    }
    
    .p4t-slider-next {
      right: 10px;
    }
    
    .p4t-btn {
      padding: 12px 25px;
      font-size: 1rem;
    }
    
    .p4t-btn-large {
      padding: 14px 30px;
      font-size: 1.05rem;
    }
    
    .p4t-card {
      padding: 30px 20px;
    }
    
    .p4t-stat-item h3 {
      font-size: 2.75rem;
    }
  }
  
  /* ============================================
     UTILITY CLASSES
     ============================================ */
  .p4t-text-center { text-align: center; }
  .p4t-text-left { text-align: left; }
  .p4t-text-right { text-align: right; }
  
  .p4t-mb-20 { margin-bottom: 20px; }
  .p4t-mb-40 { margin-bottom: 40px; }
  .p4t-mb-60 { margin-bottom: 60px; }
  
  .p4t-mt-20 { margin-top: 20px; }
  .p4t-mt-40 { margin-top: 40px; }
  .p4t-mt-60 { margin-top: 60px; }
  
  .p4t-highlight {
    color: var(--p4t-primary-orange);
  }
  
  .p4t-container-fluid {
    width: 100%;
    max-width: 100%;
  }
  
  .p4t-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
  }
  
  .p4t-col {
    padding: 0 15px;
    flex: 1;
  }
  
  /* ============================================
     ACCESSIBILITY
     ============================================ */
  .p4t-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
  
  /* Focus States */
  a:focus,
  button:focus,
  .p4t-btn:focus {
    outline: 3px solid var(--p4t-primary-orange);
    outline-offset: 3px;
  }
  
  /* Skip to Main Content */
  .p4t-skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--p4t-primary-orange);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
  }
  
  .p4t-skip-link:focus {
    top: 0;
  }

/* ============================================
   P4T WHY SECTION - OPTIMIZED
   Image + Text layout with balanced spacing
   ============================================ */

.p4t-why-section {
    padding: 50px 0;
    background-color: #ffffff;
    width: 100%;
    position: relative;
}

.p4t-why-content {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    align-items: flex-start;
    gap: 45px;
}

/* ============================================
   IMAGE COLUMN - 45% width - STICKY
   ============================================ */

.p4t-why-image-column {
    flex: 0 0 45%;
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.p4t-why-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.p4t-why-image-wrapper:hover {
    transform: none !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
}

.p4t-why-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
                                rgba(0,0,0,0) 0%, 
                                rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.p4t-why-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.p4t-why-image-wrapper:hover img {
    transform: none !important;
}

/* ============================================
   TEXT COLUMN - 55% width
   ============================================ */

.p4t-why-text-column {
    flex: 1;
    min-width: 0;
}

.p4t-why-header {
    width: 100%;
}

.p4t-why-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-why-badge i {
    font-size: 0.9rem;
}

.p4t-why-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.p4t-why-accent {
    color: #F37021;
    position: relative;
}

/* ============================================
   DESCRIPTION
   ============================================ */

.p4t-why-description {
    margin-bottom: 24px;
}

.p4t-why-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 16px;
    padding-left: 20px;
    border-left: 4px solid #F37021;
}

.p4t-why-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 14px;
    text-align: justify;
}

.p4t-why-body:last-child {
    margin-bottom: 0;
}

/* Highlight box */
.p4t-why-highlight {
    background-color: #1A5F7A;
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 16px;
}

.p4t-why-highlight p {
    font-size: 1rem;
    font-style: bold;
    color: #ffffff;
    margin: 0;
    line-height: 1.7;
    text-align: left;
}

.p4t-why-highlight strong {
    color: var(--p4t-yellow);
    font-weight: 700;
}

/* Stats Row */
.p4t-why-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.p4t-why-stat-item {
    background-color: #fdf6f1;
    border-left: 3px solid #F37021;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    text-align: left;
}

.p4t-why-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #F37021;
    line-height: 1;
    margin-bottom: 6px;
}

.p4t-why-stat-label {
    font-size: 0.85rem;
    color: #777777;
    font-weight: 500;
    line-height: 1.3;
}

/* ============================================
   CTA BUTTON
   ============================================ */

.p4t-why-cta {
    margin-top: 24px;
}

.p4t-why-cta .p4-general-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.p4t-why-cta .p4-general-button i {
    transition: transform 0.3s ease;
}

.p4t-why-cta .p4-general-button:hover i {
    transform: translateX(5px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .p4t-why-section {
        padding: 40px 0;
    }
    
    .p4t-why-content {
        padding: 0 40px;
        flex-direction: column;
        gap: 35px;
    }
    
    .p4t-why-image-column {
        flex: 0 0 100%;
        max-width: 600px;
        margin: 0 auto;
        position: relative;
        top: auto;
    }

    .p4t-why-badge {
        margin: 0 auto 14px auto;
    }
    
    .p4t-why-title {
        font-size: 2.4rem;
        text-align: center;
        margin-bottom: 18px;
    }
    
    .p4t-why-intro {
        font-size: 1.15rem;
        text-align: center;
        padding-left: 0;
        border-left: none;
        border-top: 4px solid #F37021;
        padding-top: 15px;
        margin-bottom: 14px;
    }
    
    .p4t-why-body {
        font-size: 1.05rem;
        text-align: left;
        margin-bottom: 12px;
    }

    .p4t-why-highlight {
        margin-top: 14px;
        padding: 18px 22px;
    }

    .p4t-why-highlight p {
        font-size: 0.98rem;
    }

    .p4t-why-stats {
        gap: 14px;
        margin-top: 20px;
    }

    .p4t-why-stat-number {
        font-size: 1.8rem;
    }

    .p4t-why-description {
        margin-bottom: 20px;
    }
    
    .p4t-why-cta {
        text-align: center;
        margin-top: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-why-section {
        padding: 35px 0;
    }
    
    .p4t-why-content {
        padding: 0 25px;
        gap: 28px;
    }
    
    .p4t-why-image-wrapper {
        border-radius: 8px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    }

    .p4t-why-badge {
        font-size: 0.75rem;
        padding: 7px 18px;
        margin-bottom: 12px;
    }
    
    .p4t-why-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .p4t-why-intro {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 12px;
        padding-top: 12px;
    }
    
    .p4t-why-body {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 11px;
    }

    .p4t-why-highlight {
        margin-top: 12px;
        padding: 16px 20px;
    }

    .p4t-why-highlight p {
        font-size: 0.95rem;
    }

    .p4t-why-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 18px;
    }

    .p4t-why-stat-item {
        padding: 14px 18px;
    }

    .p4t-why-stat-number {
        font-size: 1.6rem;
    }

    .p4t-why-description {
        margin-bottom: 18px;
    }
    
    .p4t-why-cta {
        margin-top: 18px;
    }
    
    .p4t-why-cta .p4-general-button {
        width: 100%;
        justify-content: center;
        padding: 15px 28px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-why-section {
        padding: 30px 0;
    }
    
    .p4t-why-content {
        padding: 0 20px;
        gap: 24px;
    }

    .p4t-why-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
    }
    
    .p4t-why-title {
        font-size: 1.75rem;
        margin-bottom: 14px;
    }
    
    .p4t-why-intro {
        font-size: 1.05rem;
        padding-top: 10px;
        margin-bottom: 10px;
    }
    
    .p4t-why-body {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .p4t-why-highlight {
        padding: 14px 18px;
        margin-top: 10px;
    }

    .p4t-why-highlight p {
        font-size: 0.9rem;
    }

    .p4t-why-stats {
        gap: 10px;
        margin-top: 16px;
    }

    .p4t-why-stat-item {
        padding: 12px 16px;
    }

    .p4t-why-stat-number {
        font-size: 1.5rem;
        margin-bottom: 4px;
    }

    .p4t-why-stat-label {
        font-size: 0.8rem;
    }

    .p4t-why-description {
        margin-bottom: 16px;
    }
    
    .p4t-why-cta {
        margin-top: 16px;
    }

    .p4t-why-cta .p4-general-button {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}
 /* ============================================
   INTERVENTION BLOCK SECTION - CSS
   ============================================ */

.p4t-intervention-block {
  padding: 80px 0 0 0;
  background-color: var(--p4t-yellow);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.p4t-intervention-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

/* Main Title */
.p4t-intervention-main-title {
  font-family: var(--p4t-heading-font);
  font-size: 3rem;
  font-weight: 700;
  color: var(--p4t-primary-black);
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.2;
}

.p4t-intervention-accent {
  color: var(--p4t-primary-orange);
}

/* Section Subtitle */
.p4t-intervention-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--p4t-primary-black);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Tabs Container - Like Menu Bar */
.p4t-intervention-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 0;
  flex-wrap: wrap;
  background-color: var(--p4t-white);
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Individual Tab Button - Menu Style */
.p4t-intervention-tab {
  background-color: var(--p4t-white);
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--p4t-primary-black);
  padding: 20px 35px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  position: relative;
}

.p4t-intervention-tab:hover {
  background-color: var(--p4t-very-light-gray);
  color: var(--p4t-primary-orange);
}

.p4t-intervention-tab.active {
  background-color: var(--p4t-primary-orange);
  color: var(--p4t-white);
  border-bottom-color: var(--p4t-primary-orange);
}

/* Content Wrapper */
.p4t-intervention-content-wrapper {
  position: relative;
  background-color: var(--p4t-white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Individual Content Section */
.p4t-intervention-content {
  display: grid;
  grid-template-columns: 55% 45%;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
.p4t-intervention-content.active {
max-height: 2000px;
opacity: 1;
}
/* Text Side (55% - Left Side with Dark Background) */
.p4t-intervention-text {
padding: 60px 50px;
display: flex;
flex-direction: column;
justify-content: center;
background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
color: var(--p4t-white);
}
.p4t-intervention-title {
font-family: var(--p4t-heading-font);
font-size: 2.2rem;
font-weight: 700;
color: var(--p4t-white);
margin-bottom: 25px;
line-height: 1.3;
}
.p4t-intervention-description {
font-size: 1.05rem;
line-height: 1.8;
color: rgba(255, 255, 255, 0.85);
margin-bottom: 30px;
}
/* Features List */
.p4t-intervention-features {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
margin-bottom: 30px;
}
.p4t-intervention-feature {
display: flex;
align-items: center;
gap: 10px;
color: var(--p4t-white);
font-size: 0.95rem;
font-weight: 500;
}
.p4t-intervention-feature i {
color: var(--p4t-primary-orange);
font-size: 1.1rem;
}
/* Call-to-Action Button */
.p4t-intervention-btn {
display: inline-flex;
align-items: center;
gap: 12px;
background-color: var(--p4t-primary-orange);
color: var(--p4t-white);
padding: 16px 35px;
border-radius: 5px;
font-size: 1rem;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
align-self: flex-start;
box-shadow: 0 5px 15px rgba(243, 112, 33, 0.3);
}
.p4t-intervention-btn:hover {
background-color: #e0651d;
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(243, 112, 33, 0.4);
}
/* Image Side (45% - Right Side) */
.p4t-intervention-image {
position: relative;
overflow: hidden;
background-color: var(--p4t-light-gray);
}
.p4t-intervention-image img {
width: 100%;
height: 100%;
min-height: 500px;
object-fit: cover;
}
/* ============================================
RESPONSIVE STYLES
============================================ */
/* Tablet (768px - 991px) */
@media (max-width: 991px) {
.p4t-intervention-block {
padding: 60px 0 0 0;
}
.p4t-intervention-container {
padding: 0 30px;
}
.p4t-intervention-main-title {
font-size: 2.5rem;
margin-bottom: 20px;
}
.p4t-intervention-subtitle {
font-size: 1.15rem;
margin-bottom: 35px;
}
.p4t-intervention-tabs {
gap: 5px;
}
.p4t-intervention-tab {
padding: 18px 25px;
font-size: 0.95rem;
}
.p4t-intervention-content {
grid-template-columns: 1fr;
}
.p4t-intervention-image {
order: -1;
}
.p4t-intervention-image img {
min-height: 350px;
}
.p4t-intervention-text {
padding: 40px 30px;
}
.p4t-intervention-title {
font-size: 2rem;
}
.p4t-intervention-description {
font-size: 1rem;
}
.p4t-intervention-features {
grid-template-columns: 1fr;
}
}
/* Mobile (< 768px) - Accordion Style */
@media (max-width: 767px) {
.p4t-intervention-block {
padding: 50px 0 50px 0;
}
.p4t-intervention-container {
padding: 0 20px;
}
.p4t-intervention-main-title {
font-size: 2rem;
margin-bottom: 20px;
}
.p4t-intervention-subtitle {
font-size: 1.1rem;
margin-bottom: 30px;
text-align: left;
}
/* MOBILE: Tabs become accordion buttons */
.p4t-intervention-tabs {
flex-direction: column;
gap: 0;
border-radius: 10px;
background-color: transparent;
box-shadow: none;
}
.p4t-intervention-tab {
width: 100%;
text-align: left;
padding: 18px 20px;
font-size: 0.95rem;
border: none;
border-bottom: none;
background-color: var(--p4t-white);
margin-bottom: 2px;
border-radius: 8px;
position: relative;
}
.p4t-intervention-tab::after {
content: '\f078';
font-family: 'Font Awesome 6 Free';
font-weight: 900;
position: absolute;
right: 20px;
transition: transform 0.3s ease;
}
.p4t-intervention-tab.active::after {
transform: rotate(180deg);
}
/* MOBILE: Content wrapper becomes transparent */
.p4t-intervention-content-wrapper {
background-color: transparent;
box-shadow: none;
}
/* MOBILE: Hide default content on load */
.p4t-intervention-content.p4t-desktop-active {
max-height: 0;
opacity: 0;
}
.p4t-intervention-content.p4t-desktop-active.active {
max-height: 2000px;
opacity: 1;
}
/* MOBILE: Content appears below clicked button */
.p4t-intervention-content {
grid-template-columns: 1fr;
border-radius: 0 0 8px 8px;
margin-bottom: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.p4t-intervention-image {
order: -1;
}
.p4t-intervention-image img {
min-height: 280px;
}
.p4t-intervention-text {
padding: 30px 20px;
}
.p4t-intervention-title {
font-size: 1.75rem;
margin-bottom: 20px;
}
.p4t-intervention-description {
font-size: 0.95rem;
margin-bottom: 25px;
}
.p4t-intervention-btn {
width: 100%;
justify-content: center;
padding: 16px 25px;
}
}
/* Small Mobile (< 576px) */
@media (max-width: 575px) {
.p4t-intervention-block {
padding: 40px 0 40px 0;
}
.p4t-intervention-main-title {
font-size: 1.75rem;
}
.p4t-intervention-subtitle {
font-size: 1rem;
}
.p4t-intervention-tab {
padding: 16px 15px;
font-size: 0.9rem;
}
.p4t-intervention-image img {
min-height: 250px;
}
.p4t-intervention-title {
font-size: 1.5rem;
}
.p4t-intervention-description {
font-size: 0.9rem;
}
.p4t-intervention-feature {
font-size: 0.9rem;
}
}

/*===================
General button use
====================*/
.p4-general-button {
    background-color: var(--p4t-primary-orange);
    color: var(--p4t-white);
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--p4t-primary-orange);
    white-space: nowrap;
  }
  
  @keyframes p4t-fadeIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .p4-general-button:hover {
    background-color: var(--p4t-sunset);
    border-color: var(--p4t-sunset);
    color: var(--p4t-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 112, 33, 0.3);
  }

  /*===========================
  P4T Principle
  ============================*/
 .p4t-principle{
  color: var(--p4t-primary-orange);
  font-weight: bold; 
 }

 .p4t-principle-teal-bacground{
  color: var(--p4t-yellow);
  font-weight: bold; 
 }
  

 /* ============================================
   P4T THEMATIC AREAS & WHO WE ARE SECTION
   Optimized with balanced spacing
   ============================================ */

.p4t-thematic-areas-whoweare {
    padding: 50px 0;
    background-color: #1A5F7A;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Decorative background circles */
.p4t-thematic-areas-whoweare::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 60px solid rgba(255, 255, 255, 0.03);
    top: -100px;
    right: -100px;
}

.p4t-thematic-areas-whoweare::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 45px solid rgba(255, 255, 255, 0.03);
    bottom: -80px;
    left: -60px;
}

.p4t-thematic-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    gap: 45px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

/* ============================================
   LEFT COLUMN: THEMATIC AREAS SLIDESHOW (40%)
   ============================================ */

.p4t-thematic-slideshow-column {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
}

.p4t-thematic-slideshow-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

/* Yellow accent for text on teal background */
.p4t-thematic-accent {
    color: #F9C74F;
}

/* Slideshow Wrapper */
.p4t-thematic-slideshow-wrapper {
    position: relative;
    background-color: #ffffff;
    border-radius: 14px;
    padding: 38px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    flex-grow: 1;
    min-height: 420px;
    display: flex;
    align-items: center;
}

/* Individual Slide */
.p4t-thematic-slide {
    position: absolute;
    top: 38px;
    left: 32px;
    right: 32px;
    bottom: 38px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.p4t-thematic-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 1;
}

/* Icon */
.p4t-thematic-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #F37021 0%, #E85D04 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.p4t-thematic-icon i {
    font-size: 2rem;
    color: #ffffff;
}

/* Slide Title */
.p4t-thematic-slide-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

/* Slide Description */
.p4t-thematic-slide-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
    text-align: center;
    margin-bottom: 24px;
}

/* Slide Button */
.p4t-thematic-slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #F37021;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    align-self: center;
    border: 2px solid #F37021;
}

.p4t-thematic-slide-btn:visited {
    color: #ffffff;
}

.p4t-thematic-slide-btn:hover {
    background-color: #E85D04;
    border-color: #E85D04;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 112, 33, 0.4);
}

.p4t-thematic-slide-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.p4t-thematic-slide-btn:hover i {
    transform: translateX(4px);
}

/* Navigation Controls */
.p4t-thematic-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 20px;
}

.p4t-thematic-prev,
.p4t-thematic-next {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
}

.p4t-thematic-prev:hover,
.p4t-thematic-next:hover {
    background-color: #F37021;
    border-color: #F37021;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(243, 112, 33, 0.4);
}

.p4t-thematic-prev i,
.p4t-thematic-next i {
    font-size: 1rem;
}

/* Slide Indicators */
.p4t-thematic-indicators {
    display: flex;
    gap: 10px;
    align-items: center;
}

.p4t-indicator {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.p4t-indicator:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.p4t-indicator.active {
    background-color: #F9C74F;
    border-color: #F9C74F;
    width: 28px;
    border-radius: 5px;
}

/* ============================================
   RIGHT COLUMN: WHO WE ARE (60%)
   ============================================ */

.p4t-whoweare-column {
    flex: 1;
    display: flex;
    align-items: center;
}

.p4t-whoweare-content {
    width: 100%;
}

.p4t-whoweare-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Description */
.p4t-whoweare-description {
    margin-bottom: 28px;
}

.p4t-whoweare-intro {
    font-size: 1.25rem;
    line-height: 1.75;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 16px;
}

.p4t-whoweare-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 14px;
}

.p4t-whoweare-body:last-child {
    margin-bottom: 0;
}

/* Stats Section */
.p4t-whoweare-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
    padding: 24px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.p4t-whoweare-stat-item {
    text-align: center;
}

.p4t-whoweare-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #F9C74F;
    margin-bottom: 6px;
    line-height: 1;
}

.p4t-whoweare-stat-label {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.3;
}

/* CTA Button */
.p4t-whoweare-cta {
    margin-top: 24px;
}

.p4t-whoweare-cta .p4-general-button {
    background-color: #F9C74F;
    color: #1a1a1a;
    border-color: #F9C74F;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(249, 199, 79, 0.3);
}

.p4t-whoweare-cta .p4-general-button:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.p4t-whoweare-cta .p4-general-button i {
    transition: transform 0.3s ease;
}

.p4t-whoweare-cta .p4-general-button:hover i {
    transform: translateX(5px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .p4t-thematic-areas-whoweare {
        padding: 40px 0;
    }
    
    .p4t-thematic-container {
        flex-direction: column;
        padding: 0 40px;
        gap: 40px;
    }
    
    .p4t-thematic-slideshow-column {
        flex: 0 0 100%;
    }
    
    .p4t-thematic-slideshow-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .p4t-thematic-slideshow-wrapper {
        min-height: 400px;
        padding: 32px 28px;
    }

    .p4t-thematic-slide {
        top: 32px;
        left: 28px;
        right: 28px;
        bottom: 32px;
    }
    
    .p4t-whoweare-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .p4t-whoweare-intro {
        font-size: 1.15rem;
        text-align: center;
        margin-bottom: 14px;
    }
    
    .p4t-whoweare-body {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .p4t-whoweare-description {
        margin-bottom: 24px;
    }
    
    .p4t-whoweare-stats {
        gap: 18px;
        padding: 20px 0;
        margin-bottom: 20px;
    }
    
    .p4t-whoweare-stat-number {
        font-size: 2.2rem;
    }
    
    .p4t-whoweare-cta {
        text-align: center;
        margin-top: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-thematic-areas-whoweare {
        padding: 35px 0;
    }
    
    .p4t-thematic-container {
        padding: 0 25px;
        gap: 32px;
    }
    
    .p4t-thematic-slideshow-title {
        font-size: 1.75rem;
        margin-bottom: 18px;
    }
    
    .p4t-thematic-slideshow-wrapper {
        padding: 35px 22px;
        min-height: 480px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .p4t-thematic-slide {
        position: absolute;
        top: 35px;
        left: 22px;
        right: 22px;
        bottom: 35px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .p4t-thematic-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 18px;
        flex-shrink: 0;
    }
    
    .p4t-thematic-icon i {
        font-size: 1.85rem;
    }
    
    .p4t-thematic-slide-title {
        font-size: 1.35rem;
        margin-bottom: 14px;
    }
    
    .p4t-thematic-slide-description {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 20px;
    }
    
    .p4t-thematic-slide-btn {
        padding: 11px 24px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    
    .p4t-thematic-controls {
        margin-top: 18px;
        gap: 16px;
    }
    
    .p4t-thematic-prev,
    .p4t-thematic-next {
        width: 40px;
        height: 40px;
    }
    
    .p4t-whoweare-title {
        font-size: 2rem;
        margin-bottom: 18px;
    }
    
    .p4t-whoweare-intro {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 12px;
    }
    
    .p4t-whoweare-body {
        font-size: 0.98rem;
        line-height: 1.7;
        margin-bottom: 11px;
    }

    .p4t-whoweare-description {
        margin-bottom: 20px;
    }
    
    .p4t-whoweare-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px 0;
        margin-bottom: 18px;
    }
    
    .p4t-whoweare-stat-number {
        font-size: 2rem;
    }
    
    .p4t-whoweare-stat-label {
        font-size: 0.88rem;
    }

    .p4t-whoweare-cta {
        margin-top: 18px;
    }
    
    .p4t-whoweare-cta .p4-general-button {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-thematic-areas-whoweare {
        padding: 30px 0;
    }

    .p4t-thematic-container {
        padding: 0 20px;
        gap: 28px;
    }
    
    .p4t-thematic-slideshow-title {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }
    
    .p4t-thematic-slideshow-wrapper {
        padding: 32px 18px;
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .p4t-thematic-slide {
        position: absolute;
        top: 32px;
        left: 18px;
        right: 18px;
        bottom: 32px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .p4t-thematic-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
        flex-shrink: 0;
    }
    
    .p4t-thematic-icon i {
        font-size: 1.75rem;
    }
    
    .p4t-thematic-slide-title {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    
    .p4t-thematic-slide-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .p4t-thematic-slide-btn {
        flex-shrink: 0;
    }

    .p4t-thematic-controls {
        gap: 14px;
    }
    
    .p4t-whoweare-title {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }
    
    .p4t-whoweare-intro {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }
    
    .p4t-whoweare-body {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .p4t-whoweare-description {
        margin-bottom: 18px;
    }

    .p4t-whoweare-stats {
        gap: 14px;
        padding: 16px 0;
        margin-bottom: 16px;
    }
    
    .p4t-whoweare-stat-number {
        font-size: 1.8rem;
        margin-bottom: 4px;
    }

    .p4t-whoweare-stat-label {
        font-size: 0.85rem;
    }

    .p4t-whoweare-cta {
        margin-top: 16px;
    }
    
    .p4t-whoweare-cta .p4-general-button {
        padding: 13px 24px;
        font-size: 0.95rem;
    }
}
/* ============================================
   P4T IMPACT AREA - OPTIMIZED
   Auto home section with balanced spacing
   ============================================ */

.p4t-impact-area-auto-home {
    padding: 50px 0;
    background-color: #ffffff;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.p4t-impact-area-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.p4t-impact-area-header {
    text-align: center;
    margin-bottom: 38px;
}

.p4t-impact-area-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.p4t-impact-area-accent {
    color: #F37021;
    position: relative;
}

.p4t-impact-area-subtitle {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #555555;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   IMPACT CARDS GRID
   ============================================ */

.p4t-impact-area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 38px;
}

/* Individual Card */
.p4t-impact-area-card {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.p4t-impact-area-card.p4t-impact-area-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.p4t-impact-area-card-inner {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.p4t-impact-area-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(243, 112, 33, 0.15);
    border-color: #F37021;
}

/* Highlighted Card (Money Card) */
.p4t-impact-area-card-highlight .p4t-impact-area-card-inner {
    background-color: #F37021;
    box-shadow: 0 12px 40px rgba(243, 112, 33, 0.3);
}

.p4t-impact-area-card-highlight .p4t-impact-area-icon {
    background-color: #ffffff;
}

.p4t-impact-area-card-highlight .p4t-impact-area-icon i {
    color: #F37021;
}

.p4t-impact-area-card-highlight .p4t-impact-area-number,
.p4t-impact-area-card-highlight .p4t-impact-area-label,
.p4t-impact-area-card-highlight .p4t-impact-area-description {
    color: #ffffff;
}

/* Card Icon */
.p4t-impact-area-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    transition: transform 0.3s ease;
}

.p4t-impact-area-card-inner:hover .p4t-impact-area-icon {
    transform: scale(1.1);
}

.p4t-impact-area-icon i {
    font-size: 1.9rem;
    color: #ffffff;
}

/* Icon Color Variations - ALL ORANGE BRAND COLOR */
.p4t-impact-area-icon-education,
.p4t-impact-area-icon-nutrition,
.p4t-impact-area-icon-mental,
.p4t-impact-area-icon-health,
.p4t-impact-area-icon-medical,
.p4t-impact-area-icon-livelihoods,
.p4t-impact-area-icon-water,
.p4t-impact-area-icon-awareness {
    background-color: #F37021;
}

/* Card Number */
.p4t-impact-area-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: #F37021;
    margin-bottom: 10px;
    line-height: 1;
}

/* Card Label */
.p4t-impact-area-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Card Description */
.p4t-impact-area-description {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #666666;
    flex-grow: 1;
}

/* ============================================
   TOTAL IMPACT BANNER (TOP POSITION)
   ============================================ */

.p4t-impact-area-total-banner {
    background-color: #1A5F7A;
    border-radius: 14px;
    padding: 32px 38px;
    margin-bottom: 38px;
    box-shadow: 0 10px 40px rgba(26, 95, 122, 0.2);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.p4t-impact-area-total-banner.p4t-impact-area-banner-visible {
    opacity: 1;
    transform: translateY(0);
}

.p4t-impact-area-total-content {
    display: flex;
    align-items: center;
    gap: 35px;
}

.p4t-impact-area-total-left {
    flex-shrink: 0;
}

.p4t-impact-area-total-icon {
    width: 90px;
    height: 90px;
    background-color: #F9C74F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p4t-impact-area-total-icon i {
    font-size: 2.8rem;
    color: #1a1a1a;
}

.p4t-impact-area-total-right {
    flex: 1;
}

.p4t-impact-area-total-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.p4t-impact-area-total-item {
    text-align: center;
    flex: 1;
}

.p4t-impact-area-total-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.p4t-impact-area-total-final .p4t-impact-area-total-number {
    color: #F9C74F;
    font-size: 3.2rem;
}

.p4t-impact-area-total-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.p4t-impact-area-total-divider {
    width: 2px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .p4t-impact-area-auto-home {
        padding: 40px 0;
    }
    
    .p4t-impact-area-container {
        padding: 0 40px;
    }

    .p4t-impact-area-header {
        margin-bottom: 32px;
    }
    
    .p4t-impact-area-title {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }
    
    .p4t-impact-area-subtitle {
        font-size: 1.08rem;
    }
    
    .p4t-impact-area-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        margin-bottom: 32px;
    }
    
    .p4t-impact-area-total-banner {
        padding: 28px 32px;
        margin-bottom: 32px;
    }
    
    .p4t-impact-area-total-content {
        gap: 28px;
    }
    
    .p4t-impact-area-total-icon {
        width: 75px;
        height: 75px;
    }
    
    .p4t-impact-area-total-icon i {
        font-size: 2.4rem;
    }
    
    .p4t-impact-area-total-stats {
        gap: 16px;
    }
    
    .p4t-impact-area-total-number {
        font-size: 2.4rem;
    }
    
    .p4t-impact-area-total-final .p4t-impact-area-total-number {
        font-size: 2.8rem;
    }
    
    .p4t-impact-area-total-label {
        font-size: 0.82rem;
    }
    
    .p4t-impact-area-total-divider {
        height: 48px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-impact-area-auto-home {
        padding: 35px 0;
    }
    
    .p4t-impact-area-container {
        padding: 0 25px;
    }
    
    .p4t-impact-area-header {
        margin-bottom: 28px;
    }
    
    .p4t-impact-area-title {
        font-size: 2.2rem;
        margin-bottom: 14px;
    }
    
    .p4t-impact-area-subtitle {
        font-size: 1.05rem;
    }
    
    .p4t-impact-area-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 28px;
    }
    
    .p4t-impact-area-card-inner {
        padding: 26px 18px;
    }
    
    .p4t-impact-area-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 14px;
    }
    
    .p4t-impact-area-icon i {
        font-size: 1.75rem;
    }
    
    .p4t-impact-area-number {
        font-size: 2.1rem;
        margin-bottom: 9px;
    }
    
    .p4t-impact-area-label {
        font-size: 1rem;
        margin-bottom: 9px;
    }
    
    .p4t-impact-area-description {
        font-size: 0.87rem;
    }
    
    .p4t-impact-area-total-banner {
        padding: 26px 20px;
        margin-bottom: 28px;
    }
    
    .p4t-impact-area-total-content {
        flex-direction: column;
        gap: 22px;
    }
    
    .p4t-impact-area-total-icon {
        width: 75px;
        height: 75px;
    }
    
    .p4t-impact-area-total-icon i {
        font-size: 2.4rem;
    }
    
    .p4t-impact-area-total-stats {
        flex-direction: column;
        gap: 18px;
    }
    
    .p4t-impact-area-total-number {
        font-size: 2.3rem;
        margin-bottom: 6px;
    }
    
    .p4t-impact-area-total-final .p4t-impact-area-total-number {
        font-size: 2.7rem;
    }
    
    .p4t-impact-area-total-label {
        font-size: 0.82rem;
    }
    
    .p4t-impact-area-total-divider {
        width: 70px;
        height: 2px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-impact-area-auto-home {
        padding: 30px 0;
    }

    .p4t-impact-area-container {
        padding: 0 20px;
    }

    .p4t-impact-area-header {
        margin-bottom: 24px;
    }
    
    .p4t-impact-area-title {
        font-size: 1.9rem;
        margin-bottom: 12px;
    }
    
    .p4t-impact-area-subtitle {
        font-size: 1rem;
    }

    .p4t-impact-area-grid {
        gap: 14px;
        margin-bottom: 24px;
    }

    .p4t-impact-area-card-inner {
        padding: 24px 16px;
    }
    
    .p4t-impact-area-number {
        font-size: 1.95rem;
    }
    
    .p4t-impact-area-label {
        font-size: 0.98rem;
    }

    .p4t-impact-area-total-banner {
        padding: 24px 18px;
        margin-bottom: 24px;
    }

    .p4t-impact-area-total-content {
        gap: 20px;
    }
    
    .p4t-impact-area-total-number {
        font-size: 2.1rem;
    }
    
    .p4t-impact-area-total-final .p4t-impact-area-total-number {
        font-size: 2.4rem;
    }
    
    .p4t-impact-area-total-label {
        font-size: 0.78rem;
    }
}
/* ============================================
   P4T RESPONSE TO PROBLEMS SECTION - OPTIMIZED
   Diagonal split design with balanced spacing
   ============================================ */

.p4t-response-to-problems {
    background-color: #B83B5E;
    padding: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.p4t-response-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    min-height: 650px;
}

/* ============================================
   LEFT SIDE: IMAGE COLUMN (40%)
   ============================================ */

.p4t-response-image-column {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.p4t-response-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.p4t-response-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.p4t-response-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
                                rgba(184, 59, 94, 0.3) 0%, 
                                rgba(0, 0, 0, 0.4) 100%);
}

/* Floating Action Buttons on Image */
.p4t-response-floating-actions {
    position: absolute;
    bottom: 32px;
    left: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
}

.p4t-response-floating-action {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.p4t-response-floating-action.p4t-response-action-visible {
    opacity: 1;
    transform: translateX(0);
}

.p4t-response-floating-action:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 50px rgba(243, 112, 33, 0.3);
    border-color: #F37021;
    background-color: rgba(255, 255, 255, 1);
}

.p4t-response-floating-action-icon {
    width: 48px;
    height: 48px;
    background-color: #F37021;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.p4t-response-floating-action:hover .p4t-response-floating-action-icon {
    transform: scale(1.1) rotate(5deg);
}

.p4t-response-floating-action-icon i {
    font-size: 1.35rem;
    color: #ffffff;
}

.p4t-response-floating-action-text {
    flex: 1;
}

.p4t-response-floating-action-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 3px;
}

.p4t-response-floating-action-desc {
    font-size: 0.82rem;
    color: #666666;
    font-weight: 500;
    line-height: 1.3;
}

.p4t-response-floating-action-arrow {
    width: 34px;
    height: 34px;
    background-color: #F37021;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.p4t-response-floating-action:hover .p4t-response-floating-action-arrow {
    transform: translateX(5px);
}

.p4t-response-floating-action-arrow i {
    font-size: 0.85rem;
    color: #ffffff;
}

/* ============================================
   RIGHT SIDE: CONTENT COLUMN (60%)
   ============================================ */

.p4t-response-content-column {
    flex: 1;
    background-color: #B83B5E;
    display: flex;
    align-items: center;
}

.p4t-response-content-inner {
    padding: 50px 50px;
    width: 100%;
}

/* Section Badge */
.p4t-response-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.p4t-response-badge i {
    font-size: 1rem;
}

/* Title */
.p4t-response-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 28px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.p4t-response-accent {
    color: #F9C74F;
}

/* ============================================
   PROGRAMS GRID
   ============================================ */

.p4t-response-programs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.p4t-response-program-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.p4t-response-program-item.p4t-response-visible {
    opacity: 1;
    transform: translateX(0);
}

.p4t-response-program-icon {
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.p4t-response-program-icon i {
    font-size: 1.45rem;
    color: #B83B5E;
}

.p4t-response-program-text {
    flex: 1;
}

.p4t-response-program-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 7px;
    line-height: 1.3;
}

.p4t-response-program-desc {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}

/* ============================================
   WHAT MAKES US DIFFERENT BOX
   ============================================ */

.p4t-response-difference {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 26px 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-top: 28px;
}

.p4t-response-difference-icon {
    width: 56px;
    height: 56px;
    background-color: #F9C74F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.p4t-response-difference-icon i {
    font-size: 1.7rem;
    color: #1a1a1a;
}

.p4t-response-difference-content {
    flex: 1;
}

.p4t-response-difference-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.p4t-response-difference-text {
    font-size: 1.02rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.p4t-response-difference-text strong {
    color: #F9C74F;
    font-weight: 700;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .p4t-response-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .p4t-response-image-column {
        flex: 0 0 380px;
        width: 100%;
    }
    
    .p4t-response-content-inner {
        padding: 40px 40px;
    }
    
    .p4t-response-badge {
        margin-bottom: 18px;
    }
    
    .p4t-response-title {
        font-size: 2.3rem;
        margin-bottom: 24px;
    }

    .p4t-response-programs {
        gap: 18px;
        margin-bottom: 24px;
    }
    
    .p4t-response-floating-actions {
        gap: 11px;
        bottom: 24px;
        left: 22px;
        right: 22px;
    }
    
    .p4t-response-floating-action {
        padding: 14px 16px;
    }
    
    .p4t-response-floating-action-icon {
        width: 44px;
        height: 44px;
    }
    
    .p4t-response-floating-action-icon i {
        font-size: 1.25rem;
    }
    
    .p4t-response-floating-action-title {
        font-size: 1rem;
    }
    
    .p4t-response-floating-action-desc {
        font-size: 0.78rem;
    }
    
    .p4t-response-floating-action-arrow {
        width: 31px;
        height: 31px;
    }

    .p4t-response-difference {
        padding: 24px 26px;
        margin-top: 24px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-response-image-column {
        flex: 0 0 340px;
    }
    
    .p4t-response-content-inner {
        padding: 35px 25px;
    }
    
    .p4t-response-badge {
        font-size: 0.82rem;
        padding: 8px 18px;
        margin-bottom: 16px;
    }
    
    .p4t-response-title {
        font-size: 2rem;
        margin-bottom: 22px;
    }
    
    .p4t-response-programs {
        gap: 16px;
        margin-bottom: 22px;
    }
    
    .p4t-response-program-item {
        gap: 16px;
    }
    
    .p4t-response-program-icon {
        width: 44px;
        height: 44px;
    }
    
    .p4t-response-program-icon i {
        font-size: 1.3rem;
    }
    
    .p4t-response-program-title {
        font-size: 1.15rem;
        margin-bottom: 6px;
    }
    
    .p4t-response-program-desc {
        font-size: 0.95rem;
    }
    
    .p4t-response-floating-actions {
        gap: 10px;
        bottom: 18px;
        left: 16px;
        right: 16px;
    }
    
    .p4t-response-floating-action {
        padding: 13px 15px;
    }
    
    .p4t-response-floating-action-icon {
        width: 41px;
        height: 41px;
    }
    
    .p4t-response-floating-action-icon i {
        font-size: 1.15rem;
    }
    
    .p4t-response-floating-action-title {
        font-size: 0.95rem;
    }
    
    .p4t-response-floating-action-desc {
        font-size: 0.74rem;
    }
    
    .p4t-response-floating-action-arrow {
        width: 29px;
        height: 29px;
    }
    
    .p4t-response-floating-action-arrow i {
        font-size: 0.75rem;
    }
    
    .p4t-response-difference {
        flex-direction: column;
        padding: 22px 24px;
        gap: 14px;
        margin-top: 22px;
    }
    
    .p4t-response-difference-icon {
        width: 52px;
        height: 52px;
    }
    
    .p4t-response-difference-icon i {
        font-size: 1.55rem;
    }
    
    .p4t-response-difference-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    
    .p4t-response-difference-text {
        font-size: 0.98rem;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-response-image-column {
        flex: 0 0 300px;
    }
    
    .p4t-response-content-inner {
        padding: 30px 20px;
    }

    .p4t-response-badge {
        font-size: 0.78rem;
        padding: 7px 16px;
    }
    
    .p4t-response-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .p4t-response-programs {
        gap: 14px;
        margin-bottom: 20px;
    }
    
    .p4t-response-program-title {
        font-size: 1.1rem;
    }
    
    .p4t-response-program-desc {
        font-size: 0.9rem;
    }

    .p4t-response-floating-actions {
        gap: 9px;
        bottom: 16px;
        left: 14px;
        right: 14px;
    }

    .p4t-response-difference {
        padding: 20px 22px;
        margin-top: 20px;
    }
    
    .p4t-response-difference-title {
        font-size: 1.15rem;
    }
    
    .p4t-response-difference-text {
        font-size: 0.93rem;
    }
}

/* ============================================
   PARTNERS FOR P4T SLIDER SECTION - OPTIMIZED
   Infinite horizontal scroll with balanced spacing
   ============================================ */

.partners-for-p4t-sliders {
    background-color: #ffffff;
    padding: 50px 0;
    width: 100%;
    overflow: hidden;
}

.partners-for-p4t-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.partners-for-p4t-header {
    text-align: center;
    margin-bottom: 28px;
}

.partners-for-p4t-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.partners-for-p4t-accent {
    color: #F37021;
}

.partners-for-p4t-subtitle {
    font-size: 1.1rem;
    line-height: 1.65;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   INFINITE SCROLL SETUP
   ============================================ */

.partners-for-p4t-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

/* Scrolling content wrapper */
.partners-for-p4t-scroll-content {
    display: inline-flex;
    gap: 20px;
    animation: partners-for-p4t-infinite-scroll 60s linear infinite;
}

/* Pause animation on hover */
.partners-for-p4t-scroll-content:hover {
    animation-play-state: paused;
}

/* Scroll animation - starts from left edge */
@keyframes partners-for-p4t-infinite-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ============================================
   LOGO ITEMS
   ============================================ */

.partners-for-p4t-logo-item {
    width: 200px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 12px;
    transition: all 0.3s ease;
}

.partners-for-p4t-logo-item:hover {
    transform: scale(1.08);
}

.partners-for-p4t-logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: transform 0.3s ease;
}

.partners-for-p4t-logo-item:hover img {
    transform: scale(1.04);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .partners-for-p4t-sliders {
        padding: 40px 0;
    }
    
    .partners-for-p4t-container {
        padding: 0 40px;
    }
    
    .partners-for-p4t-header {
        margin-bottom: 24px;
    }
    
    .partners-for-p4t-title {
        font-size: 2.4rem;
        margin-bottom: 10px;
    }

    .partners-for-p4t-subtitle {
        font-size: 1.05rem;
    }

    .partners-for-p4t-scroll-container {
        padding: 8px 0;
    }
    
    .partners-for-p4t-scroll-content {
        gap: 18px;
    }
    
    .partners-for-p4t-logo-item {
        width: 190px;
        height: 114px;
        padding: 11px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .partners-for-p4t-sliders {
        padding: 35px 0;
    }
    
    .partners-for-p4t-container {
        padding: 0 25px;
    }
    
    .partners-for-p4t-header {
        margin-bottom: 20px;
    }
    
    .partners-for-p4t-title {
        font-size: 2rem;
        margin-bottom: 9px;
    }

    .partners-for-p4t-subtitle {
        font-size: 1rem;
    }

    .partners-for-p4t-scroll-container {
        padding: 7px 0;
    }
    
    .partners-for-p4t-scroll-content {
        gap: 16px;
        animation-duration: 45s;
    }
    
    .partners-for-p4t-logo-item {
        width: 180px;
        height: 108px;
        padding: 10px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .partners-for-p4t-sliders {
        padding: 30px 0;
    }

    .partners-for-p4t-container {
        padding: 0 20px;
    }

    .partners-for-p4t-header {
        margin-bottom: 18px;
    }
    
    .partners-for-p4t-title {
        font-size: 1.75rem;
        margin-bottom: 8px;
    }

    .partners-for-p4t-subtitle {
        font-size: 0.98rem;
    }

    .partners-for-p4t-scroll-container {
        padding: 6px 0;
    }
    
    .partners-for-p4t-scroll-content {
        gap: 14px;
    }
    
    .partners-for-p4t-logo-item {
        width: 170px;
        height: 102px;
        padding: 9px;
    }
}


/* ============================================
   P4T HERO PAGES SLIDE - REVISED
   SIMPLE HERO WITH LEFT-ALIGNED TEXT
   ============================================ */

/* ============================================
   P4T HERO PAGES SLIDE
   SIMPLE HERO WITH CENTERED TEXT
   ============================================ */

.p4t-hero-pages-slide {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-margin-top: 70px;
}

/* Background Image */
.p4t-hero-pages-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    filter: brightness(1.1);
}

/* Dark Overlay */
.p4t-hero-pages-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

/* Hero Content */
.p4t-hero-pages-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    color: #FFFFFF;
    padding: 0 20px;
}

.p4t-hero-pages-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.2px;
    margin: 0;
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.p4t-hero-pages-highlight {
    color: #FDB833;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .p4t-hero-pages-slide {
        height: 420px;
    }

    .p4t-hero-pages-title {
        font-size: 3.5rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-hero-pages-slide {
        height: 370px;
    }

    .p4t-hero-pages-title {
        font-size: 2.8rem;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-hero-pages-slide {
        height: 320px;
    }

    .p4t-hero-pages-title {
        font-size: 2.2rem;
    }
}



/* ============================================
   GENERAL P4T USE NARRATIVE 1 - OPTIMIZED
   Clean white - stacked + split last paragraph
   ============================================ */

.general-p4t-use-narrative1 {
    background-color: #ffffff;
    padding: 50px 0;
}

.general-p4t-use-narrative1-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

/* ============================================
   BADGE
   ============================================ */

.general-p4t-use-narrative1-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.general-p4t-use-narrative1-badge i {
    font-size: 0.85rem;
}

/* ============================================
   STACKED PARAGRAPHS
   ============================================ */

.general-p4t-use-narrative1-text {
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444444;
}

.general-p4t-use-narrative1-text strong {
    color: #F37021;
    font-weight: 700;
}

/* Divider between stacked paragraphs and split block */
.general-p4t-use-narrative1-divider {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    margin: 32px 0;
    border-radius: 2px;
}

/* ============================================
   SPLIT BLOCK - LAST PARAGRAPH
   Image left, text right
   ============================================ */

.general-p4t-use-narrative1-split {
    display: flex;
    align-items: center;
    gap: 45px;
}

.general-p4t-use-narrative1-img {
    flex: 0 0 400px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.general-p4t-use-narrative1-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.general-p4t-use-narrative1-split-text {
    flex: 1;
}

.general-p4t-use-narrative1-split-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 20px;
}

/* Quote callout inside split */
.general-p4t-use-narrative1-quote {
    border-left: 4px solid #F37021;
    padding: 16px 22px;
    background-color: #fdf6f1;
    border-radius: 0 8px 8px 0;
}

.general-p4t-use-narrative1-quote p {
    font-size: 1.1rem;
    font-weight: 700;
    font-style: italic;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.55;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .general-p4t-use-narrative1 {
        padding: 40px 0;
    }

    .general-p4t-use-narrative1-container {
        padding: 0 40px;
    }

    .general-p4t-use-narrative1-badge {
        margin-bottom: 18px;
    }

    .general-p4t-use-narrative1-text {
        margin-bottom: 14px;
    }

    .general-p4t-use-narrative1-divider {
        margin: 28px 0;
    }

    .general-p4t-use-narrative1-split {
        gap: 35px;
    }

    .general-p4t-use-narrative1-img {
        flex: 0 0 340px;
        height: 360px;
    }

    .general-p4t-use-narrative1-split-text p {
        margin-bottom: 18px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .general-p4t-use-narrative1 {
        padding: 35px 0;
    }

    .general-p4t-use-narrative1-container {
        padding: 0 25px;
    }

    .general-p4t-use-narrative1-badge {
        margin-bottom: 16px;
    }

    .general-p4t-use-narrative1-text {
        margin-bottom: 12px;
    }

    .general-p4t-use-narrative1-divider {
        margin: 24px 0;
    }

    .general-p4t-use-narrative1-split {
        flex-direction: column;
        gap: 28px;
    }

    .general-p4t-use-narrative1-img {
        flex: none;
        width: 100%;
        height: 270px;
    }

    .general-p4t-use-narrative1-split-text p {
        margin-bottom: 16px;
    }

    .general-p4t-use-narrative1-quote {
        padding: 14px 20px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .general-p4t-use-narrative1 {
        padding: 30px 0;
    }

    .general-p4t-use-narrative1-container {
        padding: 0 20px;
    }

    .general-p4t-use-narrative1-text,
    .general-p4t-use-narrative1-split-text p {
        font-size: 1rem;
    }

    .general-p4t-use-narrative1-img {
        height: 240px;
    }

    .general-p4t-use-narrative1-quote p {
        font-size: 1.05rem;
    }
}

/* ============================================
   P4T OUR VISION TAG SECTION - OPTIMIZED
   Tagline · Mission · Vision · Values
   ============================================ */

.p4t-our-vision-tag {
    background-color: #ffffff;
    padding: 0 0 50px 0;
}

/* ============================================
   TAGLINE BANNER
   ============================================ */

.p4t-our-vision-tag-banner {
    background: linear-gradient(135deg, #1A5F7A 0%, #0d3d4f 100%);
    padding: 50px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

/* Decorative circles */
.p4t-our-vision-tag-banner::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 55px solid rgba(255, 255, 255, 0.04);
    top: -110px;
    left: -90px;
}

.p4t-our-vision-tag-banner::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 45px solid rgba(255, 255, 255, 0.04);
    bottom: -70px;
    right: -55px;
}

.p4t-our-vision-tag-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(243, 112, 33, 0.2);
    border: 1px solid rgba(243, 112, 33, 0.5);
    color: #F37021;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.p4t-our-vision-tag-banner h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.p4t-our-vision-tag-banner h2 span {
    color: #F37021;
}

/* ============================================
   CONTAINER
   ============================================ */

.p4t-our-vision-tag-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

/* ============================================
   MISSION & VISION CARDS
   ============================================ */

.p4t-our-vision-tag-mv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 50px;
}

.p4t-our-vision-tag-card {
    border-radius: 14px;
    padding: 38px 35px;
    position: relative;
    overflow: hidden;
}

.p4t-our-vision-tag-card-mission {
    background-color: #F37021;
}

.p4t-our-vision-tag-card-vision {
    background-color: #1A5F7A;
}

/* Large background letter */
.p4t-our-vision-tag-card::before {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 9.5rem;
    position: absolute;
    bottom: -28px;
    right: 18px;
    opacity: 0.07;
    color: #ffffff;
    line-height: 1;
}

.p4t-our-vision-tag-card-mission::before {
    content: 'M';
}

.p4t-our-vision-tag-card-vision::before {
    content: 'V';
}

.p4t-our-vision-tag-card-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: #ffffff;
    margin-bottom: 18px;
}

.p4t-our-vision-tag-card h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
}

.p4t-our-vision-tag-card p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ============================================
   VALUES SECTION
   ============================================ */

.p4t-our-vision-tag-values-header {
    text-align: center;
    margin-bottom: 35px;
}

.p4t-our-vision-tag-values-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.p4t-our-vision-tag-values-header h2 span {
    color: #F37021;
}

.p4t-our-vision-tag-values-header p {
    font-size: 1rem;
    color: #777777;
    margin: 0;
}

.p4t-our-vision-tag-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.p4t-our-vision-tag-value {
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 30px 26px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.p4t-our-vision-tag-value:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    border-color: #F37021;
}

/* Top accent line on hover */
.p4t-our-vision-tag-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #F37021;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.p4t-our-vision-tag-value:hover::before {
    transform: scaleX(1);
}

.p4t-our-vision-tag-value-icon {
    width: 50px;
    height: 50px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

/* Each value card gets a distinct icon color */
.p4t-our-vision-tag-value:nth-child(1) .p4t-our-vision-tag-value-icon { background-color: rgba(243, 112, 33, 0.12); color: #F37021; }
.p4t-our-vision-tag-value:nth-child(2) .p4t-our-vision-tag-value-icon { background-color: rgba(26, 95, 122, 0.12); color: #1A5F7A; }
.p4t-our-vision-tag-value:nth-child(3) .p4t-our-vision-tag-value-icon { background-color: rgba(107, 163, 104, 0.12); color: #6BA368; }
.p4t-our-vision-tag-value:nth-child(4) .p4t-our-vision-tag-value-icon { background-color: rgba(184, 59, 94, 0.12); color: #B83B5E; }
.p4t-our-vision-tag-value:nth-child(5) .p4t-our-vision-tag-value-icon { background-color: rgba(253, 184, 51, 0.15); color: #d49a00; }
.p4t-our-vision-tag-value:nth-child(6) .p4t-our-vision-tag-value-icon { background-color: rgba(135, 206, 235, 0.2); color: #2a9fd6; }

.p4t-our-vision-tag-value h4 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

.p4t-our-vision-tag-value p {
    font-size: 0.93rem;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .p4t-our-vision-tag {
        padding-bottom: 40px;
    }

    .p4t-our-vision-tag-banner {
        padding: 40px 40px;
        margin-bottom: 40px;
    }

    .p4t-our-vision-tag-banner h2 {
        font-size: 2.5rem;
    }

    .p4t-our-vision-tag-container {
        padding: 0 40px;
    }

    .p4t-our-vision-tag-mv {
        gap: 20px;
        margin-bottom: 40px;
    }

    .p4t-our-vision-tag-card {
        padding: 34px 30px;
    }

    .p4t-our-vision-tag-values-header {
        margin-bottom: 30px;
    }

    .p4t-our-vision-tag-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .p4t-our-vision-tag-value {
        padding: 28px 24px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-our-vision-tag {
        padding-bottom: 35px;
    }

    .p4t-our-vision-tag-banner {
        padding: 35px 25px;
        margin-bottom: 35px;
    }

    .p4t-our-vision-tag-banner h2 {
        font-size: 2rem;
    }

    .p4t-our-vision-tag-label {
        margin-bottom: 16px;
    }

    .p4t-our-vision-tag-container {
        padding: 0 25px;
    }

    .p4t-our-vision-tag-mv {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 35px;
    }

    .p4t-our-vision-tag-card {
        padding: 32px 26px;
    }

    .p4t-our-vision-tag-values-header {
        margin-bottom: 26px;
    }

    .p4t-our-vision-tag-values-header h2 {
        font-size: 1.9rem;
        margin-bottom: 9px;
    }

    .p4t-our-vision-tag-values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .p4t-our-vision-tag-value {
        padding: 26px 22px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-our-vision-tag {
        padding-bottom: 30px;
    }

    .p4t-our-vision-tag-banner {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .p4t-our-vision-tag-banner h2 {
        font-size: 1.7rem;
    }

    .p4t-our-vision-tag-container {
        padding: 0 20px;
    }

    .p4t-our-vision-tag-card {
        padding: 28px 24px;
    }

    .p4t-our-vision-tag-values-header h2 {
        font-size: 1.75rem;
    }

    .p4t-our-vision-tag-value {
        padding: 24px 20px;
    }

    .p4t-our-vision-tag-value h4 {
        font-size: 1rem;
    }

    .p4t-our-vision-tag-value p {
        font-size: 0.9rem;
    }
}


/* ============================================
   WHY P4T EXISTS SECTION - SIMPLIFIED WITH MAP
   Static map right + continuous narrative left
   ============================================ */

.why-p4t-exists {
    background-color: #ffffff;
    padding: 50px 0;
    position: relative;
}

.why-p4t-exists-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.why-p4t-exists-header {
    margin-bottom: 38px;
}

.why-p4t-exists-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.why-p4t-exists-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.why-p4t-exists-header h2 span {
    color: #F37021;
}

.why-p4t-exists-header-line {
    width: 50px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
}

/* ============================================
   MAIN CONTENT - TWO COLUMNS
   ============================================ */

.why-p4t-exists-content {
    display: flex;
    gap: 45px;
    align-items: flex-start;
}

/* ============================================
   LEFT: NARRATIVE TEXT (55%)
   ============================================ */

.why-p4t-exists-narrative {
    flex: 1;
    min-width: 0;
    min-height: 850px;
}

.why-p4t-exists-paragraph {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 24px;
}

.why-p4t-exists-paragraph:last-of-type {
    margin-bottom: 28px;
}

/* Highlight Box */
.why-p4t-exists-highlight {
    background: linear-gradient(135deg, #1A5F7A 0%, #0d3d4f 100%);
    border-radius: 14px;
    padding: 28px 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-p4t-exists-highlight-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(243, 112, 33, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-p4t-exists-highlight-icon i {
    font-size: 1.3rem;
    color: #F37021;
}

.why-p4t-exists-highlight-content {
    flex: 1;
}

.why-p4t-exists-highlight-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #ffffff;
    margin-bottom: 20px;
}

.why-p4t-exists-highlight-text strong {
    color: #F9C74F;
    font-weight: 700;
}

.why-p4t-exists-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #F37021;
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.why-p4t-exists-btn:hover {
    background-color: #F9C74F;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 199, 79, 0.3);
}

.why-p4t-exists-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.why-p4t-exists-btn:hover i {
    transform: translateX(4px);
}

/* ============================================
   RIGHT: STICKY MAP (45%)
   ============================================ */

.why-p4t-exists-map-column {
    flex: 0 0 45%;
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.why-p4t-exists-map-wrapper {
    position: relative;
    width: 100%;
}

.why-p4t-exists-map-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Map Source Citation */
.why-p4t-exists-map-source {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #777777;
    line-height: 1.4;
}

.why-p4t-exists-map-source i {
    font-size: 0.8rem;
    color: #F37021;
    flex-shrink: 0;
}

.why-p4t-exists-map-source a {
    color: #1A5F7A;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.why-p4t-exists-map-source a:hover {
    color: #F37021;
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .why-p4t-exists {
        padding: 40px 0;
    }

    .why-p4t-exists-container {
        padding: 0 40px;
    }

    .why-p4t-exists-header {
        margin-bottom: 32px;
    }

    .why-p4t-exists-content {
        flex-direction: column;
        gap: 40px;
    }

    .why-p4t-exists-narrative {
        flex: none;
        width: 100%;
        min-height: auto;
    }

    .why-p4t-exists-map-column {
        flex: none;
        width: 100%;
        position: relative;
        top: auto;
        max-width: 700px;
        margin: 0 auto;
    }

    .why-p4t-exists-paragraph {
        margin-bottom: 20px;
    }

    .why-p4t-exists-highlight {
        padding: 24px 28px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .why-p4t-exists {
        padding: 35px 0;
    }

    .why-p4t-exists-container {
        padding: 0 25px;
    }

    .why-p4t-exists-header {
        margin-bottom: 28px;
    }

    .why-p4t-exists-header h2 {
        font-size: 2rem;
    }

    /* Make content wrapper display items individually */
    .why-p4t-exists-content {
        flex-direction: column;
        gap: 0;
    }

    /* Narrative wrapper becomes regular container */
    .why-p4t-exists-narrative {
        display: contents;
    }

    /* Order individual paragraphs with reduced spacing */
    .why-p4t-exists-paragraph {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .why-p4t-exists-paragraph:nth-of-type(1) { order: 1; }
    .why-p4t-exists-paragraph:nth-of-type(2) { order: 2; margin-bottom: 28px; }
    .why-p4t-exists-paragraph:nth-of-type(3) { order: 4; margin-top: 28px; }
    .why-p4t-exists-paragraph:nth-of-type(4) { order: 5; }
    .why-p4t-exists-paragraph:nth-of-type(5) { order: 6; margin-bottom: 24px; }

    /* Map appears after 2nd paragraph */
    .why-p4t-exists-map-column {
        order: 3;
        margin-bottom: 0;
    }

    .why-p4t-exists-map-source {
        font-size: 0.8rem;
        margin-top: 10px;
    }

    .why-p4t-exists-map-source i {
        font-size: 0.75rem;
    }

    /* Highlight box at the end */
    .why-p4t-exists-highlight {
        order: 7;
        flex-direction: column;
        padding: 22px 24px;
        gap: 16px;
    }

    .why-p4t-exists-highlight-text {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .why-p4t-exists-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .why-p4t-exists {
        padding: 30px 0;
    }

    .why-p4t-exists-container {
        padding: 0 20px;
    }

    .why-p4t-exists-header h2 {
        font-size: 1.75rem;
    }

    .why-p4t-exists-content {
        gap: 0;
    }

    /* Even tighter spacing on small mobile */
    .why-p4t-exists-paragraph {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 14px;
    }

    .why-p4t-exists-paragraph:nth-of-type(2) { margin-bottom: 24px; }
    .why-p4t-exists-paragraph:nth-of-type(3) { margin-top: 24px; }
    .why-p4t-exists-paragraph:nth-of-type(5) { margin-bottom: 20px; }

    .why-p4t-exists-highlight {
        padding: 20px 22px;
    }
}

/* ============================================
   P4T OUR APPROACH SECTION
   Solution · Thematic Areas · Where We Work
   ============================================ */

.p4t-our-approach {
    background-color: #ffffff;
    padding: 50px 0;
}

.p4t-our-approach-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.p4t-our-approach-header {
    margin-bottom: 40px;
}

.p4t-our-approach-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-our-approach-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.p4t-our-approach-header h2 span {
    color: #F37021;
}

.p4t-our-approach-intro {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555555;
    max-width: 860px;
    margin-bottom: 0;
}

.p4t-our-approach-header-line {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 18px;
}

/* ============================================
   THEMATIC TABS
   ============================================ */

.p4t-our-approach-tabs {
    margin-bottom: 50px;
}

.p4t-our-approach-tab-nav {
    display: flex;
    border-bottom: 2px solid #eeeeee;
    margin-bottom: 0;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.p4t-our-approach-tab-nav::-webkit-scrollbar {
    display: none;
}

.p4t-our-approach-tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #888888;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.p4t-our-approach-tab-btn i {
    font-size: 1rem;
    transition: color 0.3s ease;
}

.p4t-our-approach-tab-btn:hover {
    color: #F37021;
}

.p4t-our-approach-tab-btn.p4t-our-approach-tab-active {
    color: #F37021;
    border-bottom-color: #F37021;
}

/* Tab Panels */
.p4t-our-approach-tab-panels {
    border: 1px solid #eeeeee;
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.p4t-our-approach-tab-panel {
    display: none;
    padding: 38px 40px;
}

.p4t-our-approach-tab-panel.p4t-our-approach-panel-active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.p4t-our-approach-panel-text h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.2px;
}

.p4t-our-approach-panel-text h3 span {
    color: #F37021;
}

.p4t-our-approach-panel-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 0;
}

.p4t-our-approach-panel-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background-color: #fdf6f1;
    border-left: 3px solid #F37021;
    padding: 14px 20px;
    border-radius: 0 8px 8px 0;
    margin-top: 18px;
}

.p4t-our-approach-panel-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #F37021;
    line-height: 1;
}

.p4t-our-approach-panel-stat-label {
    font-size: 0.9rem;
    color: #777777;
    font-weight: 500;
}

.p4t-our-approach-panel-img {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.p4t-our-approach-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   WHAT MAKES P4T DIFFERENT
   ============================================ */

.p4t-our-approach-different {
    background-color: #1A5F7A;
    border-radius: 16px;
    padding: 42px 45px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.p4t-our-approach-different::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 55px solid rgba(255, 255, 255, 0.04);
    top: -100px;
    right: -80px;
}

.p4t-our-approach-different::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 40px solid rgba(255, 255, 255, 0.04);
    bottom: -60px;
    left: -40px;
}

.p4t-our-approach-different-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(243, 112, 33, 0.2);
    border: 1px solid rgba(243, 112, 33, 0.5);
    color: #F37021;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.p4t-our-approach-different h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.p4t-our-approach-different p {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    max-width: 900px;
}

/* ============================================
   WHERE WE WORK
   ============================================ */

.p4t-our-approach-where {
    margin-bottom: 0;
}

.p4t-our-approach-where-header {
    margin-bottom: 32px;
}

.p4t-our-approach-where-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.p4t-our-approach-where-header h2 span {
    color: #F37021;
}

.p4t-our-approach-where-line {
    width: 45px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
}

.p4t-our-approach-where-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.p4t-our-approach-where-block {
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 28px 24px;
}

.p4t-our-approach-where-block-icon {
    width: 46px;
    height: 46px;
    background-color: rgba(243, 112, 33, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #F37021;
    margin-bottom: 16px;
}

.p4t-our-approach-where-block h4 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #F37021;
    margin-bottom: 10px;
}

.p4t-our-approach-where-block p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 0;
}

.p4t-our-approach-where-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p4t-our-approach-where-block ul li {
    font-size: 0.98rem;
    line-height: 1.8;
    color: #444444;
    padding-left: 16px;
    position: relative;
}

.p4t-our-approach-where-block ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #F37021;
    font-weight: 700;
}


/* Panel Button */
.p4t-our-approach-panel-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    background-color: #F37021;
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.p4t-our-approach-panel-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.p4t-our-approach-panel-btn:hover {
    background-color: #E85D04;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(243, 112, 33, 0.3);
}

.p4t-our-approach-panel-btn:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .p4t-our-approach {
        padding: 40px 0;
    }

    .p4t-our-approach-container {
        padding: 0 40px;
    }

    .p4t-our-approach-header {
        margin-bottom: 35px;
    }

    .p4t-our-approach-header h2 {
        font-size: 2.3rem;
    }

    .p4t-our-approach-tabs {
        margin-bottom: 40px;
    }

    .p4t-our-approach-tab-btn {
        padding: 14px 20px;
        font-size: 0.88rem;
    }

    .p4t-our-approach-tab-panel {
        padding: 32px 35px;
    }

    .p4t-our-approach-tab-panel.p4t-our-approach-panel-active {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .p4t-our-approach-different {
        padding: 38px 35px;
        margin-bottom: 40px;
    }

    .p4t-our-approach-where-header {
        margin-bottom: 28px;
    }

    .p4t-our-approach-where-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-our-approach {
        padding: 35px 0;
    }

    .p4t-our-approach-container {
        padding: 0 25px;
    }

    .p4t-our-approach-header {
        margin-bottom: 30px;
    }

    .p4t-our-approach-header h2 {
        font-size: 1.9rem;
    }

    .p4t-our-approach-tabs {
        margin-bottom: 35px;
    }

    .p4t-our-approach-tab-btn {
        padding: 12px 16px;
        font-size: 0.82rem;
        gap: 7px;
    }

    .p4t-our-approach-tab-panel {
        padding: 25px 22px;
    }

    .p4t-our-approach-tab-panel.p4t-our-approach-panel-active {
        gap: 24px;
    }

    .p4t-our-approach-panel-text h3 {
        margin-bottom: 14px;
    }

    .p4t-our-approach-different {
        padding: 32px 24px;
        margin-bottom: 35px;
    }

    .p4t-our-approach-different h3 {
        font-size: 1.35rem;
    }

    .p4t-our-approach-where-header {
        margin-bottom: 25px;
    }

    .p4t-our-approach-where-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .p4t-our-approach-where-block {
        padding: 24px 20px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-our-approach {
        padding: 30px 0;
    }

    .p4t-our-approach-container {
        padding: 0 20px;
    }

    .p4t-our-approach-header h2 {
        font-size: 1.65rem;
    }

    .p4t-our-approach-tab-btn span {
        display: none;
    }

    .p4t-our-approach-tab-btn {
        padding: 12px 18px;
        justify-content: center;
    }

    .p4t-our-approach-tab-panel {
        padding: 24px 18px;
    }

    .p4t-our-approach-panel-img {
        height: 240px;
    }

    .p4t-our-approach-different {
        padding: 28px 20px;
    }

    .p4t-our-approach-where-block {
        padding: 22px 18px;
    }
}

/* ============================================
   P4T EDUCATION FOR TRANSFORMATION SECTION
   Clean two-paragraph editorial layout
   ============================================ */

.p4t-education-for-transformation {
    background-color: #ffffff;
    padding: 50px 0;
}

.p4t-education-for-transformation-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.p4t-education-for-transformation-header {
    margin-bottom: 35px;
}

.p4t-education-for-transformation-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-education-for-transformation-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.p4t-education-for-transformation-header h2 span {
    color: #F37021;
}

.p4t-education-for-transformation-header-line {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 16px;
}

/* ============================================
   TWO-COLUMN PARAGRAPH LAYOUT
   ============================================ */

.p4t-education-for-transformation-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
}

/* ============================================
   LEFT COLUMN
   ============================================ */

.p4t-education-for-transformation-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.p4t-education-for-transformation-left p {
    font-size: 1rem;
    line-height: 1.95;
    color: #555555;
    margin: 0;
}

.p4t-education-for-transformation-left p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Stat callout */
.p4t-education-for-transformation-stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
    background-color: #fdf6f1;
    border-left: 3px solid #F37021;
    padding: 16px 22px;
    border-radius: 0 8px 8px 0;
}

.p4t-education-for-transformation-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #F37021;
    line-height: 1;
}

.p4t-education-for-transformation-stat-label {
    font-size: 0.92rem;
    color: #777777;
    font-weight: 500;
}

/* ============================================
   RIGHT COLUMN
   ============================================ */

.p4t-education-for-transformation-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.p4t-education-for-transformation-right p {
    font-size: 1rem;
    line-height: 1.95;
    color: #555555;
    margin: 0;
}

.p4t-education-for-transformation-right p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Differentiator highlight block */
.p4t-education-for-transformation-highlight {
    background-color: #1A5F7A;
    border-radius: 10px;
    padding: 22px 24px;
}

.p4t-education-for-transformation-highlight p {
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    margin: 0;
    line-height: 1.7;
}

/* Offer list */
.p4t-education-for-transformation-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.p4t-education-for-transformation-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
    padding-left: 18px;
    position: relative;
}

.p4t-education-for-transformation-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #F37021;
}

.p4t-education-for-transformation-list li strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Closing statement */
.p4t-education-for-transformation-closing {
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 22px 24px;
}

.p4t-education-for-transformation-closing p {
    font-size: 1rem;
    line-height: 1.85;
    color: #444444;
    margin: 0;
    font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .p4t-education-for-transformation {
        padding: 40px 0;
    }

    .p4t-education-for-transformation-container {
        padding: 0 40px;
    }

    .p4t-education-for-transformation-header {
        margin-bottom: 30px;
    }

    .p4t-education-for-transformation-header h2 {
        font-size: 2.3rem;
    }

    .p4t-education-for-transformation-body {
        gap: 35px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-education-for-transformation {
        padding: 35px 0;
    }

    .p4t-education-for-transformation-container {
        padding: 0 25px;
    }

    .p4t-education-for-transformation-header {
        margin-bottom: 28px;
    }

    .p4t-education-for-transformation-header h2 {
        font-size: 1.9rem;
    }

    .p4t-education-for-transformation-body {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .p4t-education-for-transformation-left,
    .p4t-education-for-transformation-right {
        gap: 16px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-education-for-transformation {
        padding: 30px 0;
    }

    .p4t-education-for-transformation-container {
        padding: 0 20px;
    }

    .p4t-education-for-transformation-header h2 {
        font-size: 1.65rem;
    }
}


/* ============================================
   P4T EDUCATION FOR TRANSFORMATION ACTION
   Tabbed Programmes with Slideshows
   ============================================ */

.p4t-education-for-transformation-action {
    background-color: #fafafa;
    padding: 50px 0;
}

.p4t-education-for-transformation-action-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.p4t-education-for-transformation-action-header {
    margin-bottom: 32px;
}

.p4t-education-for-transformation-action-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-education-for-transformation-action-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.p4t-education-for-transformation-action-header h2 span {
    color: #F37021;
}

.p4t-education-for-transformation-action-header-line {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 16px;
}

/* ============================================
   TAB NAVIGATION
   ============================================ */

.p4t-education-for-transformation-action-tab-nav {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 12px 12px 0 0;
}

.p4t-education-for-transformation-action-tab-nav::-webkit-scrollbar {
    display: none;
}

.p4t-education-for-transformation-action-tab-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 16px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #888888;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.p4t-education-for-transformation-action-tab-btn i {
    font-size: 0.95rem;
}

.p4t-education-for-transformation-action-tab-btn:hover {
    color: #F37021;
}

.p4t-education-for-transformation-action-tab-btn.p4t-efta-tab-active {
    color: #F37021;
    border-bottom-color: #F37021;
}

/* ============================================
   TAB PANELS WRAPPER
   ============================================ */

.p4t-education-for-transformation-action-panels {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 14px 14px;
}

.p4t-education-for-transformation-action-panel {
    display: none;
    padding: 38px 45px;
}

.p4t-education-for-transformation-action-panel.p4t-efta-panel-active {
    display: block;
}

/* ============================================
   PANEL INNER LAYOUT — IMAGE + TEXT
   ============================================ */

.p4t-efta-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
}

/* Reverse — image right, text left */
.p4t-efta-panel-grid.p4t-efta-reverse {
    direction: rtl;
}

.p4t-efta-panel-grid.p4t-efta-reverse > * {
    direction: ltr;
}

/* ============================================
   SLIDESHOW
   ============================================ */

.p4t-efta-slideshow {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.p4t-efta-slides {
    position: relative;
    width: 100%;
    height: 400px;
}

.p4t-efta-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.p4t-efta-slide.p4t-efta-slide-active {
    opacity: 1;
}

.p4t-efta-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slide controls */
.p4t-efta-slide-controls {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 5;
}

.p4t-efta-slide-prev,
.p4t-efta-slide-next {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    color: #1a1a1a;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.p4t-efta-slide-prev:hover,
.p4t-efta-slide-next:hover {
    background-color: #F37021;
    color: #ffffff;
}

.p4t-efta-slide-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.p4t-efta-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.p4t-efta-dot.p4t-efta-dot-active {
    background-color: #ffffff;
    transform: scale(1.3);
}

/* Single image (no slideshow) */
.p4t-efta-single-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.p4t-efta-single-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   TEXT CONTENT
   ============================================ */

.p4t-efta-panel-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.p4t-efta-panel-text h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.2px;
}

.p4t-efta-panel-text h3 span {
    color: #F37021;
}

.p4t-efta-panel-text p {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #555555;
    margin: 0;
}

.p4t-efta-panel-text p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Sub-heading inside panel */
.p4t-efta-subheading {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #F37021;
    margin: 0;
}

/* Stat callout */
.p4t-efta-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background-color: #fdf6f1;
    border-left: 3px solid #F37021;
    padding: 14px 20px;
    border-radius: 0 8px 8px 0;
}

.p4t-efta-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #F37021;
    line-height: 1;
}

.p4t-efta-stat-label {
    font-size: 0.88rem;
    color: #777777;
    font-weight: 500;
}

/* List */
.p4t-efta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.p4t-efta-list li {
    font-size: 0.97rem;
    line-height: 1.75;
    color: #555555;
    padding-left: 18px;
    position: relative;
}

.p4t-efta-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #F37021;
}

.p4t-efta-list li strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Teal highlight quote */
.p4t-efta-highlight {
    background-color: #1A5F7A;
    border-radius: 10px;
    padding: 20px 22px;
}

.p4t-efta-highlight p {
    font-size: 0.98rem;
    color: #ffffff !important;
    margin: 0;
    line-height: 1.7;
}


/* Below-image content row — for tabs with overflow text */
.p4t-efta-below-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: center;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #f0f0f0;
}

@media (max-width: 767px) {
    .p4t-efta-below-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 24px;
        padding-top: 24px;
    }
}

/* Below single — full width, no columns */
.p4t-efta-below-single {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #f0f0f0;
}

.p4t-efta-below-single p {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #555555;
    margin: 0;
}

.p4t-efta-below-single p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Horizontal pill list */
.p4t-efta-list-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.p4t-efta-list-horizontal li {
    background-color: #fdf6f1;
    border: 1px solid rgba(243, 112, 33, 0.25);
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 30px;
}

/* ============================================
   WHY P4T SUCCEEDS — BOTTOM BLOCK
   ============================================ */

.p4t-efta-why {
    margin-top: 32px;
    background: linear-gradient(135deg, #1A5F7A 0%, #0d3d4f 100%);
    border-radius: 16px;
    padding: 38px;
    position: relative;
    overflow: hidden;
}

.p4t-efta-why::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 50px solid rgba(255, 255, 255, 0.04);
    top: -80px;
    right: -60px;
}

.p4t-efta-why-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(243, 112, 33, 0.2);
    border: 1px solid rgba(243, 112, 33, 0.5);
    color: #F37021;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.p4t-efta-why h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.p4t-efta-why p {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    position: relative;
    z-index: 1;
    max-width: 900px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .p4t-education-for-transformation-action {
        padding: 40px 0;
    }

    .p4t-education-for-transformation-action-container {
        padding: 0 40px;
    }

    .p4t-education-for-transformation-action-header {
        margin-bottom: 28px;
    }

    .p4t-education-for-transformation-action-header h2 {
        font-size: 2.3rem;
    }

    .p4t-education-for-transformation-action-panel {
        padding: 32px 38px;
    }

    .p4t-efta-panel-grid {
        gap: 35px;
    }

    .p4t-efta-why {
        padding: 32px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-education-for-transformation-action {
        padding: 35px 0;
    }

    .p4t-education-for-transformation-action-container {
        padding: 0 25px;
    }

    .p4t-education-for-transformation-action-header {
        margin-bottom: 25px;
    }

    .p4t-education-for-transformation-action-header h2 {
        font-size: 1.9rem;
    }

    .p4t-education-for-transformation-action-panel {
        padding: 25px 22px;
    }

    .p4t-efta-panel-grid,
    .p4t-efta-panel-grid.p4t-efta-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 24px;
    }

    .p4t-efta-panel-text {
        gap: 14px;
    }

    .p4t-efta-slides,
    .p4t-efta-single-img {
        height: 260px;
    }

    .p4t-efta-why {
        padding: 26px 20px;
    }

    .p4t-efta-why h3 {
        font-size: 1.3rem;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-education-for-transformation-action {
        padding: 30px 0;
    }

    .p4t-education-for-transformation-action-container {
        padding: 0 20px;
    }

    .p4t-education-for-transformation-action-header h2 {
        font-size: 1.65rem;
    }

    .p4t-education-for-transformation-action-tab-btn span {
        display: none;
    }

    .p4t-education-for-transformation-action-tab-btn {
        padding: 14px 18px;
        justify-content: center;
    }

    .p4t-efta-slides,
    .p4t-efta-single-img {
        height: 220px;
    }

    .p4t-efta-panel-text {
        gap: 12px;
    }
}
/* ============================================
   P4T HEALTH SECTION - OPTIMIZED
   Clean two-paragraph editorial layout
   ============================================ */

.p4t-health {
    background-color: #ffffff;
    padding: 50px 0;
}

.p4t-health-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.p4t-health-header {
    margin-bottom: 35px;
}

.p4t-health-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-health-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.p4t-health-header h2 span {
    color: #F37021;
}

.p4t-health-header-line {
    width: 50px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 14px;
}

/* ============================================
   TWO-COLUMN PARAGRAPH LAYOUT
   ============================================ */

.p4t-health-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Top row: text left, image right */
.p4t-health-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.p4t-health-top-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.p4t-health-top-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
    margin: 0;
}

.p4t-health-top-text p strong {
    color: #1a1a1a;
    font-weight: 700;
}

.p4t-health-top-img {
    width: 100%;
    height: 360px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.p4t-health-top-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.p4t-health-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
    margin: 0;
}

.p4t-health-body p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Stats grid */
.p4t-health-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.p4t-health-stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
    background-color: #fdf6f1;
    border-left: 3px solid #F37021;
    padding: 14px 18px;
    border-radius: 0 8px 8px 0;
}

.p4t-health-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #F37021;
    line-height: 1;
    white-space: nowrap;
}

.p4t-health-stat-label {
    font-size: 0.85rem;
    color: #777777;
    font-weight: 500;
    line-height: 1.4;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .p4t-health {
        padding: 40px 0;
    }

    .p4t-health-container {
        padding: 0 40px;
    }

    .p4t-health-header {
        margin-bottom: 30px;
    }

    .p4t-health-header h2 {
        font-size: 2.4rem;
    }

    .p4t-health-header-line {
        margin-top: 12px;
    }

    .p4t-health-body {
        gap: 28px;
    }

    .p4t-health-top {
        gap: 35px;
    }

    .p4t-health-top-text {
        gap: 14px;
    }

    .p4t-health-top-img {
        height: 340px;
    }

    .p4t-health-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 11px;
    }

    .p4t-health-stat {
        padding: 13px 16px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-health {
        padding: 35px 0;
    }

    .p4t-health-container {
        padding: 0 25px;
    }

    .p4t-health-header {
        margin-bottom: 28px;
    }

    .p4t-health-header h2 {
        font-size: 2rem;
    }

    .p4t-health-header-line {
        margin-top: 11px;
    }

    .p4t-health-body {
        gap: 24px;
    }

    .p4t-health-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .p4t-health-top-text {
        gap: 14px;
    }

    .p4t-health-top-text p {
        line-height: 1.7;
    }

    .p4t-health-top-img {
        height: 260px;
    }

    /* Single column for stats on mobile */
    .p4t-health-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .p4t-health-stat {
        padding: 12px 16px;
    }

    .p4t-health-stat-number {
        font-size: 1.5rem;
    }

    .p4t-health-stat-label {
        font-size: 0.82rem;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-health {
        padding: 30px 0;
    }

    .p4t-health-container {
        padding: 0 20px;
    }

    .p4t-health-header h2 {
        font-size: 1.75rem;
    }

    .p4t-health-body {
        gap: 22px;
    }

    .p4t-health-top {
        gap: 22px;
    }

    .p4t-health-top-text {
        gap: 12px;
    }

    .p4t-health-top-text p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .p4t-health-top-img {
        height: 240px;
    }

    .p4t-health-stats {
        gap: 9px;
    }

    .p4t-health-stat {
        padding: 11px 14px;
    }

    .p4t-health-stat-number {
        font-size: 1.4rem;
    }

    .p4t-health-stat-label {
        font-size: 0.8rem;
    }
}


/* ============================================
   P4T HEALTH2 SECTION
   Tabbed Health Programmes — same pattern as Education Action
   ============================================ */

.p4t-health2 {
    background-color: #fafafa;
    padding: 50px 0;
}

.p4t-health2-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.p4t-health2-header {
    margin-bottom: 32px;
}

.p4t-health2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-health2-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.p4t-health2-header h2 span {
    color: #F37021;
}

.p4t-health2-header-line {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 16px;
}

/* ============================================
   TAB NAVIGATION
   ============================================ */

.p4t-health2-tab-nav {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 12px 12px 0 0;
}

.p4t-health2-tab-nav::-webkit-scrollbar {
    display: none;
}

.p4t-health2-tab-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 16px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #888888;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.p4t-health2-tab-btn i {
    font-size: 0.95rem;
}

.p4t-health2-tab-btn:hover {
    color: #F37021;
}

.p4t-health2-tab-btn.p4t-health2-tab-active {
    color: #F37021;
    border-bottom-color: #F37021;
}

/* ============================================
   TAB PANELS WRAPPER
   ============================================ */

.p4t-health2-panels {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 14px 14px;
}

.p4t-health2-panel {
    display: none;
    padding: 38px 45px;
}

.p4t-health2-panel.p4t-health2-panel-active {
    display: block;
}

/* ============================================
   PANEL GRID — IMAGE + TEXT
   ============================================ */

.p4t-health2-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
}

.p4t-health2-panel-grid.p4t-health2-reverse {
    direction: rtl;
}

.p4t-health2-panel-grid.p4t-health2-reverse > * {
    direction: ltr;
}

/* ============================================
   IMAGE — single only (no slideshow for health)
   ============================================ */

.p4t-health2-img {
    width: 100%;
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.p4t-health2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   TEXT CONTENT
   ============================================ */

.p4t-health2-panel-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.p4t-health2-panel-text h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.2px;
}

.p4t-health2-panel-text h3 span {
    color: #F37021;
}

.p4t-health2-subheading {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #F37021;
    margin: 0;
}

.p4t-health2-panel-text p {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #555555;
    margin: 0;
}

.p4t-health2-panel-text p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Stat callout */
.p4t-health2-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background-color: #fdf6f1;
    border-left: 3px solid #F37021;
    padding: 14px 20px;
    border-radius: 0 8px 8px 0;
}

.p4t-health2-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #F37021;
    line-height: 1;
}

.p4t-health2-stat-label {
    font-size: 0.88rem;
    color: #777777;
    font-weight: 500;
}

/* List */
.p4t-health2-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.p4t-health2-list li {
    font-size: 0.97rem;
    line-height: 1.75;
    color: #555555;
    padding-left: 18px;
    position: relative;
}

.p4t-health2-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #F37021;
}

.p4t-health2-list li strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Teal highlight */
.p4t-health2-highlight {
    background-color: #1A5F7A;
    border-radius: 10px;
    padding: 20px 22px;
}

.p4t-health2-highlight p {
    font-size: 0.98rem;
    color: #ffffff !important;
    margin: 0;
    line-height: 1.7;
}

/* Below grid — overflow content */
.p4t-health2-below-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: start;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #f0f0f0;
}

/* Below single — full width, no columns */
.p4t-health2-below-single {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #f0f0f0;
}

.p4t-health2-below-single p {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #555555;
    margin: 0;
}

/* Horizontal pill list */
.p4t-health2-list-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.p4t-health2-list-horizontal li {
    background-color: #fdf6f1;
    border: 1px solid rgba(243, 112, 33, 0.25);
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 30px;
}

/* ============================================
   WHY IT WORKS — BOTTOM BANNER
   ============================================ */

.p4t-health2-why {
    margin-top: 32px;
    background: linear-gradient(135deg, #1A5F7A 0%, #0d3d4f 100%);
    border-radius: 16px;
    padding: 38px;
    position: relative;
    overflow: hidden;
}

.p4t-health2-why::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 50px solid rgba(255, 255, 255, 0.04);
    top: -80px;
    right: -60px;
}

.p4t-health2-why-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(243, 112, 33, 0.2);
    border: 1px solid rgba(243, 112, 33, 0.5);
    color: #F37021;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.p4t-health2-why h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.p4t-health2-why p {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    position: relative;
    z-index: 1;
    max-width: 900px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .p4t-health2 {
        padding: 40px 0;
    }

    .p4t-health2-container {
        padding: 0 40px;
    }

    .p4t-health2-header {
        margin-bottom: 28px;
    }

    .p4t-health2-header h2 {
        font-size: 2.3rem;
    }

    .p4t-health2-panel {
        padding: 32px 38px;
    }

    .p4t-health2-panel-grid {
        gap: 35px;
    }

    .p4t-health2-below-grid {
        gap: 32px;
    }

    .p4t-health2-why {
        padding: 32px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-health2 {
        padding: 35px 0;
    }

    .p4t-health2-container {
        padding: 0 25px;
    }

    .p4t-health2-header {
        margin-bottom: 25px;
    }

    .p4t-health2-header h2 {
        font-size: 1.9rem;
    }

    .p4t-health2-panel {
        padding: 25px 22px;
    }

    .p4t-health2-panel-grid,
    .p4t-health2-panel-grid.p4t-health2-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 24px;
    }

    .p4t-health2-panel-text {
        gap: 14px;
    }

    .p4t-health2-below-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 24px;
        padding-top: 24px;
    }

    .p4t-health2-below-single {
        margin-top: 24px;
        padding-top: 24px;
        gap: 13px;
    }

    .p4t-health2-img {
        height: 260px;
    }

    .p4t-health2-why {
        padding: 26px 20px;
    }

    .p4t-health2-why h3 {
        font-size: 1.3rem;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-health2 {
        padding: 30px 0;
    }

    .p4t-health2-container {
        padding: 0 20px;
    }

    .p4t-health2-header h2 {
        font-size: 1.65rem;
    }

    .p4t-health2-tab-btn span {
        display: none;
    }

    .p4t-health2-tab-btn {
        padding: 14px 18px;
        justify-content: center;
    }

    .p4t-health2-panel-text {
        gap: 12px;
    }

    .p4t-health2-img {
        height: 220px;
    }
}
/* ============================================
   P4T LIVELIHOODS SECTION
   Clean layout with image — same pattern as p4t-health
   ============================================ */

.p4t-livelihoods {
    background-color: #ffffff;
    padding: 50px 0;
}

.p4t-livelihoods-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.p4t-livelihoods-header {
    margin-bottom: 35px;
}

.p4t-livelihoods-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-livelihoods-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.p4t-livelihoods-header h2 span {
    color: #F37021;
}

.p4t-livelihoods-header-line {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 16px;
}

/* ============================================
   BODY
   ============================================ */

.p4t-livelihoods-body {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Top row: text left, image right */
.p4t-livelihoods-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.p4t-livelihoods-top-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.p4t-livelihoods-top-text p {
    font-size: 1rem;
    line-height: 1.95;
    color: #555555;
    margin: 0;
}

.p4t-livelihoods-top-text p strong {
    color: #1a1a1a;
    font-weight: 700;
}

.p4t-livelihoods-top-img {
    width: 100%;
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.p4t-livelihoods-top-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Stats row — full width */
.p4t-livelihoods-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.p4t-livelihoods-stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
    background-color: #fdf6f1;
    border-left: 3px solid #F37021;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
}

.p4t-livelihoods-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #F37021;
    line-height: 1;
    white-space: nowrap;
}

.p4t-livelihoods-stat-label {
    font-size: 0.88rem;
    color: #777777;
    font-weight: 500;
    line-height: 1.4;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .p4t-livelihoods {
        padding: 40px 0;
    }

    .p4t-livelihoods-container {
        padding: 0 40px;
    }

    .p4t-livelihoods-header {
        margin-bottom: 30px;
    }

    .p4t-livelihoods-header h2 {
        font-size: 2.3rem;
    }

    .p4t-livelihoods-body {
        gap: 30px;
    }

    .p4t-livelihoods-top {
        gap: 35px;
    }

    .p4t-livelihoods-stats {
        gap: 16px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-livelihoods {
        padding: 35px 0;
    }

    .p4t-livelihoods-container {
        padding: 0 25px;
    }

    .p4t-livelihoods-header {
        margin-bottom: 28px;
    }

    .p4t-livelihoods-header h2 {
        font-size: 1.9rem;
    }

    .p4t-livelihoods-body {
        gap: 25px;
    }

    .p4t-livelihoods-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .p4t-livelihoods-top-text {
        gap: 16px;
    }

    .p4t-livelihoods-top-img {
        height: 260px;
    }

    .p4t-livelihoods-stats {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-livelihoods {
        padding: 30px 0;
    }

    .p4t-livelihoods-container {
        padding: 0 20px;
    }

    .p4t-livelihoods-header h2 {
        font-size: 1.65rem;
    }
}


/* ============================================
   P4T LIVELIHOODS SECTION
   Clean layout with image — same pattern as p4t-health
   ============================================ */

.p4t-livelihoods {
    background-color: #ffffff;
    padding: 50px 0;
}

.p4t-livelihoods-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.p4t-livelihoods-header {
    margin-bottom: 35px;
}

.p4t-livelihoods-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-livelihoods-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.p4t-livelihoods-header h2 span {
    color: #F37021;
}

.p4t-livelihoods-header-line {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 16px;
}

/* ============================================
   BODY
   ============================================ */

.p4t-livelihoods-body {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Top row: text left, image right */
.p4t-livelihoods-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.p4t-livelihoods-top-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.p4t-livelihoods-top-text p {
    font-size: 1rem;
    line-height: 1.95;
    color: #555555;
    margin: 0;
}

.p4t-livelihoods-top-text p strong {
    color: #1a1a1a;
    font-weight: 700;
}

.p4t-livelihoods-top-img {
    width: 100%;
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.p4t-livelihoods-top-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Stats row — full width */
.p4t-livelihoods-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.p4t-livelihoods-stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
    background-color: #fdf6f1;
    border-left: 3px solid #F37021;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
}

.p4t-livelihoods-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #F37021;
    line-height: 1;
    white-space: nowrap;
}

.p4t-livelihoods-stat-label {
    font-size: 0.88rem;
    color: #777777;
    font-weight: 500;
    line-height: 1.4;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .p4t-livelihoods {
        padding: 40px 0;
    }

    .p4t-livelihoods-container {
        padding: 0 40px;
    }

    .p4t-livelihoods-header {
        margin-bottom: 30px;
    }

    .p4t-livelihoods-header h2 {
        font-size: 2.3rem;
    }

    .p4t-livelihoods-body {
        gap: 30px;
    }

    .p4t-livelihoods-top {
        gap: 35px;
    }

    .p4t-livelihoods-stats {
        gap: 16px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-livelihoods {
        padding: 35px 0;
    }

    .p4t-livelihoods-container {
        padding: 0 25px;
    }

    .p4t-livelihoods-header {
        margin-bottom: 28px;
    }

    .p4t-livelihoods-header h2 {
        font-size: 1.9rem;
    }

    .p4t-livelihoods-body {
        gap: 25px;
    }

    .p4t-livelihoods-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .p4t-livelihoods-top-text {
        gap: 16px;
    }

    .p4t-livelihoods-top-img {
        height: 260px;
    }

    .p4t-livelihoods-stats {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-livelihoods {
        padding: 30px 0;
    }

    .p4t-livelihoods-container {
        padding: 0 20px;
    }

    .p4t-livelihoods-header h2 {
        font-size: 1.65rem;
    }
}


/* ============================================
   P4T LIVELIHOODS2 SECTION
   Tabbed Livelihood Programmes — same pattern as p4t-health2
   ============================================ */

.p4t-livelihoods2 {
    background-color: #fafafa;
    padding: 50px 0;
}

.p4t-livelihoods2-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.p4t-livelihoods2-header {
    margin-bottom: 32px;
}

.p4t-livelihoods2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-livelihoods2-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.p4t-livelihoods2-header h2 span {
    color: #F37021;
}

.p4t-livelihoods2-header-line {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 16px;
}

/* ============================================
   TAB NAVIGATION
   ============================================ */

.p4t-livelihoods2-tab-nav {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 12px 12px 0 0;
}

.p4t-livelihoods2-tab-nav::-webkit-scrollbar {
    display: none;
}

.p4t-livelihoods2-tab-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 16px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #888888;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.p4t-livelihoods2-tab-btn i {
    font-size: 0.95rem;
}

.p4t-livelihoods2-tab-btn:hover {
    color: #F37021;
}

.p4t-livelihoods2-tab-btn.p4t-livelihoods2-tab-active {
    color: #F37021;
    border-bottom-color: #F37021;
}

/* ============================================
   TAB PANELS WRAPPER
   ============================================ */

.p4t-livelihoods2-panels {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 14px 14px;
}

.p4t-livelihoods2-panel {
    display: none;
    padding: 38px 45px;
}

.p4t-livelihoods2-panel.p4t-livelihoods2-panel-active {
    display: block;
}

/* ============================================
   PANEL GRID — IMAGE + TEXT
   ============================================ */

.p4t-livelihoods2-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
}

.p4t-livelihoods2-panel-grid.p4t-livelihoods2-reverse {
    direction: rtl;
}

.p4t-livelihoods2-panel-grid.p4t-livelihoods2-reverse > * {
    direction: ltr;
}

/* ============================================
   IMAGE
   ============================================ */

.p4t-livelihoods2-img {
    width: 100%;
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.p4t-livelihoods2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   SLIDESHOW
   ============================================ */

.p4t-livelihoods2-slideshow {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.p4t-livelihoods2-slides {
    position: relative;
    width: 100%;
    height: 380px;
}

.p4t-livelihoods2-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.p4t-livelihoods2-slide.p4t-livelihoods2-slide-active {
    opacity: 1;
}

.p4t-livelihoods2-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slide controls */
.p4t-livelihoods2-slide-controls {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 5;
}

.p4t-livelihoods2-slide-prev,
.p4t-livelihoods2-slide-next {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    color: #1a1a1a;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.p4t-livelihoods2-slide-prev:hover,
.p4t-livelihoods2-slide-next:hover {
    background-color: #F37021;
    color: #ffffff;
}

.p4t-livelihoods2-slide-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.p4t-livelihoods2-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.p4t-livelihoods2-dot.p4t-livelihoods2-dot-active {
    background-color: #ffffff;
    transform: scale(1.3);
}

/* ============================================
   TEXT CONTENT
   ============================================ */

.p4t-livelihoods2-panel-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.p4t-livelihoods2-panel-text h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.2px;
}

.p4t-livelihoods2-panel-text h3 span {
    color: #F37021;
}

.p4t-livelihoods2-subheading {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #F37021;
    margin: 0;
}

.p4t-livelihoods2-panel-text p {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #555555;
    margin: 0;
}

.p4t-livelihoods2-panel-text p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Stat callout */
.p4t-livelihoods2-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background-color: #fdf6f1;
    border-left: 3px solid #F37021;
    padding: 14px 20px;
    border-radius: 0 8px 8px 0;
}

.p4t-livelihoods2-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #F37021;
    line-height: 1;
}

.p4t-livelihoods2-stat-label {
    font-size: 0.88rem;
    color: #777777;
    font-weight: 500;
}

/* Teal highlight */
.p4t-livelihoods2-highlight {
    background-color: #1A5F7A;
    border-radius: 10px;
    padding: 20px 22px;
}

.p4t-livelihoods2-highlight p {
    font-size: 0.98rem;
    color: #ffffff !important;
    margin: 0;
    line-height: 1.7;
}

/* Below single — full width, no columns */
.p4t-livelihoods2-below-single {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #f0f0f0;
}

.p4t-livelihoods2-below-single p {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #555555;
    margin: 0;
}

/* Horizontal pill list */
.p4t-livelihoods2-list-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.p4t-livelihoods2-list-horizontal li {
    background-color: #fdf6f1;
    border: 1px solid rgba(243, 112, 33, 0.25);
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 30px;
}

/* Regular list */
.p4t-livelihoods2-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.p4t-livelihoods2-list li {
    font-size: 0.97rem;
    line-height: 1.75;
    color: #555555;
    padding-left: 18px;
    position: relative;
}

.p4t-livelihoods2-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #F37021;
}

.p4t-livelihoods2-list li strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* ============================================
   WHY IT WORKS — BOTTOM BANNER
   ============================================ */

.p4t-livelihoods2-why {
    margin-top: 32px;
    background: linear-gradient(135deg, #1A5F7A 0%, #0d3d4f 100%);
    border-radius: 16px;
    padding: 38px;
    position: relative;
    overflow: hidden;
}

.p4t-livelihoods2-why::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 50px solid rgba(255, 255, 255, 0.04);
    top: -80px;
    right: -60px;
}

.p4t-livelihoods2-why-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(243, 112, 33, 0.2);
    border: 1px solid rgba(243, 112, 33, 0.5);
    color: #F37021;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.p4t-livelihoods2-why h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.p4t-livelihoods2-why p {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 14px 0;
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.p4t-livelihoods2-why-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.p4t-livelihoods2-why-pills li {
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.88rem;
    padding: 7px 18px;
    border-radius: 30px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .p4t-livelihoods2 {
        padding: 40px 0;
    }

    .p4t-livelihoods2-container {
        padding: 0 40px;
    }

    .p4t-livelihoods2-header {
        margin-bottom: 28px;
    }

    .p4t-livelihoods2-header h2 {
        font-size: 2.3rem;
    }

    .p4t-livelihoods2-panel {
        padding: 32px 38px;
    }

    .p4t-livelihoods2-panel-grid {
        gap: 35px;
    }

    .p4t-livelihoods2-why {
        padding: 32px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-livelihoods2 {
        padding: 35px 0;
    }

    .p4t-livelihoods2-container {
        padding: 0 25px;
    }

    .p4t-livelihoods2-header {
        margin-bottom: 25px;
    }

    .p4t-livelihoods2-header h2 {
        font-size: 1.9rem;
    }

    .p4t-livelihoods2-panel {
        padding: 25px 22px;
    }

    .p4t-livelihoods2-panel-grid,
    .p4t-livelihoods2-panel-grid.p4t-livelihoods2-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 24px;
    }

    .p4t-livelihoods2-panel-text {
        gap: 14px;
    }

    .p4t-livelihoods2-below-single {
        margin-top: 24px;
        padding-top: 24px;
        gap: 13px;
    }

    .p4t-livelihoods2-img {
        height: 260px;
    }

    .p4t-livelihoods2-slides {
        height: 260px;
    }

    .p4t-livelihoods2-why {
        padding: 26px 20px;
    }

    .p4t-livelihoods2-why h3 {
        font-size: 1.3rem;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-livelihoods2 {
        padding: 30px 0;
    }

    .p4t-livelihoods2-container {
        padding: 0 20px;
    }

    .p4t-livelihoods2-header h2 {
        font-size: 1.65rem;
    }

    .p4t-livelihoods2-tab-btn span {
        display: none;
    }

    .p4t-livelihoods2-tab-btn {
        padding: 14px 18px;
        justify-content: center;
    }

    .p4t-livelihoods2-panel-text {
        gap: 12px;
    }

    .p4t-livelihoods2-img {
        height: 220px;
    }

    .p4t-livelihoods2-slides {
        height: 220px;
    }
}

/* ============================================
   P4T PROTECTION SECTION
   Clean layout with image — same pattern as p4t-livelihoods
   ============================================ */

.p4t-protection {
    background-color: #ffffff;
    padding: 50px 0;
}

.p4t-protection-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.p4t-protection-header {
    margin-bottom: 35px;
}

.p4t-protection-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-protection-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.p4t-protection-header h2 span {
    color: #F37021;
}

.p4t-protection-header-line {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 16px;
}

/* ============================================
   BODY
   ============================================ */

.p4t-protection-body {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Top row: image left, text right */
.p4t-protection-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.p4t-protection-top-img {
    width: 100%;
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.p4t-protection-top-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.p4t-protection-top-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.p4t-protection-top-text p {
    font-size: 1rem;
    line-height: 1.95;
    color: #555555;
    margin: 0;
}

.p4t-protection-top-text p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Services row — full width */
.p4t-protection-services {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.p4t-protection-service-card {
    background-color: #fdf6f1;
    border: 1px solid rgba(243, 112, 33, 0.2);
    border-top: 3px solid #F37021;
    border-radius: 0 0 10px 10px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.p4t-protection-service-card i {
    font-size: 1.3rem;
    color: #F37021;
}

.p4t-protection-service-card span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .p4t-protection {
        padding: 40px 0;
    }

    .p4t-protection-container {
        padding: 0 40px;
    }

    .p4t-protection-header {
        margin-bottom: 30px;
    }

    .p4t-protection-header h2 {
        font-size: 2.3rem;
    }

    .p4t-protection-body {
        gap: 30px;
    }

    .p4t-protection-top {
        gap: 35px;
    }

    .p4t-protection-services {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-protection {
        padding: 35px 0;
    }

    .p4t-protection-container {
        padding: 0 25px;
    }

    .p4t-protection-header {
        margin-bottom: 28px;
    }

    .p4t-protection-header h2 {
        font-size: 1.9rem;
    }

    .p4t-protection-body {
        gap: 25px;
    }

    .p4t-protection-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .p4t-protection-top-text {
        gap: 16px;
    }

    .p4t-protection-top-img {
        height: 260px;
    }

    .p4t-protection-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-protection {
        padding: 30px 0;
    }

    .p4t-protection-container {
        padding: 0 20px;
    }

    .p4t-protection-header h2 {
        font-size: 1.65rem;
    }

    .p4t-protection-services {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .p4t-protection-service-card {
        padding: 16px 14px;
    }
}


/* ============================================
   P4T PROTECTION2 SECTION
   Tabbed Protection Programmes — same pattern as p4t-livelihoods2
   ============================================ */

.p4t-protection2 {
    background-color: #fafafa;
    padding: 50px 0;
}

.p4t-protection2-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.p4t-protection2-header {
    margin-bottom: 32px;
}

.p4t-protection2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-protection2-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.p4t-protection2-header h2 span {
    color: #F37021;
}

.p4t-protection2-header-line {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 16px;
}

/* ============================================
   TAB NAVIGATION
   ============================================ */

.p4t-protection2-tab-nav {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 12px 12px 0 0;
}

.p4t-protection2-tab-nav::-webkit-scrollbar {
    display: none;
}

.p4t-protection2-tab-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 16px 22px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #888888;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.p4t-protection2-tab-btn i {
    font-size: 0.95rem;
}

.p4t-protection2-tab-btn:hover {
    color: #F37021;
}

.p4t-protection2-tab-btn.p4t-protection2-tab-active {
    color: #F37021;
    border-bottom-color: #F37021;
}

/* ============================================
   TAB PANELS WRAPPER
   ============================================ */

.p4t-protection2-panels {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 14px 14px;
}

.p4t-protection2-panel {
    display: none;
    padding: 38px 45px;
}

.p4t-protection2-panel.p4t-protection2-panel-active {
    display: block;
}

/* ============================================
   PANEL GRID — IMAGE + TEXT
   ============================================ */

.p4t-protection2-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
}

.p4t-protection2-panel-grid.p4t-protection2-reverse {
    direction: rtl;
}

.p4t-protection2-panel-grid.p4t-protection2-reverse > * {
    direction: ltr;
}

/* ============================================
   IMAGE
   ============================================ */

.p4t-protection2-img {
    width: 100%;
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.p4t-protection2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   TEXT CONTENT
   ============================================ */

.p4t-protection2-panel-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.p4t-protection2-panel-text h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.2px;
}

.p4t-protection2-panel-text h3 span {
    color: #F37021;
}

.p4t-protection2-subheading {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #F37021;
    margin: 0;
}

.p4t-protection2-panel-text p {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #555555;
    margin: 0;
}

.p4t-protection2-panel-text p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Stat callout */
.p4t-protection2-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background-color: #fdf6f1;
    border-left: 3px solid #F37021;
    padding: 14px 20px;
    border-radius: 0 8px 8px 0;
}

.p4t-protection2-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #F37021;
    line-height: 1;
}

.p4t-protection2-stat-label {
    font-size: 0.88rem;
    color: #777777;
    font-weight: 500;
}

/* Teal highlight */
.p4t-protection2-highlight {
    background-color: #1A5F7A;
    border-radius: 10px;
    padding: 20px 22px;
}

.p4t-protection2-highlight p {
    font-size: 0.98rem;
    color: #ffffff !important;
    margin: 0;
    line-height: 1.7;
}

/* Below single — full width */
.p4t-protection2-below-single {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #f0f0f0;
}

.p4t-protection2-below-single p {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #555555;
    margin: 0;
}

/* Horizontal pill list */
.p4t-protection2-list-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.p4t-protection2-list-horizontal li {
    background-color: #fdf6f1;
    border: 1px solid rgba(243, 112, 33, 0.25);
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 30px;
}

/* ============================================
   WHY PROTECTION MATTERS — BOTTOM BANNER
   ============================================ */

.p4t-protection2-why {
    margin-top: 32px;
    background: linear-gradient(135deg, #1A5F7A 0%, #0d3d4f 100%);
    border-radius: 16px;
    padding: 38px;
    position: relative;
    overflow: hidden;
}

.p4t-protection2-why::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 50px solid rgba(255, 255, 255, 0.04);
    top: -80px;
    right: -60px;
}

.p4t-protection2-why-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(243, 112, 33, 0.2);
    border: 1px solid rgba(243, 112, 33, 0.5);
    color: #F37021;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.p4t-protection2-why h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.p4t-protection2-why p {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    position: relative;
    z-index: 1;
    max-width: 900px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .p4t-protection2 {
        padding: 40px 0;
    }

    .p4t-protection2-container {
        padding: 0 40px;
    }

    .p4t-protection2-header {
        margin-bottom: 28px;
    }

    .p4t-protection2-header h2 {
        font-size: 2.3rem;
    }

    .p4t-protection2-panel {
        padding: 32px 38px;
    }

    .p4t-protection2-panel-grid {
        gap: 35px;
    }

    .p4t-protection2-why {
        padding: 32px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-protection2 {
        padding: 35px 0;
    }

    .p4t-protection2-container {
        padding: 0 25px;
    }

    .p4t-protection2-header {
        margin-bottom: 25px;
    }

    .p4t-protection2-header h2 {
        font-size: 1.9rem;
    }

    .p4t-protection2-panel {
        padding: 25px 22px;
    }

    .p4t-protection2-panel-grid,
    .p4t-protection2-panel-grid.p4t-protection2-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 24px;
    }

    .p4t-protection2-panel-text {
        gap: 14px;
    }

    .p4t-protection2-below-single {
        margin-top: 24px;
        padding-top: 24px;
        gap: 13px;
    }

    .p4t-protection2-img {
        height: 260px;
    }

    .p4t-protection2-why {
        padding: 26px 20px;
    }

    .p4t-protection2-why h3 {
        font-size: 1.3rem;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-protection2 {
        padding: 30px 0;
    }

    .p4t-protection2-container {
        padding: 0 20px;
    }

    .p4t-protection2-header h2 {
        font-size: 1.65rem;
    }

    .p4t-protection2-tab-btn span {
        display: none;
    }

    .p4t-protection2-tab-btn {
        padding: 14px 16px;
        justify-content: center;
    }

    .p4t-protection2-panel-text {
        gap: 12px;
    }

    .p4t-protection2-img {
        height: 220px;
    }
}

/* ============================================
   P4T TEAM & BOARD MEMBERS SECTION - OPTIMIZED
   ============================================ */

.p4t-team-board-members {
    background-color: #ffffff;
    padding: 50px 0 50px;
}

.p4t-team-board-members-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.p4t-team-board-members-header {
    margin-bottom: 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.p4t-team-board-members-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-team-board-members-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.3px;
}

.p4t-team-board-members-header h2 span {
    color: #F37021;
}

.p4t-team-board-members-header-line {
    width: 50px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 14px;
}

/* ============================================
   GRID
   ============================================ */

.p4t-team-board-members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ============================================
   MEMBER CARD
   ============================================ */

.p4t-team-board-members-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background-color: #f8f8f8;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.p4t-team-board-members-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Photo */
.p4t-team-board-members-card-photo {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.p4t-team-board-members-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Info */
.p4t-team-board-members-card-info {
    padding: 18px 18px 20px;
    border-top: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.p4t-team-board-members-card:hover .p4t-team-board-members-card-info {
    border-top-color: #F37021;
}

.p4t-team-board-members-card-name {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.03rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 5px 0;
    line-height: 1.3;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.p4t-team-board-members-card-name:hover {
    color: #F37021;
}

.p4t-team-board-members-card-role {
    font-size: 0.8rem;
    font-weight: 700;
    color: #F37021;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 8px 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1199px) {
    .p4t-team-board-members-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .p4t-team-board-members {
        padding: 40px 0 40px;
    }

    .p4t-team-board-members-container {
        padding: 0 40px;
    }

    .p4t-team-board-members-header {
        margin-bottom: 32px;
    }

    .p4t-team-board-members-badge {
        margin-bottom: 14px;
    }

    .p4t-team-board-members-header h2 {
        font-size: 2.4rem;
    }

    .p4t-team-board-members-header-line {
        margin-top: 12px;
    }

    .p4t-team-board-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .p4t-team-board-members-card-photo {
        height: 260px;
    }

    .p4t-team-board-members-card-info {
        padding: 16px 16px 18px;
    }
}

@media (max-width: 767px) {
    .p4t-team-board-members {
        padding: 35px 0 35px;
    }

    .p4t-team-board-members-container {
        padding: 0 25px;
    }

    .p4t-team-board-members-header {
        margin-bottom: 28px;
    }

    .p4t-team-board-members-badge {
        margin-bottom: 12px;
    }

    .p4t-team-board-members-header h2 {
        font-size: 2rem;
    }

    .p4t-team-board-members-header-line {
        margin-top: 11px;
    }

    .p4t-team-board-members-grid {
        gap: 18px;
    }

    .p4t-team-board-members-card-photo {
        height: 240px;
    }

    .p4t-team-board-members-card-info {
        padding: 15px 15px 17px;
    }

    .p4t-team-board-members-card-name {
        font-size: 1rem;
    }

    .p4t-team-board-members-card-role {
        font-size: 0.78rem;
    }
}

@media (max-width: 575px) {
    .p4t-team-board-members {
        padding: 30px 0 30px;
    }

    .p4t-team-board-members-container {
        padding: 0 20px;
    }

    .p4t-team-board-members-header {
        margin-bottom: 24px;
    }

    .p4t-team-board-members-header h2 {
        font-size: 1.75rem;
    }

    .p4t-team-board-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .p4t-team-board-members-card {
        border-radius: 12px;
    }

    .p4t-team-board-members-card-photo {
        height: 200px;
    }

    .p4t-team-board-members-card-info {
        padding: 14px 13px 16px;
    }

    .p4t-team-board-members-card-name {
        font-size: 0.95rem;
    }

    .p4t-team-board-members-card-role {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }
}

/* ============================================
   P4T MANAGEMENT TEAM SECTION - OPTIMIZED
   ============================================ */

.p4t-management-team {
    background-color: #ffffff;
    padding: 10px 0 50px; /* reduced top padding to close gap with section above */
}

.p4t-management-team-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.p4t-management-team-header {
    margin-bottom: 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.p4t-management-team-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-management-team-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.3px;
}

.p4t-management-team-header h2 span {
    color: #F37021;
}

.p4t-management-team-header-line {
    width: 50px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 14px;
}

/* ============================================
   GRID
   ============================================ */

.p4t-management-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ============================================
   MEMBER CARD
   ============================================ */

.p4t-management-team-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background-color: #f8f8f8;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.p4t-management-team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Photo */
.p4t-management-team-card-photo {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.p4t-management-team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}



/* Info */
.p4t-management-team-card-info {
    padding: 18px 18px 20px;
    border-top: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.p4t-management-team-card:hover .p4t-management-team-card-info {
    border-top-color: #F37021;
}

.p4t-management-team-card-name {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.03rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 5px 0;
    line-height: 1.3;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.p4t-management-team-card-name:hover {
    color: #F37021;
}

.p4t-management-team-card-role {
    font-size: 0.8rem;
    font-weight: 700;
    color: #F37021;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 8px 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1199px) {
    .p4t-management-team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .p4t-management-team {
        padding: 8px 0 40px;
    }

    .p4t-management-team-container {
        padding: 0 40px;
    }

    .p4t-management-team-header {
        margin-bottom: 32px;
    }

    .p4t-management-team-badge {
        margin-bottom: 14px;
    }

    .p4t-management-team-header h2 {
        font-size: 2.4rem;
    }

    .p4t-management-team-header-line {
        margin-top: 12px;
    }

    .p4t-management-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .p4t-management-team-card-photo {
        height: 260px;
    }

    .p4t-management-team-card-info {
        padding: 16px 16px 18px;
    }
}

@media (max-width: 767px) {
    .p4t-management-team {
        padding: 6px 0 35px;
    }

    .p4t-management-team-container {
        padding: 0 25px;
    }

    .p4t-management-team-header {
        margin-bottom: 28px;
    }

    .p4t-management-team-badge {
        margin-bottom: 12px;
    }

    .p4t-management-team-header h2 {
        font-size: 2rem;
    }

    .p4t-management-team-header-line {
        margin-top: 11px;
    }

    .p4t-management-team-grid {
        gap: 18px;
    }

    .p4t-management-team-card-photo {
        height: 240px;
    }

    .p4t-management-team-card-info {
        padding: 15px 15px 17px;
    }

    .p4t-management-team-card-name {
        font-size: 1rem;
    }

    .p4t-management-team-card-role {
        font-size: 0.78rem;
    }
}

@media (max-width: 575px) {
    .p4t-management-team {
        padding: 5px 0 30px;
    }

    .p4t-management-team-container {
        padding: 0 20px;
    }

    .p4t-management-team-header {
        margin-bottom: 24px;
    }

    .p4t-management-team-header h2 {
        font-size: 1.75rem;
    }

    .p4t-management-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .p4t-management-team-card {
        border-radius: 12px;
    }

    .p4t-management-team-card-photo {
        height: 200px;
    }

    .p4t-management-team-card-info {
        padding: 14px 13px 16px;
    }

    .p4t-management-team-card-name {
        font-size: 0.95rem;
    }

    .p4t-management-team-card-role {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }
}
/* ============================================
   P4T TEAM MEMBER PROFESSIONAL BIO - OPTIMIZED
   Sticky portrait — text scrolls, image stays
   ============================================ */

.p4t-team-member-professional-bio {
    background-color: #ffffff;
    padding: 50px 0;
}

.p4t-team-member-professional-bio-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

/* ============================================
   TWO-COLUMN LAYOUT
   ============================================ */

.p4t-team-member-professional-bio-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 50px;
    align-items: start;
}

/* ============================================
   LEFT — SCROLLABLE TEXT
   ============================================ */

.p4t-team-member-professional-bio-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Name & title block */
.p4t-team-member-professional-bio-identity {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 22px;
    border-bottom: 1px solid #eeeeee;
}

.p4t-team-member-professional-bio-role-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    align-self: flex-start;
}

.p4t-team-member-professional-bio-name {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin: 0 0 9px 0;
    letter-spacing: -0.4px;
}

.p4t-team-member-professional-bio-name span {
    color: #F37021;
}

.p4t-team-member-professional-bio-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1A5F7A;
    letter-spacing: 0.3px;
    margin: 0;
}

/* Bio paragraphs */
.p4t-team-member-professional-bio-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.p4t-team-member-professional-bio-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
    margin: 0;
    text-align: justify;
}

.p4t-team-member-professional-bio-body p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Section subheadings within bio */
.p4t-team-member-professional-bio-subheading {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #F37021;
    margin: 10px 0 0 0;
}

/* Skills / tags row */
.p4t-team-member-professional-bio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.p4t-team-member-professional-bio-tags li {
    background-color: #fdf6f1;
    border: 1px solid rgba(243, 112, 33, 0.25);
    color: #1a1a1a;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 7px 15px;
    border-radius: 30px;
}

/* ============================================
   RIGHT — STICKY PORTRAIT
   ============================================ */

.p4t-team-member-professional-bio-portrait-wrap {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: fit-content;
}

.p4t-team-member-professional-bio-portrait {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.p4t-team-member-professional-bio-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Contact / social under portrait */
.p4t-team-member-professional-bio-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 20px;
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 12px;
}

.p4t-team-member-professional-bio-contact-item {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 0.9rem;
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.p4t-team-member-professional-bio-contact-item:hover {
    color: #F37021;
}

.p4t-team-member-professional-bio-contact-item i {
    width: 32px;
    height: 32px;
    background-color: #F37021;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .p4t-team-member-professional-bio {
        padding: 40px 0;
    }

    .p4t-team-member-professional-bio-container {
        padding: 0 40px;
    }

    .p4t-team-member-professional-bio-grid {
        grid-template-columns: 1fr 360px;
        gap: 40px;
    }

    .p4t-team-member-professional-bio-content {
        gap: 20px;
    }

    .p4t-team-member-professional-bio-identity {
        padding-bottom: 18px;
    }

    .p4t-team-member-professional-bio-role-tag {
        margin-bottom: 12px;
    }

    .p4t-team-member-professional-bio-name {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }

    .p4t-team-member-professional-bio-body {
        gap: 14px;
    }

    .p4t-team-member-professional-bio-portrait-wrap {
        top: 120px;
        gap: 14px;
    }

    .p4t-team-member-professional-bio-contact {
        padding: 16px 18px;
        gap: 9px;
    }

    .p4t-team-member-professional-bio-tags {
        gap: 8px;
    }
}

/* Mobile — stack vertically, no sticky */
@media (max-width: 767px) {
    .p4t-team-member-professional-bio {
        padding: 35px 0;
    }

    .p4t-team-member-professional-bio-container {
        padding: 0 25px;
    }

    .p4t-team-member-professional-bio-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .p4t-team-member-professional-bio-content {
        gap: 18px;
    }

    .p4t-team-member-professional-bio-identity {
        padding-bottom: 16px;
    }

    .p4t-team-member-professional-bio-role-tag {
        margin-bottom: 11px;
    }

    /* Portrait goes on top on mobile */
    .p4t-team-member-professional-bio-portrait-wrap {
        position: static;
        order: -1;
        gap: 12px;
    }

    .p4t-team-member-professional-bio-portrait {
        aspect-ratio: 16 / 10;
        border-radius: 14px;
    }

    .p4t-team-member-professional-bio-name {
        font-size: 1.9rem;
        margin-bottom: 7px;
    }

    .p4t-team-member-professional-bio-body {
        gap: 12px;
    }

    .p4t-team-member-professional-bio-body p {
        line-height: 1.7;
    }

    .p4t-team-member-professional-bio-contact {
        padding: 14px 16px;
        gap: 8px;
    }

    .p4t-team-member-professional-bio-tags {
        gap: 7px;
    }

    .p4t-team-member-professional-bio-tags li {
        padding: 6px 13px;
        font-size: 0.85rem;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-team-member-professional-bio {
        padding: 30px 0;
    }

    .p4t-team-member-professional-bio-container {
        padding: 0 20px;
    }

    .p4t-team-member-professional-bio-grid {
        gap: 24px;
    }

    .p4t-team-member-professional-bio-content {
        gap: 16px;
    }

    .p4t-team-member-professional-bio-identity {
        padding-bottom: 14px;
    }

    .p4t-team-member-professional-bio-name {
        font-size: 1.65rem;
        margin-bottom: 6px;
    }

    .p4t-team-member-professional-bio-body {
        gap: 11px;
    }

    .p4t-team-member-professional-bio-body p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .p4t-team-member-professional-bio-portrait-wrap {
        gap: 11px;
    }

    .p4t-team-member-professional-bio-contact {
        padding: 13px 15px;
    }

    .p4t-team-member-professional-bio-contact-item {
        font-size: 0.87rem;
        gap: 10px;
    }

    .p4t-team-member-professional-bio-contact-item i {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
}

/* ============================================
   HERO PAGES P4T MAIN
   Flexible hero for internal pages
   ============================================ */

.hero-pages-p4t-main {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1a1a1a;
}

/* Background image */
.hero-pages-p4t-main-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-pages-p4t-main-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.85);
}

/* Overlay */
.hero-pages-p4t-main-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Content */
.hero-pages-p4t-main-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 50px;
    max-width: 900px;
}

/* Breadcrumb / label */
.hero-pages-p4t-main-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-pages-p4t-main-label i {
    font-size: 0.85rem;
}

/* Main heading */
.hero-pages-p4t-main-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-pages-p4t-main-title span {
    color: #F37021;
}

/* Subtitle / description */
.hero-pages-p4t-main-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Decorative line under title */
.hero-pages-p4t-main-line {
    width: 80px;
    height: 4px;
    background-color: #F37021;
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .hero-pages-p4t-main {
        height: 420px;
    }

    .hero-pages-p4t-main-content {
        padding: 0 40px;
    }

    .hero-pages-p4t-main-title {
        font-size: 3rem;
    }

    .hero-pages-p4t-main-subtitle {
        font-size: 1.05rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-pages-p4t-main {
        height: 370px;
    }

    .hero-pages-p4t-main-content {
        padding: 0 25px;
    }

    .hero-pages-p4t-main-title {
        font-size: 2.2rem;
    }

    .hero-pages-p4t-main-subtitle {
        font-size: 0.98rem;
    }

    .hero-pages-p4t-main-line {
        width: 60px;
        height: 3px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .hero-pages-p4t-main {
        height: 320px;
    }

    .hero-pages-p4t-main-content {
        padding: 0 20px;
    }

    .hero-pages-p4t-main-title {
        font-size: 1.85rem;
    }

    .hero-pages-p4t-main-subtitle {
        font-size: 0.92rem;
    }
}




/* ============================================
   P4T FOOTER - 3 COLUMN DESIGN
   ============================================ */
.p4t-footer {
  background-color: #000000; /* Dark gray background */
  color: #ffffff;
  padding: 50px 0 0;
}

.p4t-footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2px 1fr 2px 1fr; /* 3 columns with dividers */
  gap: 40px;
  align-items: start;
  padding: 0 50px 40px;
}

/* Vertical Dividers */
.p4t-footer-divider {
  width: 2px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  min-height: 200px;
}

/* Footer Columns */
.p4t-footer-column {
  padding: 0 20px;
}

.p4t-footer-column h4 {
  color: #F37021; /* Orange headings */
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 600;
}

.p4t-footer-column p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.p4t-footer-column a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.p4t-footer-column a:hover {
  color: #F37021; /* Orange hover */
}

/* Logo Column */
.p4t-footer-logo-column {
  text-align: center;
}

.p4t-footer-logo {
  margin-bottom: 25px;
}

.p4t-footer-logo img {
  max-width: 180px;
  height: auto;
}

.p4t-connect-title {
  color: #F37021; /* Orange */
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Social Media Links */
.p4t-social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.p4t-social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.p4t-social-link:hover {
  background-color: #F37021; /* Orange hover */
  color: #FFFFFF !important; /* Dark icon on orange background */
  transform: translateY(-3px);
}

/* Footer Bottom - Copyright */
.p4t-footer-bottom {
  background-color: var(--p4t-primary-orange); /* Orange background */
  padding: 7px 50px;
  text-align: center;
  color: #ffffff;
  font-size: 0.8rem !important;
  width: 100%;
}

.p4t-footer-bottom p {
  margin: 0;
  color: #ffffff;
  font-size: 1rem !important;
}

.p4t-footer-bottom strong {
  font-weight:800;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets and smaller desktops */
@media (max-width: 992px) {
  .p4t-footer {
    padding: 40px 0 0;
  }
  
  .p4t-footer-content {
    grid-template-columns: 1fr 2px 1fr; /* 2 columns on tablet */
    gap: 30px;
    padding: 0 30px 40px;
  }
  
  .p4t-footer-divider:last-of-type {
    display: none; /* Hide last divider on tablet */
  }
  
  .p4t-footer-logo-column {
    grid-column: 1 / -1; /* Logo spans full width on tablet */
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .p4t-footer-bottom {
    padding: 10px 30px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .p4t-footer {
    padding: 30px 0 0;
  }
  
  .p4t-footer-content {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 30px;
    padding: 0 25px 30px;
  }
  
  .p4t-footer-divider {
    display: none; /* Hide all dividers on mobile */
  }
  
  .p4t-footer-column {
    padding: 0;
    text-align: center;
  }
  
  .p4t-footer-column h4 {
    font-size: 1.2rem;
  }
  
  .p4t-footer-logo-column {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }
  
  .p4t-footer-bottom {
    padding: 10px 25px;
    font-size: 0.75rem;
  }
}

/* Small Mobile */
@media (max-width: 575px) {
  .p4t-footer-content {
    padding: 0 20px 25px;
  }
  
  .p4t-footer-bottom {
    padding: 8px 20px;
  }
}


/* ============================================
   P4T WHY WE ALWAYS SUCCEED - STANDALONE SECTION
   Full-width banner that connects seamlessly with next section
   ============================================ */

.p4t-why-always-succeed-main {
    background: linear-gradient(135deg, #1A5F7A 0%, #0d3d4f 100%);
    padding: 50px 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.p4t-why-always-succeed-main::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 55px solid rgba(255, 255, 255, 0.04);
    top: -100px;
    right: -80px;
}

.p4t-why-always-succeed-main::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 40px solid rgba(255, 255, 255, 0.04);
    bottom: -60px;
    left: -40px;
}

.p4t-why-always-succeed-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
    position: relative;
    z-index: 1;
}

.p4t-why-always-succeed-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--p4t-yellow);
    border: 1px solid rgba(243, 112, 33, 0.5);
    color: #000000;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.p4t-why-always-succeed-label i {
    font-size: 0.9rem;
}

.p4t-why-always-succeed-main h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 18px;
    max-width: 1200px;
    letter-spacing: -0.2px;
}

.p4t-why-always-succeed-main p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 1200px;
}

.p4t-why-always-succeed-main p strong {
    color: #ffffff;
    font-weight: 700;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .p4t-why-always-succeed-main {
        padding: 40px 0;
    }

    .p4t-why-always-succeed-container {
        padding: 0 40px;
    }

    .p4t-why-always-succeed-main h2 {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }

    .p4t-why-always-succeed-main p {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-why-always-succeed-main {
        padding: 35px 0;
    }

    .p4t-why-always-succeed-container {
        padding: 0 25px;
    }

    .p4t-why-always-succeed-label {
        margin-bottom: 16px;
    }

    .p4t-why-always-succeed-main h2 {
        font-size: 1.5rem;
        margin-bottom: 14px;
    }

    .p4t-why-always-succeed-main p {
        font-size: 0.98rem;
        line-height: 1.8;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-why-always-succeed-main {
        padding: 30px 0;
    }

    .p4t-why-always-succeed-container {
        padding: 0 20px;
    }

    .p4t-why-always-succeed-main h2 {
        font-size: 1.35rem;
    }

    .p4t-why-always-succeed-main p {
        font-size: 0.95rem;
    }
}



/* ============================================
   P4T HERO SLIDER 2
   Split-panel hero: content left, slideshow right
   ============================================ */

.p4t-hero2 {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 100vh;
  max-height: 960px;
  overflow: hidden;
  position: relative;
}

/* ============================================
   LEFT PANEL – CONTENT
   ============================================ */
.p4t-hero2-panel {
  background: #1A5F7A;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Eyebrow */
.p4t-hero2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(18px);
  animation: p4t2-fadein 0.6s ease forwards 0.2s;
}

.p4t-hero2-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
  animation: p4t2-pulse 2.5s ease-in-out infinite;
}

@keyframes p4t2-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

.p4t-hero2-eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* Headline */
.p4t-hero2-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: p4t2-fadein 0.6s ease forwards 0.38s;
}

.p4t-hero2-headline em {
  font-style: italic;
  color: #FDB833;
}

/* Description */
.p4t-hero2-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  max-width: 400px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  animation: p4t2-fadein 0.6s ease forwards 0.52s;
}

/* CTA buttons */
.p4t-hero2-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  animation: p4t2-fadein 0.6s ease forwards 0.68s;
}

.p4t-hero2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 28px;
  border-radius: 10px;
  font-size: 0.97rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.28s ease;
  letter-spacing: 0.2px;
}

.p4t-hero2-btn-icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.28s ease;
}

.p4t-hero2-btn:hover .p4t-hero2-btn-icon {
  transform: translateX(4px);
}

.p4t-hero2-btn-primary {
  background: #F37021;
  color: #ffffff;
}
.p4t-hero2-btn-primary .p4t-hero2-btn-icon {
  background: rgba(255,255,255,0.22);
  color: #ffffff;
}
.p4t-hero2-btn-primary:hover {
  background: #D95F0E;
  color: #ffffff;
  transform: translateY(-2px);
}



/* ============================================
   RIGHT PANEL – SLIDESHOW
   ============================================ */
.p4t-hero2-slides {
  position: relative;
  overflow: hidden;
}

.p4t-hero2-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.p4t-hero2-slide.active {
  opacity: 1;
  z-index: 1;
}

.p4t-hero2-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: p4t2-zoom 8s ease-out forwards;
}

@keyframes p4t2-zoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}



/* Bottom vignette for controls readability */
.p4t-hero2-slides::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent);
  z-index: 2;
  pointer-events: none;
}



/* Controls */
.p4t-hero2-controls {
  position: absolute;
  bottom: 32px;
  left: 36px;
  right: 36px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p4t-hero2-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.p4t-hero2-arrow:hover {
  background: #F37021;
  border-color: #F37021;
  transform: scale(1.08);
}

.p4t-hero2-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.p4t-hero2-dot {
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}

.p4t-hero2-dot.active {
  width: 48px;
  height: 3px;
  background: #F37021;
}

/* ============================================
   SHARED ANIMATION
   ============================================ */
@keyframes p4t2-fadein {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .p4t-hero2 {
    grid-template-columns: 46% 54%;
  }
  .p4t-hero2-panel {
    padding: 40px;
  }
}

@media (max-width: 900px) {
  .p4t-hero2 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    max-height: none;
    min-height: 100svh;
  }
  .p4t-hero2-slides {
    grid-row: 1;
    min-height: 55vw;
    max-height: 480px;
  }

  .p4t-hero2-panel {
    grid-row: 2;
    padding: 40px 25px 50px;
  }
  .p4t-hero2-headline {
    font-size: clamp(1.75rem, 5vw, 2.4rem);
  }
  .p4t-hero2-ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .p4t-hero2-btn {
    flex: 1;
    min-width: 200px;
  }

}

@media (max-width: 560px) {
  .p4t-hero2-panel {
    padding: 30px 20px 40px;
  }
  .p4t-hero2-ctas {
    flex-direction: column;
  }
  .p4t-hero2-btn {
    min-width: unset;
  }
}

/* ============================================
   DONATE TO P4T SECTION
   Left: Donation info | Right: Sticky DonorBox form
   ============================================ */

.donate-to-p4t {
    background-color: #ffffff;
    padding: 50px 0;
    position: relative;
}

.donate-to-p4t-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.donate-to-p4t-header {
    margin-bottom: 38px;
    text-align: center;
}

.donate-to-p4t-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.donate-to-p4t-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.donate-to-p4t-header h2 span {
    color: #F37021;
}

.donate-to-p4t-header-line {
    width: 50px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin: 14px auto 0;
}

/* ============================================
   MAIN CONTENT - TWO COLUMNS
   ============================================ */

.donate-to-p4t-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* ============================================
   LEFT: DONATION INFORMATION (55%)
   ============================================ */

.donate-to-p4t-info {
    flex: 1;
    min-width: 0;
    min-height: 1100px;
}

/* Intro */
.donate-to-p4t-intro {
    margin-bottom: 28px;
}

.donate-to-p4t-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
    margin: 0;
}

/* Section */
.donate-to-p4t-section {
    background: linear-gradient(135deg, #1A5F7A 0%, #0d3d4f 100%);
    border-radius: 14px;
    padding: 28px 32px;
    margin-bottom: 28px;
}

.donate-to-p4t-section-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #F9C74F;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.donate-to-p4t-section-title i {
    font-size: 1.4rem;
}

.donate-to-p4t-section-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #ffffff;
    margin: 0;
}

/* Options Title */
.donate-to-p4t-options {
    margin-bottom: 28px;
}

.donate-to-p4t-options-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

/* Option Card */
.donate-to-p4t-option {
    display: flex;
    gap: 18px;
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.donate-to-p4t-option:hover {
    border-color: #F37021;
    box-shadow: 0 8px 24px rgba(243, 112, 33, 0.12);
}

.donate-to-p4t-option-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(243, 112, 33, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.donate-to-p4t-option-icon i {
    font-size: 1.3rem;
    color: #F37021;
}

.donate-to-p4t-option-content {
    flex: 1;
}

.donate-to-p4t-option-content h5 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.donate-to-p4t-option-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666666;
    margin: 0 0 12px 0;
}

/* Bank Details */
.donate-to-p4t-bank-details {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.donate-to-p4t-bank-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: baseline;
}

.donate-to-p4t-bank-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1A5F7A;
    min-width: 120px;
}

.donate-to-p4t-bank-value {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
}

.donate-to-p4t-bank-accounts {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.donate-to-p4t-bank-account {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Courier New', monospace;
    background-color: #fdf6f1;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
}

.donate-to-p4t-bank-note {
    font-size: 0.8rem;
    color: #999999;
    font-style: italic;
}

/* Impact Message */
.donate-to-p4t-impact {
    display: flex;
    gap: 18px;
    background: linear-gradient(135deg, rgba(243, 112, 33, 0.08) 0%, rgba(243, 112, 33, 0.04) 100%);
    border: 1px solid rgba(243, 112, 33, 0.2);
    border-radius: 12px;
    padding: 24px;
}

.donate-to-p4t-impact-icon {
    width: 50px;
    height: 50px;
    background-color: #F37021;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.donate-to-p4t-impact-icon i {
    font-size: 1.4rem;
    color: #ffffff;
}

.donate-to-p4t-impact-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

.donate-to-p4t-impact-content strong {
    color: #F37021;
    font-weight: 700;
}

/* ============================================
   RIGHT: STICKY DONORBOX FORM (45%)
   ============================================ */

.donate-to-p4t-form-column {
    flex: 0 0 45%;
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.donate-to-p4t-form-sticky {
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 14px;
    padding: 28px 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.donate-to-p4t-form-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eeeeee;
}

.donate-to-p4t-form-header h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.donate-to-p4t-form-header p {
    font-size: 0.9rem;
    color: #777777;
    margin: 0;
}

/* DonorBox Container - CENTER THE FORM */
.donate-to-p4t-donorbox {
    margin: 0 auto 20px auto;
    width: 100%;
    max-width: 480px;
    display: block !important;
}

/* DonorBox Widget Styling */
.donate-to-p4t-donorbox dbox-widget {
    display: block !important;
    width: 100% !important;
}

.donate-to-p4t-donorbox iframe {
    width: 100% !important;
    display: block !important;
    border: none !important;
}

/* Reset any default margins/padding on the widget */
.donate-to-p4t-donorbox * {
    box-sizing: border-box !important;
}

/* Force center alignment for any inner elements */
.donate-to-p4t-donorbox > * {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Trust Badges */
.donate-to-p4t-trust {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 16px;
    background-color: rgba(26, 95, 122, 0.05);
    border-radius: 8px;
}

.donate-to-p4t-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.donate-to-p4t-trust-item i {
    font-size: 1.2rem;
    color: #1A5F7A;
}

.donate-to-p4t-trust-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #555555;
    text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .donate-to-p4t {
        padding: 40px 0;
    }

    .donate-to-p4t-container {
        padding: 0 40px;
    }

    .donate-to-p4t-header {
        margin-bottom: 32px;
    }

    .donate-to-p4t-content {
        flex-direction: column;
        gap: 40px;
    }

    .donate-to-p4t-info {
        min-height: auto;
    }

    .donate-to-p4t-form-column {
        flex: none;
        width: 100%;
        position: relative;
        top: auto;
        max-width: 600px;
        margin: 0 auto;
    }

    .donate-to-p4t-intro p {
        font-size: 1.05rem;
    }

    .donate-to-p4t-option {
        padding: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .donate-to-p4t {
        padding: 35px 0;
    }

    .donate-to-p4t-container {
        padding: 0 25px;
    }

    .donate-to-p4t-header {
        margin-bottom: 28px;
    }

    .donate-to-p4t-header h2 {
        font-size: 2rem;
    }

    .donate-to-p4t-content {
        gap: 32px;
    }

    .donate-to-p4t-intro {
        margin-bottom: 24px;
    }

    .donate-to-p4t-intro p {
        font-size: 1rem;
    }

    .donate-to-p4t-section {
        padding: 24px 24px;
        margin-bottom: 24px;
    }

    .donate-to-p4t-section-title {
        font-size: 1.15rem;
    }

    .donate-to-p4t-options {
        margin-bottom: 24px;
    }

    .donate-to-p4t-option {
        flex-direction: column;
        gap: 14px;
        padding: 18px;
        margin-bottom: 16px;
    }

    .donate-to-p4t-bank-details {
        padding: 14px 16px;
    }

    .donate-to-p4t-bank-label {
        min-width: 100px;
        font-size: 0.82rem;
    }

    .donate-to-p4t-bank-value {
        font-size: 0.87rem;
    }

    .donate-to-p4t-impact {
        flex-direction: column;
        gap: 14px;
        padding: 20px;
    }

    .donate-to-p4t-form-sticky {
        padding: 20px 15px;
    }

    .donate-to-p4t-form-header {
        margin-bottom: 18px;
        padding-bottom: 16px;
    }

    .donate-to-p4t-donorbox {
        margin-bottom: 18px;
    }

    .donate-to-p4t-trust {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .donate-to-p4t {
        padding: 30px 0;
    }

    .donate-to-p4t-container {
        padding: 0 20px;
    }

    .donate-to-p4t-header h2 {
        font-size: 1.75rem;
    }

    .donate-to-p4t-intro p {
        font-size: 0.95rem;
    }

    .donate-to-p4t-section {
        padding: 20px;
    }

    .donate-to-p4t-section-title {
        font-size: 1.05rem;
        gap: 10px;
    }

    .donate-to-p4t-option {
        padding: 16px;
    }

    .donate-to-p4t-bank-details {
        padding: 12px 14px;
    }

    .donate-to-p4t-form-sticky {
        padding: 18px 12px;
    }

    .donate-to-p4t-form-header h3 {
        font-size: 1.3rem;
    }

    .donate-to-p4t-donorbox {
        margin-bottom: 16px;
    }

    .donate-to-p4t-trust {
        padding: 14px;
    }
}


/* ============================================
   SPONSOR A CHILD AT P4T SECTION
   Left: Sponsorship info | Right: Sticky DonorBox form
   ============================================ */

.sponsor-a-child-at-p4t {
    background-color: #ffffff;
    padding: 50px 0;
    position: relative;
}

.sponsor-a-child-at-p4t-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.sponsor-a-child-at-p4t-header {
    margin-bottom: 38px;
    text-align: center;
}

.sponsor-a-child-at-p4t-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.sponsor-a-child-at-p4t-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.sponsor-a-child-at-p4t-header h2 span {
    color: #F37021;
}

.sponsor-a-child-at-p4t-header-line {
    width: 50px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin: 14px auto 0;
}

/* ============================================
   MAIN CONTENT - TWO COLUMNS
   ============================================ */

.sponsor-a-child-at-p4t-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* ============================================
   LEFT: SPONSORSHIP INFORMATION (55%)
   ============================================ */

.sponsor-a-child-at-p4t-info {
    flex: 1;
    min-width: 0;
    min-height: 1200px;
}

/* Intro */
.sponsor-a-child-at-p4t-intro {
    margin-bottom: 28px;
}

.sponsor-a-child-at-p4t-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
    margin: 0;
}

/* Options Section */
.sponsor-a-child-at-p4t-options {
    margin-bottom: 28px;
}

.sponsor-a-child-at-p4t-options-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

/* Option Card */
.sponsor-a-child-at-p4t-option {
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.sponsor-a-child-at-p4t-option:hover {
    border-color: #F37021;
    box-shadow: 0 8px 24px rgba(243, 112, 33, 0.12);
    transform: translateY(-2px);
}

.sponsor-a-child-at-p4t-option-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.sponsor-a-child-at-p4t-option-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(243, 112, 33, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sponsor-a-child-at-p4t-option-icon i {
    font-size: 1.3rem;
    color: #F37021;
}

.sponsor-a-child-at-p4t-option-title {
    flex: 1;
}

.sponsor-a-child-at-p4t-option-title h4 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.sponsor-a-child-at-p4t-option-price {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #F37021;
    line-height: 1;
}

.sponsor-a-child-at-p4t-option-details {
    padding-left: 66px;
}

.sponsor-a-child-at-p4t-option-term {
    font-size: 0.88rem;
    color: #777777;
    margin: 0 0 10px 0;
    font-style: italic;
}

.sponsor-a-child-at-p4t-option-coverage {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 8px 0;
}

.sponsor-a-child-at-p4t-option-coverage strong {
    color: #1A5F7A;
    font-weight: 700;
}

.sponsor-a-child-at-p4t-option-note {
    font-size: 0.85rem;
    color: #999999;
    margin: 8px 0 0 0;
    font-style: italic;
}

.sponsor-a-child-at-p4t-option-alt {
    background-color: rgba(26, 95, 122, 0.08);
    border-radius: 6px;
    padding: 8px 12px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #1A5F7A;
}

.sponsor-a-child-at-p4t-option-alt strong {
    font-weight: 700;
}

/* Benefits Section */
.sponsor-a-child-at-p4t-benefits {
    background: linear-gradient(135deg, #1A5F7A 0%, #0d3d4f 100%);
    border-radius: 14px;
    padding: 28px 32px;
}

.sponsor-a-child-at-p4t-benefits-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #F9C74F;
    margin: 0 0 18px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sponsor-a-child-at-p4t-benefits-title i {
    font-size: 1.3rem;
}

.sponsor-a-child-at-p4t-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sponsor-a-child-at-p4t-benefits-list li {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sponsor-a-child-at-p4t-benefits-list li i {
    font-size: 1.1rem;
    color: #F9C74F;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   RIGHT: STICKY DONORBOX FORM (45%)
   ============================================ */

.sponsor-a-child-at-p4t-form-column {
    flex: 0 0 45%;
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sponsor-a-child-at-p4t-form-sticky {
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 14px;
    padding: 28px 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.sponsor-a-child-at-p4t-form-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eeeeee;
}

.sponsor-a-child-at-p4t-form-header h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.sponsor-a-child-at-p4t-form-header p {
    font-size: 0.9rem;
    color: #777777;
    margin: 0;
}

/* DonorBox Container */
.sponsor-a-child-at-p4t-donorbox {
    margin: 0 auto 20px auto;
    width: 100%;
    max-width: 480px;
    display: block !important;
}

/* DonorBox Widget Styling */
.sponsor-a-child-at-p4t-donorbox dbox-widget {
    display: block !important;
    width: 100% !important;
}

.sponsor-a-child-at-p4t-donorbox iframe {
    width: 100% !important;
    display: block !important;
    border: none !important;
}

/* Reset any default margins/padding on the widget */
.sponsor-a-child-at-p4t-donorbox * {
    box-sizing: border-box !important;
}

/* Force center all children */
.sponsor-a-child-at-p4t-donorbox > * {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Trust Badges */
.sponsor-a-child-at-p4t-trust {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 16px;
    background-color: rgba(26, 95, 122, 0.05);
    border-radius: 8px;
}

.sponsor-a-child-at-p4t-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.sponsor-a-child-at-p4t-trust-item i {
    font-size: 1.2rem;
    color: #1A5F7A;
}

.sponsor-a-child-at-p4t-trust-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #555555;
    text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .sponsor-a-child-at-p4t {
        padding: 40px 0;
    }

    .sponsor-a-child-at-p4t-container {
        padding: 0 40px;
    }

    .sponsor-a-child-at-p4t-header {
        margin-bottom: 32px;
    }

    .sponsor-a-child-at-p4t-content {
        flex-direction: column;
        gap: 40px;
    }

    .sponsor-a-child-at-p4t-info {
        min-height: auto;
    }

    .sponsor-a-child-at-p4t-form-column {
        flex: none;
        width: 100%;
        position: relative;
        top: auto;
        max-width: 600px;
        margin: 0 auto;
    }

    .sponsor-a-child-at-p4t-intro p {
        font-size: 1.05rem;
    }

    .sponsor-a-child-at-p4t-option {
        padding: 18px;
    }

    .sponsor-a-child-at-p4t-option-details {
        padding-left: 0;
        margin-top: 12px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .sponsor-a-child-at-p4t {
        padding: 35px 0;
    }

    .sponsor-a-child-at-p4t-container {
        padding: 0 25px;
    }

    .sponsor-a-child-at-p4t-header {
        margin-bottom: 28px;
    }

    .sponsor-a-child-at-p4t-header h2 {
        font-size: 2rem;
    }

    .sponsor-a-child-at-p4t-content {
        gap: 32px;
    }

    .sponsor-a-child-at-p4t-intro {
        margin-bottom: 24px;
    }

    .sponsor-a-child-at-p4t-intro p {
        font-size: 1rem;
    }

    .sponsor-a-child-at-p4t-options-title {
        font-size: 1.15rem;
        margin-bottom: 16px;
    }

    .sponsor-a-child-at-p4t-option {
        padding: 16px;
        margin-bottom: 14px;
    }

    .sponsor-a-child-at-p4t-option-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .sponsor-a-child-at-p4t-option-icon {
        width: 45px;
        height: 45px;
    }

    .sponsor-a-child-at-p4t-option-icon i {
        font-size: 1.2rem;
    }

    .sponsor-a-child-at-p4t-option-title h4 {
        font-size: 1.05rem;
    }

    .sponsor-a-child-at-p4t-option-price {
        font-size: 1.25rem;
    }

    .sponsor-a-child-at-p4t-option-details {
        padding-left: 0;
        margin-top: 10px;
    }

    .sponsor-a-child-at-p4t-benefits {
        padding: 24px 24px;
    }

    .sponsor-a-child-at-p4t-benefits-title {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    .sponsor-a-child-at-p4t-benefits-list {
        gap: 10px;
    }

    .sponsor-a-child-at-p4t-benefits-list li {
        font-size: 0.95rem;
    }

    .sponsor-a-child-at-p4t-form-sticky {
        padding: 20px 15px;
    }

    .sponsor-a-child-at-p4t-form-header {
        margin-bottom: 18px;
        padding-bottom: 16px;
    }

    .sponsor-a-child-at-p4t-donorbox {
        margin-bottom: 18px;
    }

    .sponsor-a-child-at-p4t-trust {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .sponsor-a-child-at-p4t {
        padding: 30px 0;
    }

    .sponsor-a-child-at-p4t-container {
        padding: 0 20px;
    }

    .sponsor-a-child-at-p4t-header h2 {
        font-size: 1.75rem;
    }

    .sponsor-a-child-at-p4t-intro p {
        font-size: 0.95rem;
    }

    .sponsor-a-child-at-p4t-options-title {
        font-size: 1.05rem;
    }

    .sponsor-a-child-at-p4t-option {
        padding: 14px;
    }

    .sponsor-a-child-at-p4t-option-title h4 {
        font-size: 1rem;
    }

    .sponsor-a-child-at-p4t-option-price {
        font-size: 1.15rem;
    }

    .sponsor-a-child-at-p4t-benefits {
        padding: 20px;
    }

    .sponsor-a-child-at-p4t-form-sticky {
        padding: 18px 12px;
    }

    .sponsor-a-child-at-p4t-form-header h3 {
        font-size: 1.3rem;
    }

    .sponsor-a-child-at-p4t-donorbox {
        margin-bottom: 16px;
    }

    .sponsor-a-child-at-p4t-trust {
        padding: 14px;
    }
}


/* ============================================
   BECOME A VOLUNTEER - MODAL VERSION
   ============================================ */

.become-a-volunteer-at-p4t {
    background-color: #ffffff;
    padding: 50px 0;
}

.become-a-volunteer-at-p4t-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Header */
.become-a-volunteer-at-p4t-header {
    text-align: center;
    margin-bottom: 38px;
}

.become-a-volunteer-at-p4t-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.become-a-volunteer-at-p4t-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0;
}

.become-a-volunteer-at-p4t-header h2 span {
    color: #F37021;
}

.become-a-volunteer-at-p4t-header-line {
    width: 50px;
    height: 3px;
    background-color: #F37021;
    margin: 14px auto 0;
}

/* Intro */
.become-a-volunteer-at-p4t-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.become-a-volunteer-at-p4t-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444444;
}

/* Three Column Grid */
.become-a-volunteer-at-p4t-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.become-a-volunteer-at-p4t-card {
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 28px;
}

.become-a-volunteer-at-p4t-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 18px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.become-a-volunteer-at-p4t-card h3 i {
    color: #F37021;
}

.become-a-volunteer-at-p4t-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.become-a-volunteer-at-p4t-card li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    padding-left: 18px;
    position: relative;
}

.become-a-volunteer-at-p4t-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #F37021;
}

.become-a-volunteer-at-p4t-card li strong {
    color: #1A5F7A;
}

.become-a-volunteer-at-p4t-support-item {
    margin-bottom: 16px;
}

.become-a-volunteer-at-p4t-support-item:last-child {
    margin-bottom: 0;
}

.become-a-volunteer-at-p4t-support-item h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1A5F7A;
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.become-a-volunteer-at-p4t-support-item h4 i {
    color: #F37021;
}

.become-a-volunteer-at-p4t-support-item p {
    font-size: 0.9rem;
    color: #666666;
    margin: 0;
}

/* CTA Button */
.become-a-volunteer-at-p4t-cta {
    text-align: center;
}

.become-a-volunteer-at-p4t-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #F37021;
    color: #ffffff;
    padding: 16px 48px;
    border: none;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.become-a-volunteer-at-p4t-apply-btn:hover {
    background-color: #d55a0d;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(243, 112, 33, 0.35);
}

.become-a-volunteer-at-p4t-cta-note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #777777;
}

/* ============================================
   MODAL
   ============================================ */

.become-a-volunteer-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.become-a-volunteer-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.become-a-volunteer-modal {
    background-color: #ffffff;
    border-radius: 14px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.become-a-volunteer-modal-overlay.active .become-a-volunteer-modal {
    transform: scale(1);
}

.become-a-volunteer-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 2px solid #eeeeee;
}

.become-a-volunteer-modal-header h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.become-a-volunteer-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #f5f5f5;
    color: #555555;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.become-a-volunteer-modal-close:hover {
    background-color: #F37021;
    color: #ffffff;
}

.become-a-volunteer-modal-body {
    padding: 32px;
    overflow-y: auto;
    max-height: calc(90vh - 100px);
}

/* ============================================
   FORM STYLING
   ============================================ */

.become-a-volunteer-form-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #eeeeee;
}

.become-a-volunteer-form-section:last-of-type {
    border-bottom: none;
}

.become-a-volunteer-form-section h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #1A5F7A;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.become-a-volunteer-form-section h4 i {
    color: #F37021;
}

.become-a-volunteer-form-group {
    margin-bottom: 18px;
}

.become-a-volunteer-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 18px;
}

.become-a-volunteer-form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #444444;
    margin-bottom: 6px;
}

.become-a-volunteer-form-group label .required {
    color: #F37021;
}

.become-a-volunteer-form-group input,
.become-a-volunteer-form-group select,
.become-a-volunteer-form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.become-a-volunteer-form-group input:focus,
.become-a-volunteer-form-group select:focus,
.become-a-volunteer-form-group textarea:focus {
    outline: none;
    border-color: #F37021;
}

.become-a-volunteer-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23F37021' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.become-a-volunteer-form-group textarea {
    resize: vertical;
    font-family: inherit;
}

/* Custom Checkboxes */
.become-a-volunteer-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.become-a-volunteer-checkbox {
    position: relative;
    display: block;
}

.become-a-volunteer-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
}

.become-a-volunteer-checkbox span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #ffffff;
    font-size: 0.9rem;
    color: #555555;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    text-align: center;
}

.become-a-volunteer-checkbox:hover span {
    border-color: #F37021;
    background-color: rgba(243, 112, 33, 0.05);
}

.become-a-volunteer-checkbox input:checked + span {
    background-color: #F37021;
    border-color: #F37021;
    color: #ffffff;
    font-weight: 700;
}

.become-a-volunteer-checkbox input:checked + span::before {
    content: '✓ ';
    margin-right: 6px;
}

/* Consent Checkboxes */
.become-a-volunteer-consent-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.become-a-volunteer-consent {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 14px !important;
    border: 2px solid #eeeeee !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    background-color: #ffffff !important;
}

.become-a-volunteer-consent:hover {
    border-color: #F37021 !important;
    background-color: rgba(243, 112, 33, 0.05) !important;
}

.become-a-volunteer-consent:has(input[type="checkbox"]:checked) {
    border-color: #F37021 !important;
    background-color: rgba(243, 112, 33, 0.08) !important;
}

.become-a-volunteer-consent input[type="checkbox"] {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    cursor: pointer !important;
    accent-color: #F37021 !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
    position: relative !important;
    opacity: 1 !important;
}

.become-a-volunteer-consent .consent-text {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    color: #555555 !important;
    user-select: none !important;
}

/* Privacy Notice Box */
.become-a-volunteer-privacy-notice {
    background-color: rgba(26, 95, 122, 0.05);
    border-left: 4px solid #1A5F7A;
    border-radius: 0 8px 8px 0;
    padding: 20px;
    margin-bottom: 0;
}

.become-a-volunteer-privacy-notice p {
    font-size: 0.9rem;
    color: #444444;
    margin: 0 0 12px 0;
}

.become-a-volunteer-privacy-notice strong {
    color: #1A5F7A;
    font-weight: 700;
}

.become-a-volunteer-privacy-notice ul {
    margin: 0 0 16px 0;
    padding-left: 20px;
}

.become-a-volunteer-privacy-notice li {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 8px;
}

.become-a-volunteer-privacy-notice a {
    color: #F37021;
    text-decoration: none;
    font-weight: 600;
}

.become-a-volunteer-privacy-notice a:hover {
    text-decoration: underline;
}

.become-a-volunteer-privacy-consent {
    margin-top: 16px;
    background-color: #ffffff !important;
    border: 2px solid #1A5F7A !important;
}

.become-a-volunteer-privacy-consent:hover {
    border-color: #F37021 !important;
    background-color: rgba(243, 112, 33, 0.05) !important;
}

/* Submit Button */
.become-a-volunteer-form-submit {
    text-align: center;
    margin-top: 24px;
}

.become-a-volunteer-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #F37021;
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.become-a-volunteer-submit-btn:hover {
    background-color: #d55a0d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(243, 112, 33, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .become-a-volunteer-at-p4t-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .become-a-volunteer-at-p4t-container {
        padding: 0 25px;
    }

    .become-a-volunteer-at-p4t-header h2 {
        font-size: 2rem;
    }

    .become-a-volunteer-modal {
        width: 95%;
    }

    .become-a-volunteer-modal-header {
        padding: 20px 24px;
    }

    .become-a-volunteer-modal-body {
        padding: 24px 20px;
    }

    .become-a-volunteer-form-row {
        grid-template-columns: 1fr;
    }

    .become-a-volunteer-checkbox-grid {
        grid-template-columns: 1fr;
    }

    .become-a-volunteer-submit-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ============================================
   MEET P4T PARTNERS SECTION
   Planning for Tomorrow Youth Organisation
   ============================================ */

.meet-p4t-partners {
    background-color: #ffffff;
    padding: 50px 0 50px;
}

.meet-p4t-partners-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

/* ============================================
   GRID — 4 per row
   ============================================ */

.meet-p4t-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ============================================
   LOGO CARD — fixed size, centres any logo
   ============================================ */

.meet-p4t-partners-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    background-color: #ffffff;
    border: 1.5px solid #E8E8E8;
    border-radius: 12px;
    padding: 30px 36px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.meet-p4t-partners-logo-item:hover {
    border-color: rgba(243, 112, 33, 0.4);
    box-shadow: 0 6px 24px rgba(243, 112, 33, 0.10);
}

.meet-p4t-partners-logo-item img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .meet-p4t-partners {
        padding: 40px 0 40px;
    }

    .meet-p4t-partners-container {
        padding: 0 40px;
    }

    .meet-p4t-partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .meet-p4t-partners {
        padding: 35px 0 35px;
    }

    .meet-p4t-partners-container {
        padding: 0 25px;
    }

    .meet-p4t-partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .meet-p4t-partners-logo-item {
        height: 170px;
        padding: 24px 28px;
    }

    .meet-p4t-partners-logo-item img {
        max-height: 100px;
    }
}

@media (max-width: 575px) {
    .meet-p4t-partners {
        padding: 30px 0 30px;
    }

    .meet-p4t-partners-container {
        padding: 0 20px;
    }

    .meet-p4t-partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .meet-p4t-partners-logo-item {
        height: 140px;
        padding: 18px 20px;
    }

    .meet-p4t-partners-logo-item img {
        max-height: 80px;
    }
}



/* ============================================
   P4T REPORTS & UPDATES SECTION
   Planning for Tomorrow Youth Organisation
   ============================================ */

.p4t-reports-updates {
    background-color: #ffffff;
    padding: 50px 0 50px;
}

.p4t-reports-updates-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

/* ============================================
   TABLE WRAPPER — horizontal scroll on mobile
   ============================================ */

.p4t-reports-updates-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    border: 1.5px solid #E8E8E8;
}

/* ============================================
   TABLE
   ============================================ */

.p4t-reports-updates-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    min-width: 700px;
}

/* ── Head ────────────────────────────────── */
.p4t-reports-updates-table thead tr {
    background-color: #F37021;
}

.p4t-reports-updates-table thead th,
.p4t-reports-updates-table thead th.p4t-reports-updates-col-num,
.p4t-reports-updates-table thead th.p4t-reports-updates-col-name,
.p4t-reports-updates-table thead th.p4t-reports-updates-col-summary,
.p4t-reports-updates-table thead th.p4t-reports-updates-col-size,
.p4t-reports-updates-table thead th.p4t-reports-updates-col-action {
    color: #ffffff !important;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 20px;
    text-align: left;
    white-space: nowrap;
}

/* ── Body rows ───────────────────────────── */
.p4t-reports-updates-table tbody tr {
    border-bottom: 1px solid #F0F0F0;
    transition: background-color 0.2s ease;
}

.p4t-reports-updates-table tbody tr:last-child {
    border-bottom: none;
}

.p4t-reports-updates-table tbody tr:hover {
    background-color: rgba(243, 112, 33, 0.04);
}

.p4t-reports-updates-table tbody td {
    padding: 18px 20px;
    color: #1a1a1a;
    vertical-align: middle;
}

.p4t-reports-updates-table thead th.p4t-reports-updates-col-num {
    text-align: center;
}

.p4t-reports-updates-table thead th.p4t-reports-updates-col-size {
    text-align: center;
}

.p4t-reports-updates-table thead th.p4t-reports-updates-col-action {
    text-align: center;
}

.p4t-reports-updates-col-num {
    width: 56px;
    text-align: center;
    font-weight: 700;
    color: #F37021 !important;
    font-size: 0.95rem;
}

.p4t-reports-updates-col-name {
    width: 260px;
}

.p4t-reports-updates-col-summary {
    /* takes remaining space */
    font-size: 0.92rem;
    line-height: 1.6;
}

tbody .p4t-reports-updates-col-summary {
    color: #555555;
}

.p4t-reports-updates-col-size {
    width: 100px;
    white-space: nowrap;
    font-size: 0.9rem;
    text-align: center;
}

tbody .p4t-reports-updates-col-size {
    color: #888888;
}

.p4t-reports-updates-col-action {
    width: 110px;
    text-align: center;
}

/* ── File info cell ──────────────────────── */
.p4t-reports-updates-file-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.p4t-reports-updates-file-icon {
    font-size: 1.8rem;
    color: #E8291C;
    flex-shrink: 0;
}

.p4t-reports-updates-file-title {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 3px;
}

.p4t-reports-updates-file-meta {
    display: block;
    font-size: 0.78rem;
    color: #aaaaaa;
    font-weight: 400;
}

/* ── View button ─────────────────────────── */
.p4t-reports-updates-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background-color: #F37021;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.p4t-reports-updates-btn:hover {
    background-color: #d55a0d;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(243, 112, 33, 0.30);
    color: #ffffff;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .p4t-reports-updates {
        padding: 40px 0 40px;
    }

    .p4t-reports-updates-container {
        padding: 0 40px;
    }
}

@media (max-width: 767px) {
    .p4t-reports-updates {
        padding: 35px 0 35px;
    }

    .p4t-reports-updates-container {
        padding: 0 25px;
    }

    /* ── Switch table to card-list layout ── */
    .p4t-reports-updates-table-wrapper {
        border: none;
        border-radius: 0;
        overflow-x: visible;
    }

    .p4t-reports-updates-table,
    .p4t-reports-updates-table thead,
    .p4t-reports-updates-table tbody,
    .p4t-reports-updates-table tr,
    .p4t-reports-updates-table td,
    .p4t-reports-updates-table th {
        display: block;
        width: 100%;
    }

    /* Hide entire thead */
    .p4t-reports-updates-table thead {
        display: none;
    }

    /* Remove min-width constraint on mobile */
    .p4t-reports-updates-table {
        min-width: unset;
    }

    /* Each row becomes a card */
    .p4t-reports-updates-table tbody tr {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 16px;
        border-bottom: 1px solid #F0F0F0;
        background-color: #ffffff;
    }

    .p4t-reports-updates-table tbody tr:last-child {
        border-bottom: none;
    }

    /* Hide number, summary, size columns */
    .p4t-reports-updates-table tbody td.p4t-reports-updates-col-num,
    .p4t-reports-updates-table tbody td.p4t-reports-updates-col-summary,
    .p4t-reports-updates-table tbody td.p4t-reports-updates-col-size {
        display: none !important;
    }

    /* File name cell — takes all available space */
    .p4t-reports-updates-table tbody td.p4t-reports-updates-col-name {
        display: flex;
        align-items: center;
        flex: 1;
        padding: 0;
        width: auto;
    }

    /* Action cell — shrinks to button width */
    .p4t-reports-updates-table tbody td.p4t-reports-updates-col-action {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 0;
        width: auto;
        flex-shrink: 0;
    }

    .p4t-reports-updates-file-icon {
        font-size: 1.6rem;
    }

    .p4t-reports-updates-file-title {
        font-size: 0.88rem;
    }

    .p4t-reports-updates-file-meta {
        font-size: 0.75rem;
    }

    /* Wrap entire list in a border */
    .p4t-reports-updates-table-wrapper {
        border: 1.5px solid #E8E8E8;
        border-radius: 12px;
        overflow: hidden;
    }
}

@media (max-width: 575px) {
    .p4t-reports-updates {
        padding: 30px 0 30px;
    }

    .p4t-reports-updates-container {
        padding: 0 20px;
    }

    .p4t-reports-updates-table tbody tr {
        padding: 12px 14px;
    }

    .p4t-reports-updates-file-icon {
        font-size: 1.4rem;
    }

    .p4t-reports-updates-file-title {
        font-size: 0.85rem;
    }

    .p4t-reports-updates-btn {
        padding: 7px 14px;
        font-size: 0.72rem;
    }
}