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

  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f3f9fb;
    /* padding: 20px; */
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  header {
    text-align: center;
    padding: 20px 0;
  }

  h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #444;
  }
  

  .subtitle {
    font-size: 1.5em;
    color: #666;
    margin-bottom: 20px;
  }

  .blog-image {
    width: 50%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
  }

  .author-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: #777;
    font-size: 0.9em;
  }

  .promo-banner {
    width: 60vw;
    display: flex;
    /* flex-wrap: wrap; */
    gap: 10vw;
    align-items: center;
    background-color: #f3f9fb;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
  }

  .promo-banner h2 {
    font-size: 2.5em;
    color: #444;
    /* flex: 1 1 60%; */
    margin: 0 auto;
    /* width: 50%; */
  }

  .promo-banner iframe {
    flex: 1 1 35%;
    max-width: 100%;
    height: auto;
    border: none;
    border-radius: 5px;
  }

  iframe {
    max-width: 100%;
  }

  article {
    /* margin-bottom: 50px; */
    /* width: 80%; */
    margin: 50px auto;
    padding: 20px;
    /* text-align: justify; */
  }

  article h2 {
    font-size: 2em;
    color: #000;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  article h3 {
    font-size: 1.5em;
    color: #333;
    margin-top: 15px;
    margin-bottom: 8px;
  }
  
  article p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #1f1e1e;
    font-size: 18px;
  }

  article ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
    color: #3e3b3b;
  }

  article ol {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: decimal;
    color: #666;
  }

  article table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
  }

  article table,
  th,
  td {
    border: 1px solid #ddd;
    padding: 8px;
  }

  article th {
    background-color: #f8f8f8;
    text-align: left;
  }

  article code {
    background-color: #f0f0f0;
    padding: 2px 4px;
    font-family: monospace;
    border-radius: 3px;
    color: #444;
  }

  article blockquote {
    border-left: 4px solid #444;
    padding-left: 10px;
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
    background-color: #f8f8f8;
  }

  .recent-posts {
    margin-top: 40px;
  }

  .recent-posts h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #444;
  }

  .recent-posts ul {
    list-style: none;
    padding-left: 0;
  }

  .recent-posts li {
    margin-bottom: 10px;
  }

  .recent-posts a {
    color: #444;
    text-decoration: none;
    font-size: 1em;
  }

  .recent-posts a:hover {
    text-decoration: underline;
  }

  .reading-time {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background-color: #444;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9em;
    z-index: 1000;
  }

 .footer {
   background-color: #f8f9fa;
   /* Light background for the footer */
   padding: 40px 20px;
   /* Padding around the footer content */
   text-align: start;
   /* Center text and elements */
 }

 .footer-container {
   display: flex;
   /* Use flexbox for layout */
   justify-content: space-between;
   /* Space out the columns */
   flex-wrap: wrap;
   /* Allow wrapping on smaller screens */
   max-width: 1200px;
   /* Max width for the footer content */
   margin: 0 auto;
   /* Center the footer content */
 }

 .footer-column {
   flex: 1;
   /* Make columns equal width */
   min-width: 200px;
   /* Minimum width for each column */
   margin-bottom: 20px;
   /* Space below each column */
 }

 .footer-title {
   font-size: 1.2rem;
   /* Font size for the column titles */
   color: #333;
   /* Dark text color for titles */
   margin-bottom: 10px;
   /* Space below the title */
 }

 .footer-link {
   display: block;
   /* Make links block elements */
   color: #474f85;
   /* Dark blue text color for links */
   text-decoration: none;
   /* Remove underline from links */
   margin-bottom: 8px;
   /* Space below each link */
   transition: color 0.3s ease;
   /* Smooth transition for hover effect */
 }

 .footer-link:hover {
   color: #293332;
   font-weight: bold;
   /* Change link color on hover */
 }

 .footer-icon {
   width: 24px;
   /* Size of the icon */
   height: 24px;
   /* Size of the icon */
   vertical-align: middle;
   /* Align icon with text */
 }

 .footer-copyright {
   margin-top: 20px;
   /* Space above copyright text */
   font-size: 0.9rem;
   /* Smaller font size for copyright */
   color: #666;
   /* Light text color for copyright */
 }

 @media (max-width: 768px) {
   .footer-container {
     flex-direction: column;
     /* Stack columns vertically on mobile */
     align-items: start;
     /* Center align items */
   }

   .footer-column {
     text-align: start;
     /* Center align text on mobile */
   }
 }

  .popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 500px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    z-index: 9999;
    display: none;
  }

  .popup h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #444;
  }

  .popup input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
  }

  .popup button {
    padding: 10px 20px;
    background-color: #444;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
  }

  .popup button:hover {
    background-color: #666;
  }

  .popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 1.2em;
    color: #888;
  }

  @media (max-width: 768px) {
    .promo-banner {
      flex-direction: column;
    }

    .promo-banner h2,
    .promo-banner iframe {
      flex: 1 1 100%;
      margin-bottom: 20px;
    }
  }

  ._mobileFrame_4wdmh_16 {
    width: 50%;
    border-radius: 20px;
  }

  ._mobileFrame_4wdmh_16 video {
    border-radius: 20px;
    width: 325;
    height: 400px;
  }

    .top-navbar {
      background-color: #333;
      padding: 10px 20px;
    }
  
    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
    }
  
    .brand {
      display: flex;
      align-items: center;
    }
  
    .brand-name {
      color: #fff;
      text-decoration: none;
      font-size: 24px;
      font-weight: bold;
    }
  
    .nav-links {
      display: flex;
      align-items: center;
    }
  
    .nav-link {
      color: #fff;
      text-decoration: none;
      margin-left: 20px;
      font-size: 18px;
    }
  
    .hamburger-menu {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }
  
    .bar {
      width: 25px;
      height: 3px;
      background-color: #fff;
      margin: 4px 0;
      transition: 0.3s;
    }
  
    @media screen and (max-width: 768px) {
      .nav-links {
        display: none;
      }
    }

