:root {
      --primary-green: #42A341;
      --dark-green: #074C00;
      --medium-green: #2d7a2d;
      --light-green: #B8E2A3;
      --very-light-green: #E8F5E9;
      --text-dark: #1a1a1a;
      --text-light: #616161;
      --bg-white: #ffffff;
      --bg-light: #f8fdf8;
      --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
      --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
      --radius-lg: 16px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }


    body {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(135deg, var(--bg-light) 0%, var(--very-light-green) 100%);
      min-height: 100vh;
    }

    .container {
      max-width: 900px;
      margin: 0 auto;
    }

    .section-title {
      font-family: 'Poppins', sans-serif;
      font-size: 2rem;
      font-weight: 600;
      color: var(--medium-green);
      text-align: center;
      margin-bottom: 2rem;

    }
    .section-subtitle{
      margin-top: 4rem; /* Adds 4rem of space ABOVE the title */
    }

    /* Profile Slider Container */
    .profile-slider-container {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
      min-height: 450px;
      padding-bottom: 60px;
    }

    /* Profile Card */
    .profile-card {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      display: grid;
      grid-template-columns: 300px 1fr;
      min-height: 400px;
      opacity: 0;
      transform: scale(0.95);
      transition: opacity 0.5s ease, transform 0.5s ease;
      position: absolute;
      width: 100%;
      pointer-events: none;
      top: 0;
      left: 0;
    }

    .profile-card.active {
      opacity: 1;
      transform: scale(1);
      position: relative;
      pointer-events: auto;
    }

    /* Profile Image */
    .profile-image {
      position: relative;
      background: linear-gradient(135deg, var(--light-green), var(--very-light-green));
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .profile-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .profile-image-placeholder {
      font-size: 6rem;
      color: var(--primary-green);
    }

    /* Profile Content */
    .profile-content {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .profile-name {
      font-family: 'Poppins', sans-serif;
      font-size: 1.75rem;
      font-weight: 600;
      color: var(--medium-green);
      margin-bottom: 0.5rem;
    }

    .profile-title {
      font-size: 1rem;
      font-weight: 600;
      color: var(--primary-green);
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .profile-description {
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--text-light);
      margin-bottom: 1.5rem;
    }

    .profile-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      padding-top: 1rem;
      border-top: 1px solid var(--very-light-green);
    }

    .meta-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: var(--text-light);
    }

    .meta-item i {
      color: var(--primary-green);
    }

    /* Navigation Buttons */
    .slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: var(--primary-green);
      color: white;
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      font-size: 1.25rem;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-md);
      z-index: 10;
    }

    .slider-nav:hover {
      background: var(--dark-green);
      transform: translateY(-50%) scale(1.1);
    }

    .slider-nav.prev {
      left: -25px;
    }

    .slider-nav.next {
      right: -25px;
    }

    /* Dots Navigation */
    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 0.75rem;
      margin-top: 2rem;
      margin-bottom: 3rem;
      position: relative;
      z-index: 5;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--light-green);
      cursor: pointer;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .dot.active {
      background: var(--primary-green);
      transform: scale(1.3);
      border-color: var(--primary-green);
    }

    .dot:hover {
      background: var(--medium-green);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .profile-slider-container {
        min-height: 950px;
        padding-bottom: 80px;
        margin-bottom: 2rem;
      }

      .profile-card {
        grid-template-columns: 1fr;
        min-height: auto;
        position: absolute;
        top: 0;
        left: 0;
      }

      .profile-card.active {
        position: absolute;
      }

      .profile-image {
        height: 250px;
      }

      .profile-content {
        padding: 1.5rem;
      }

      .profile-name {
        font-size: 1.5rem;
      }

      .profile-description {
        font-size: 0.9rem;
        line-height: 1.6;
      }

      .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 40%;
      }

      .slider-nav.prev {
        left: 10px;
      }

      .slider-nav.next {
        right: 10px;
      }

      .slider-dots {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
        margin-bottom: 0;
        width: auto;
        z-index: 15;
        background: rgba(255, 255, 255, 0.9);
        padding: 10px 20px;
        border-radius: 20px;
      }
    }

    /* Extra small devices (iPhone SE, etc.) */
    @media (max-width: 375px) {
      .profile-slider-container {
        min-height: 1050px;
      }

      .profile-description {
        font-size: 0.85rem;
        line-height: 1.5;
      }

      .section-subtitle {
        margin-top: 2rem;
        font-size: 1.3rem;
      }
    }
