      /* ===== 1. Base & Variables ===== */

      :root {
        --color-primary: #5a9d5a;
        /* Main green */
        --color-primary-dark: #2e4a2e;
        /* Dark green for footer, etc. */
        --color-primary-light: #e8f0e6;
        /* Light green for backgrounds */
        --color-primary-lighter: #f5f9f3;
        /* Even lighter for alternating sections */
        --color-text: #212529;
        /* Main text color */
        --color-text-light: #6c757d;
        /* Secondary text */
        --color-white: #ffffff;
        /* White */
        --font-heading: 'Lora', serif;
        --font-body: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
        --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
        --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
        --border-radius: 10px;
        --transition: all 0.3s ease;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: var(--font-body);
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        background-color: #f8f9fa;
        color: var(--color-text);
        line-height: 1.6;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
      }

      /* ===== 2. Typography ===== */

      h1,
      h2,
      h3,
      h4,
      .logo {
        font-family: var(--font-heading);
        font-weight: 600;
      }

      /* ===== 3. Button Styles ===== */
      .btn {
        display: inline-block;
        font-family: var(--font-body);
        font-weight: 600;
        letter-spacing: 0.03em;
        background-color: var(--color-primary);
        color: var(--color-white);
        padding: 0.6rem 1.5rem;
        /* smaller padding */
        font-size: 0.95rem;
        /* slightly smaller text */
        border-radius: 40px;
        /* keep pill shape but smaller */
        transition: var(--transition);
        text-decoration: none;
        border: none;
        cursor: pointer;
      }

      .btn:hover {
        background-color: var(--color-primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
      }


      /* ===== 4. Layout Components ===== */
      section {
        padding: 3rem 0;
      }

      section:not(.hero) {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
      }

      .section-title {
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
      }

      .section-title h2 {
        font-family: var(--font-heading);
        font-weight: 600;
        letter-spacing: 0.01em;
        font-size: 2.5rem;
        color: #212529;
      }

      .section-title h2::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        margin: 1rem auto 0;
        background-color: var(--color-primary);
        /* green line */
      }


      /* ===== 5. Header & Navigation ===== */
      header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
      }

      nav {
        display: flex;
        font-family: var(--font-heading);
        justify-content: space-between;
        align-items: center;
        padding: 1.2rem 2rem;
        background: var(--color-primary-light);
      }

      .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: relative;
      }

      /* Add this accent line at the top */
      .nav-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
      }


      .logo {
        font-size: 1.3rem;
        /* Slightly larger */
        font-family: var(--font-heading);
        letter-spacing: 0.01em;
        line-height: 1.2;
        max-height: 50px;
        /* Adjust as needed */
        height: auto;
        width: auto;
        object-fit: contain;
      }

      .header-title {
        font-family: var(--font-heading);
        font-size: 1rem;
        color: var(--color-text);
        margin-top: 0.2rem;
        font-weight: 400;
      }

      .nav-links {
        display: flex;
        align-items: center;
        margin-top: 0.3rem;
        gap: 2rem;
      }

      .nav-links a {
        font-family: var(--font-heading);
        font-weight: 500;
        text-decoration: none;
        color: #495057;
        font-size: 1rem;
        transition: color 0.3s ease;
        position: relative;
      }

      .nav-links a:hover {
        color: var(--color-primary-dark);
      }

      .nav-links a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -4px;
        left: 0;
        background-color: var(--color-primary-dark);
        transition: var(--transition);
      }

      .nav-links a:hover::after {
        width: 100%;
      }

      .hamburger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
      }

      /* Hero Section */

      .hero {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: linear-gradient(rgba(40, 90, 40, 0.3), rgba(0, 0, 0, 0.3)), linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('img/hero1.webp');
        background-size: cover;
        background-position: center;
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        padding: 2.5rem;
        border-radius: var(--border-radius);
      }

      .hero h1 {
        font-family: var(--font-heading);
        letter-spacing: 0.02em;
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.2;
      }

      .about-image img,
      .speaking-image img,
      .inspiration-card {
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-md);
        transition: var(--transition);
      }

      .about-image img:hover,
      .speaking-image img:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
      }

      .compass-container {
        margin-bottom: 1.5rem;
        animation: pulse 4s infinite alternate;
      }

      .compass-img {
        width: 150px;
        height: auto;
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
        position: relative;
      }

      .sparkle {
        animation: pulseSparkle 2s infinite;
        transition: all 0.3s ease-in-out;
        border-radius: 8px;
        position: relative;
        z-index: 1;
      }

      .tagline {
        font-size: 1.1rem;
      }


      /* About Section */

      #about {
        background: var(--color-primary-lighter);
      }

      .about-content {
        display: flex;
        align-items: center;
        gap: 4rem;
      }

      .about-image {
        flex: 1;
      }

      .about-image img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }

      .about-image img:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
      }

      .about-text {
        flex: 1;
      }

      .about-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
      }

      .about-text p {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
      }

      /* Speaking Section */
      .speaking,
      #about {
        background-color: var(--color-primary-light);
      }

      .speaking {
        background-color: #d4e4cd;
        padding: 3rem 0;
      }

      .speaking-content {
        display: flex;
        align-items: flex-start;
        /* Changed from center to better align with content */
        gap: 3rem;
      }

      .speaking-text {
        flex: 3;
        /* Increased from 1 to 2 to give text more prominence */
      }

      .speaking-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        font-family: var(--font-heading);
      }

      .speaking-text p {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
      }

      .speaking-image {
        flex: 2;
        max-width: 40%;
        /* Adjusted width */
      }

      .speaking-image img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        /* Reduced shadow */
        opacity: 0.9;
        /* Added slight transparency */
        filter: brightness(0.95);
        /* Slightly dimmed */
      }

      .speaking-topics {
        background: rgba(40, 90, 40, 0.2);
        padding: 1.5rem;
        border-radius: 8px;
        margin-top: 2rem;
      }

      .speaking-topics h4 {
        margin-bottom: 1rem;
        font-size: 1.2rem;
        color: #212529;
      }

      .speaking-topics ul {
        list-style-type: none;
        padding-left: 0;
      }

      .speaking-topics li {
        margin-bottom: 0.7rem;
        padding-left: 1.5rem;
        position: relative;
      }

      .speaking-topics li:before {
        content: "•";
        color: #5a9d5a;
        font-weight: bold;
        position: absolute;
        left: 0;
      }

      /* Responsive adjustments */
      @media (max-width: 992px) {
        .speaking-content {
          flex-direction: column-reverse;
          gap: 2rem;
        }

        .speaking-image {
          max-width: 80%;
          /* Control image size on smaller screens */
          margin: 0 auto 1.5rem;
          /* Center the image */
        }

        .speaking-text {
          width: 100%;
        }
      }

      @media (max-width: 992px) and (min-width: 769px) {
        .video-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      /* Added for even smaller screens */
      @media (max-width: 576px) {
        .speaking-image {
          max-width: 85%;
        }
      }

      /* Services Section */

      /* Topics Section */

      /* Videos Section */

      .videos {
        background-color: var(--color-primary-lighter);
      }

      .video-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
      }

      .video-item {
        transition: all 0.3s ease;
        overflow: hidden;
      }

      .video-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
      }

      .video-thumbnail {
        position: relative;
        width: 100%;
        padding-top: 56.25%;
        /* 16:9 aspect ratio */
        background-color: #dee2e6;
        border-radius: var(--border-radius) var(--border-radius) 0 0;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      }

      .video-info {
        padding: 1.5rem;
        background-color: var(--color-primary-light);
        border-radius: 0 0 var(--border-radius) var(--border-radius);
      }

      .video-info h3 {
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
      }

      .video-info p {
        color: #6c757d;
        font-size: 0.9rem;
      }

      .responsive-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      /* Quote cards enhancements */
      .quote-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background-color: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        position: relative;
        padding: 2.5rem 2rem 2rem;
        border-radius: var(--border-radius);
        border-left: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        transition: all 0.4s ease;
        cursor: pointer;
      }

      .quote-card::before {
        content: '"';
        position: absolute;
        top: 10px;
        left: 15px;
        font-size: 5rem;
        line-height: 1;
        font-family: var(--font-heading);
        opacity: 0.2;
        color: var(--color-white);
      }

      .card-indicator {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: var(--color-primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
      }

      .quote-card:hover {
        transform: translateY(-8px) scale(1.02);
        opacity: 1;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3),
          0 0 10px rgba(255, 255, 255, 0.2);
        background-color: rgba(255, 255, 255, 0.25);
      }

      .quote-card:hover .card-indicator {
        transform: scaleX(1);
      }

      /* Video enhancements */
      .video-thumbnail {
        position: relative;
        border-radius: var(--border-radius) var(--border-radius) 0 0;
        overflow: hidden;
      }


      /* New Quotes Section CSS */
      .quotes {
        background: linear-gradient(rgba(40, 90, 40, 0.7), rgba(20, 50, 20, 0.8)), url('img/rivers.webp');
        background-size: cover;
        background-attachment: fixed;
        /* Creates a parallax effect */
        background-position: center;
        padding: 3rem 0;
      }

      .section-title .quote-header {
        color: #fff;
        position: relative;
        margin-bottom: 2rem;
      }

      .quote-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
        /* 👈 Pushes boxes down */
      }

      .quote-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background-color: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        position: relative;
        padding: 2.5rem 2rem 2rem;
        border-radius: var(--border-radius);
        border-left: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        transition: all 0.4s ease;
        cursor: pointer;
      }

      .quote-card::before {
        content: '"';
        position: absolute;
        top: 10px;
        left: 15px;
        font-size: 5rem;
        line-height: 1;
        font-family: var(--font-heading);
        opacity: 0.2;
        color: var(--color-white);
      }

      .quote-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
        background-color: rgba(255, 255, 255, 0.2);
        /* Slightly more visible on hover */
      }

      .quote-card h3 {
        font-size: 1.1rem;
        font-weight: 500;
        margin-top: auto;
        padding-top: 1rem;
        text-align: right;
        color: var(--color-white);
        position: relative;
        z-index: 2;
      }

      .quote-card p {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-style: italic;
        font-weight: 500;
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 0.5rem;
        color: #fff;
        /* Adds readability to text on image */
      }

      .card-indicator {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: var(--color-primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
      }

      .quote-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        background-color: rgba(255, 255, 255, 0.25);
      }

      .quote-card:hover .card-indicator {
        transform: scaleX(1);
      }

      #quoteModal {
        background-color: rgba(0, 0, 0, 0.7);
        /* Less opaque background */
      }

      #quoteModal .modal-content {
        background-color: var(--color-primary-dark);
        color: var(--color-white);
        max-width: 90%;
        width: auto;
        max-height: 80vh;
        margin: 10% auto;
        padding: 2rem;
        border-radius: var(--border-radius);
        overflow-y: auto;
        position: relative;
        box-shadow: var(--shadow-lg);
      }

      /* If you need further customization for the quote text itself */

      /* Inspiration */

      .inspiration {
        background-color: var(--color-primary-light);
        padding: 3rem 0;
      }

      .category-section {
        margin-bottom: 3rem;
      }

      .category-title {
        margin-bottom: 1.5rem;
        padding-left: 0.5rem;
        color: #2e4a2e;
        font-size: 1.5rem;
        border-left: 4px solid #5a8c5a;
      }

      /* Modify your existing CSS */
      .inspiration-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
        justify-content: center;
        margin-bottom: 2rem;
        /* Add this line */
      }

      /* Add responsive adjustments */
      @media (max-width: 768px) {
        .category-section {
          margin-bottom: 2rem;
        }
      }

      @media (max-width: 480px) {
        .hamburger {
          color: var(--color-text);
        }

        .inspiration-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 0.75rem;
        }

        .category-title {
          font-size: 1.2rem;
          margin-bottom: 1rem;
        }
      }

      .inspiration-card {
        position: relative;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 8px;
        cursor: pointer;
        aspect-ratio: 1 / 1;
        /* Maintain square aspect ratio */
      }

      .inspiration-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Prevents image warping */
        display: block;
        transition: transform 0.3s ease;
      }

      .inspiration-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
      }

      .inspiration-card:hover img {
        transform: scale(1.05);
      }

      /* Modal Styles */
      .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        align-items: center;
        justify-content: center;
        padding: 20px;
        overflow-y: auto;
      }

      .modal-content {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 90%;
        max-height: 90%;
      }

      .modal-content img {
        max-width: 100%;
        max-height: 90vh;
        object-fit: contain;
        border-radius: 4px;
      }

      .close-modal {
        position: absolute;
        top: 20px;
        right: 30px;
        color: white;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
        transition: color 0.2s ease;
        z-index: 1001;
        background: none;
        border: none;
      }

      .close-modal:hover {
        color: #bbb;
      }

      /* Responsive adjustments */
      @media (max-width: 992px) {
        .inspiration-grid {
          grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        }
      }

      @media (max-width: 768px) {
        #quoteModal .modal-content {
          width: 95%;
          padding: 1.5rem;
          max-height: 85vh;
          margin: 5% auto;
        }

        #modalQuoteText {
          font-size: 1rem;
        }

        #quoteModal h2 {
          font-size: 1.5rem;
        }

        .inspiration-grid {
          grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
          gap: 1rem;
        }

        .inspiration {
          padding: 4rem 0;
        }
      }

      @media (max-width: 480px) {
        .inspiration-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 0.8rem;
        }

        .modal-content {
          max-width: 85%;
          /* Adjust for mobile */
          max-height: 60%;
          /* Smaller on mobile */
        }

        .modal-content img {
          max-height: 60vh;
          /* Reduced from 80vh */
        }

        #quoteModal .modal-content {
          width: 95%;
          padding: 1.25rem;
          margin: 2% auto;
        }

        .close-modal {
          top: 10px;
          right: 10px;
        }
      }

      /* Responsive adjustments */
      @media (max-width: 768px) {
        .quote-card {
          padding: 2rem;
        }

        .quote-card p {
          font-size: 1.1rem;
        }
      }

      /* Contact Section */

      .tree-of-life {
        height: 150px;
        width: auto;
        margin-bottom: 1rem;
      }


      .contact {
        background-color: var(--color-primary-lighter);
      }

      .contact-content {
        max-width: 700px;
        margin: 0 auto;
      }

      .contact-text {
        text-align: center;
        margin-bottom: 2rem;
      }

      .contact-form {
        background: var(--color-primary-light);
        padding: 3rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      }

      .form-group {
        margin-bottom: 1.5rem;
      }

      .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
      }

      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 0.8rem;
        border: 1px solid #dee2e6;
        border-radius: 5px;
        font-size: 1rem;
      }

      .form-group textarea {
        height: 150px;
        resize: vertical;
      }

      footer {
        background-color: var(--color-primary-dark);
        color: #f8f9fa;
        padding: 3rem 1rem;
        text-align: center;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      }

      .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
      }

      .footer-main {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
      }

      .footer-brand {
        flex: 1;
        text-align: left;
      }

      .footer-tagline {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        font-weight: 500;
      }

      .copyright {
        font-size: 0.9rem;
        color: #adb5bd;
      }

      @media (max-width: 768px) {
        .footer-main {
          flex-direction: column;
          text-align: center;
        }

        .footer-brand {
          width: 100%;
          text-align: center;
        }
      }


      /* Modal */
      .modal {
        background-color: rgba(0, 0, 0, 0.85);
      }

      .modal-content {
        background-color: var(--color-white);
        border-radius: var(--border-radius);
        max-width: 600px;
        width: 90%;
        padding: 0;
        overflow: hidden;
      }

      .modal-inner {
        padding: 1.5rem;
      }

      #quoteModal h2 {
        color: var(--color-primary-light);
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
      }

      #modalQuoteText {
        font-size: 1.1rem;
        line-height: 1.6;
        font-family: var(--font-heading);
        font-style: italic;
        color: var(--color-white);
        overflow-wrap: break-word;
        white-space: normal;
      }

      /* Animation keyframes */
      @keyframes pulse {
        0% {
          transform: scale(1);
        }

        50% {
          transform: scale(1.05);
        }

        100% {
          transform: scale(1);
        }
      }

      /* Fade-in animation for sections */
      .fade-in-section {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
      }

      .fade-in-section.fade-in {
        opacity: 1;
        transform: translateY(0);
      }

      .modal-content img {
        max-width: 100%;
        max-height: 50vh;
        /* Reduced from 90vh */
        object-fit: contain;
        border-radius: 4px;
      }

      .close-modal {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
        cursor: pointer;
        color: #adb5bd;
        transition: color 0.3s ease;
      }

      .close-modal:hover {
        color: #212529;
      }

      /* Animations */
      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(20px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .fade-in {
        animation: fadeIn 0.5s ease-out forwards;
      }

      /* Responsive */
      @media (max-width: 992px) {
        .about-content {
          flex-direction: column;
          gap: 2rem;
        }

        .section-title h2 {
          font-size: 2rem;
        }

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

      @media (max-width: 768px) {
        .nav-links {
          position: fixed;
          top: 0;
          right: -100%;
          width: 70%;
          height: 100vh;
          background-color: var(--color-white);
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          gap: 2rem;
          transition: all 0.5s ease;
          box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
          z-index: 1000;
        }

        .nav-links.active {
          right: 0;
        }

        .nav-links a {
          font-size: 1.2rem;
        }

        .hamburger {
          display: block;
          font-size: 1.5rem;
          z-index: 1001;
        }

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

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

        section {
          padding: 4rem 1rem;
          /* Reduced horizontal padding */
        }

        .section-title {
          margin-bottom: 2rem;
          /* Reduced margin */
        }

        .section-title h2 {
          font-size: 2rem;
        }

        .about-content,
        .speaking-content {
          gap: 2rem;
        }

        .contact-form {
          padding: 2rem;
        }
      }

      @media (max-width: 768px) {
        .video-grid {
          grid-template-columns: 1fr;
          gap: 1.5rem;
        }

        .video-item {
          max-width: 100%;
        }

        .video-thumbnail {
          min-height: 200px;
        }

        .responsive-video {
          min-height: 200px;
        }
      }

      /* Even smaller screens */
      @media (max-width: 480px) {
        .video-thumbnail {
          min-height: 180px;
        }

        .responsive-video {
          min-height: 180px;
        }
      }

      .section-title.with-hummingbirds {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
        margin: 0 auto;
        width: fit-content;
      }

      .section-title.with-hummingbirds h2 {
        margin: 0;
        font-size: 2.5rem;
        color: #fff;
        font-family: var(--font-heading);
      }

      .hummingbird {
        width: 60px;
        height: auto;
        opacity: 0.95;
      }

      .hummingbird.left {
        transform: scaleX(-1);
        /* Flip to face left */
      }

      .hummingbird.right {
        transform: none;
        /* Face right naturally */
      }

      .video-background {
        position: relative;
        width: 100%;
        height: 40vh;
        /* Try 300px or 400px if you prefer fixed height */
        overflow: hidden;
        margin: 0;
        padding: 0;
        z-index: 0;
      }

      .video-background video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        z-index: 1;
      }