.cta-banner {
  background-color: #f3f9fb;
  /* Background color for the banner */
  padding: 2em;
  /* Padding for the banner */
  text-align: center;
  /* Center the text and button */
  border-radius: 8px;
  /* Rounded corners for the banner */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  /* Shadow for the banner */
  margin-top: 20px;
  /* Space above the banner */
}

.cta-banner h2 {
  font-size: 1.5rem;
  /* Font size for the heading */
  color: #333333;
  /* Text color for the heading */
  margin-bottom: 30px;
  /* Space below the heading */
}

.cta-button, .cta-button-secondary {
  /* Text color for the button */
  padding: 12px 24px;
  font-weight: bold;
  /* Padding for the button */
  border: none;
  /* Remove border */
  border-radius: 5px;
  /* Rounded corners for the button */
  font-size: 1rem;
  /* Font size for the button */
  cursor: pointer;
  /* Pointer cursor on hover */
  transition: background-color 0.3s ease;
  /* Transition for hover effect */

  text-decoration: none;
}

.cta-button {
  border: 2px solid #f5e93c;
  background-color: #fff;
  color: #080808;
}

.cta-button-secondary {
  border: 2px solid #66f6e1;
  background-color: #fff;
  color: #080808;
}

.cta-button:hover {
  border: 2px solid #dc51e3;
  /* Darker background color on hover */
}

.cta-button-secondary:hover {  
  border: 2px solid #dc51e3;
  /* background-color: #e3d951; */
  /* Darker background color on hover */
}

.faq-container {
  max-width: 800px;
  margin: 5vh auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.faq-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: bold;
  cursor: pointer;
  color: #333;
  margin: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #555;
  padding: 0 0 0 15px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-top: 10px;
}

@media (max-width: 600px) {
  .faq-container {
    padding: 15px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .cta-banner h2 {
    font-size: 1.2rem;
    /* Smaller font size for mobile */
  }

  .cta-button {
    font-size: 0.9rem;
    /* Smaller font size for the button on mobile */
    padding: 10px 20px;
    /* Adjust padding for the button on mobile */
  }
  .cta-button,
  .cta-button-secondary {
    display: block;
    margin-bottom: 12px;
  }
}