      body {
          font-family: 'Arial', sans-serif;
          background-color: #f9f9f9;
          color: #333;
          margin: 0;
          padding: 0;
      }

      .container {
          max-width: 800px;
          margin: 0 auto;
          padding: 20px;
          background-color: white;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          border-radius: 8px;
          margin-top: 40px;
      }

      h1,
      h2 {
          color: #2a9d8f;
          /* Green color for headings */
          text-align: center;
      }

      h1 {
          font-size: 25px;
          /* Smaller font size for the main heading */
          margin-bottom: 15px;
      }

      h2 {
          font-size: 20px;
          /* Smaller font size for subheadings */
          margin-top: 30px;
      }

      p,
      li {
          font-size: 16px;
          /* Smaller font size for paragraphs */
          line-height: 1.6;
      }

      ul {
          padding-left: 20px;
      }

      .btn-post {
          display: inline-block;
          background-color: #d62828;
          color: white;
          padding: 10px 20px;
          text-decoration: none;
          border-radius: 5px;
          font-size: 16px;
          margin-top: 10px;
          text-align: center;
          display: block;
          width: 150px;
          margin-left: auto;
          margin-right: auto;
      }

      .btn-post:hover {
          background-color: #a31d1d;
      }

      footer {
          margin-top: 40px;
          text-align: center;
          font-size: 14px;
          color: #666;
      }



      .image-container {
          width: 7%;
          /* Ensure container takes full width if needed */
          display: flex;
          /* Use flexbox to center the image if needed */
          justify-content: center;
          align-items: center;
      }

      .advert-img {
          width: 100%;
          height: 100%;
          object-fit: contain;
          /* Remove default inline behavior */
      }

      .header {
          background-color: #2A9D8F;
          color: white;
          padding: 0px 0;
          width: 100%;
      }

      .header-container {
          display: flex;
          justify-content: space-between;
          align-items: center;
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 20px;
      }

      .site_title {

          font-size: 22px;
          font-weight: normal;
          font-family: 'Georgia', serif;

      }

      .nav ul {
          list-style: none;
          margin: 0;
          padding: 0;
          display: flex;
      }

      .nav ul li {
          margin-left: 20px;
      }

      .nav ul li a {
          color: white;
          text-decoration: none;
          font-size: 14px;
          padding: 8px 12px;
          transition: background-color 0.3s;
      }

        .nav ul li a:hover {
            background-color: #fff;
            color: grey;
            /* Highlight color for active and hovered links */
            border-bottom: 2px solid #007bff;
            /* Underline effect */
            padding-bottom: 5px;
            border-radius: 4px;
        }
    
        .nav ul li a.active {
            background-color: #fff;
            color: #007bff;
            /* Highlight color for active and hovered links */
            border-bottom: 2px solid #007bff;
            /* Underline effect */
            padding-bottom: 5px;
            border-radius: 4px;
        }

      @media screen and (max-width: 768px) {

          .nav {
              text-align: center;
          }

          .nav ul {
              list-style: none;
              margin: 0;
              padding: 0;
              display: block;


          }

          .nav ul li {
              padding: 2px;
          }

          .nav ul li a {
              color: white;
              text-decoration: none;
              font-size: 16px;
              transition: background-color 0.3s;
              display: block;
              /* if you remove this it doesnt cover whole width */
          }

          .nav ul li a:hover {
              background-color: #45a049;
              border-radius: 4px;

          }

          .nav ul li a.active {
              background-color: #fff;
              border-radius: 4px;
              color: #2A9D8F;
          }

          .container {
              display: block;
              justify-content: space-between;
              align-items: center;
              max-width: 1200px;
              margin: 0 auto;
              padding: 0 20px;
          }

          .left_side_div {
              display: none;
          }

          .right_side_div {
              display: none;
          }

          .left_centre_right_middle_container_div {
              display: flex;
              justify-content: space-between;
              margin-left: 0%;
              margin-right: 0%;

          }

          .header-container {
              display: block;
              align-items: center;
              margin: 0 auto;
              padding: 0 20px;
          }

.image-container {
            width: 20%;
            /* Ensure container takes full width if needed */
            display: flex;
            /* Use flexbox to center the image if needed */
            justify-content: center;
            align-items: center;
            margin: 0;
            padding: 0;
    }
      }