body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.6;
      background: #f9f9f9;
      color: #222;
    }
    .container {
      width: 90%;
      max-width: 960px;
      margin: auto;
      padding: 2rem 0;
    }
    header {
      background: #2c3e50;
      color: white;
      padding: 2rem 0;
      text-align: center;
    }
    header h1 {
      margin-bottom: 0.5rem;
    }
    .cta {
      display: inline-block;
      text-align: center;
      background: #27ae60;
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      margin-top: 1rem;
      transition: background-color 0.2s;
    }
    
    /* Center the CTA when it's outside container */
    body > .cta {
      display: block;
      text-align: center;
      margin: 2rem auto;
      width: fit-content;
    }
    .cta:hover {
      background: #219a52;
    }
    section {
      margin: 4rem 0;
      display: flex;
      align-items: center;
      gap: 2rem;
    }
    section:nth-child(even) {
      flex-direction: row-reverse;
    }
    .section-content {
      flex: 1;
    }
    .section-image {
      flex: 1;
      max-width: 500px;
    }
    .section-image img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .section-video {
      flex: 1;
      max-width: 500px;
      max-height: 312px; /* 1.6 */
      position: relative;
      width: 100%;
      height: 0;
      padding-bottom: 30%; /* Reduced from 45% for a more compact height */
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .section-video iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 8px;
    }
    h2 {
      color: #2c3e50;
      margin-top: 0;
    }
    ul {
      list-style: disc;
      padding-left: 1.5rem;
      margin: 0;
    }
    a:not(.cta) {
      color: #27ae60;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s, color 0.2s;
    }
    a:not(.cta):hover {
      color: #219a52;
      border-bottom-color: #219a52;
    }
    .personal-quote {
      position: relative;
      margin: 1.5rem 0;
      padding: 1.5rem 2rem;
      background: #f8f9fa;
      border-left: 4px solid #27ae60;
      border-radius: 0 4px 4px 0;
      font-style: italic;
    }
    .personal-quote p {
      margin: 0.5rem 0;
      line-height: 1.6;
    }
    .personal-quote p:first-child {
      margin-top: 0;
    }
    .personal-quote p:last-child {
      margin-bottom: 0;
    }
    .footer {
      text-align: center;
      padding: 3rem 0;
      background: #2c3e50;
      color: white;
    }
    .footer p {
      font-size: 1.1rem;
      margin: 0;
      opacity: 0.9;
    }
    .footer strong {
      color: #fff;
      opacity: 1;
    }
    .footer a {
      color: #2ecc71 !important;
      font-weight: 500;
      padding: 0.2rem 0.4rem;
      border-radius: 4px;
      transition: all 0.2s ease;
      text-decoration: none;
      border: 1px solid transparent;
    }
    .footer a:hover {
      border-color: currentColor;
      background-color: transparent !important;
    }
    .lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      z-index: 1000;
      cursor: pointer;
    }
    .lightbox.active {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .lightbox img {
      max-width: 90%;
      max-height: 90vh;
      object-fit: contain;
      border-radius: 4px;
    }
    @media (min-width: 769px) {
      .section-image img {
        cursor: pointer;
        transition: transform 0.2s;
      }
      .section-image img:hover {
        transform: scale(1.02);
      }
    }
    @media (max-width: 768px) {
      section {
        flex-direction: column !important;
        text-align: center;
      }
      ul {
        text-align: left;
      }
      .section-image {
        max-width: 100%;
      }
    }