/* YMP Main Site */

    /* Full reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html, body {
      width: 100%;
      height: 100%;
    }
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f9f9f9;
      color: #111;
    }
    header, section {
      padding: 40px 20px;
      max-width: 900px;
      margin: auto;
    }
    h1, h2, h3 {
      font-weight: bold;
    }
    .btn {
      display: inline-block;
      padding: 12px 20px;
      margin: 10px 10px 10px 0;
      font-weight: bold;
      border: none;
      cursor: pointer;
    }
    .btn-dark {
    background-color: #1F5D44;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    display: inline-block;
    font-weight: bold;
    font-size:12px;
    text-decoration: none;
    margin: 10px;
  }

  .btn-dark:hover {
    color: #E8CA84;
  }

  .btn-light {
    background-color: white;
    color: #E0B13B;
    border: 2px solid #1F5D44;
    padding: 10px 20px;
    border-radius: 4px;
    display: inline-block;
    font-weight: bold;
    font-size:12px;
    text-decoration: none;
    margin: 10px;
  }

  .btn-light:hover {
    color: #19653F;
  }
    .two-col {
      display: flex;
      flex-wrap: wrap;
      gap: 50px;
    }
    .two-col > div {
      flex: 1;
      min-width: 300px;
    }
    .video-thumbs {
      display: flex;
      gap: 10px;
      margin-top: 15px;
    }
    .video-thumbs div {
      background-color: #ddd;
      width: 150px;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
    }
    .video-thumbs div img {
      max-width: 105%;
      max-height: 100%;
      object-fit: contain;
    }
    .zoom-container {
      overflow: hidden;
      width: 300px; /* or any desired size */
      height: auto;
    }

    .zoom-container img {
      width: 100%;
      height: auto;
      transition: transform 0.3s ease;
    }

    .zoom-container img:hover {
      transform: scale(1.3); /* Zoom in 20% */
    }

    blockquote {
      background-color: #eee;
      padding: 20px;
      margin: 20px 0;
      border-left: 5px solid #ccc;
    }
    hr.full-width {
      position: absolute;
      left: 0;
      width: 100vw;
      border: none;
      height: 2px;
      margin: 30px 0;
      background-color: #EEEEEC;
    }

    .video-frame {
      width: 250px;
      height: 140px;
      border: 7px solid #1F5D44;
      border-radius: 10px;
      background: #1F5D44;
      overflow: hidden;
      transition: border-color 0.3s ease;
    }

    .video-frame:hover {
      border-color: #00AA88; /* Change to any color on hover */
    }