* {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      }

      html, body {
          overflow-x: hidden;
          max-width: 100vw;
      }

      body {
          background-color: #f5f5f5;
          display: flex;
          flex-direction: column;
          min-height: 100vh;
          line-height: 1.6;
      }
      .desktop-headers {
          display: block;
      }
      .header-bar-1 {
          background-color: #333;
          color: white;
          padding: 10px 20px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          flex-wrap: nowrap;
          white-space: nowrap;
      }
      .nav-links {
          display: flex;
          gap: 20px;
          align-items: center;
      }
      .nav-links a {
          color: white;
          text-decoration: none;
          font-size: 14px;
          transition: color 0.3s;
      }
      .nav-links a:hover {
          color: #4CAF50;
      }
      .nav-links a.active {
          color: #4CAF50;
          font-weight: bold;
      }
      .social-icons {
          display: flex;
          gap: 15px;
          align-items: center;
      }
      .social-icons a {
          color: white;
          font-size: 16px;
          transition: color 0.3s;
      }
      .social-icons a:hover {
          color: #4CAF50;
      }
      .login-btn {
          display: flex;
          align-items: center;
          gap: 5px;
          background-color: #4CAF50;
          color: white;
          padding: 5px 10px;
          border-radius: 4px;
          text-decoration: none;
          font-size: 14px;
          margin-left: 20px;
      }
      .login-btn:hover {
          background-color: #45a049;
      }
      .header-bar-2 {
          background-color: #2c3e50;
          color: white;
          padding: 10px 20px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          flex-wrap: nowrap;
          position: relative;
      }
      .logo-container {
          display: flex;
          align-items: center;
      }
      .menu-toggle {
          cursor: pointer;
          background-color: #4CAF50;
          color: white;
          border: none;
          border-radius: 4px;
          padding: 8px 12px;
          margin-right: 15px;
          display: flex;
          align-items: center;
          gap: 5px;
          transition: all 0.3s;
      }
      .menu-toggle:hover {
          background-color: #45a049;
      }
      .menu-toggle i {
          font-size: 16px;
      }
      .menu-toggle .menu-text {
          font-size: 14px;
          font-weight: bold;
      }
      .logo {
          font-size: 22px;
          font-weight: bold;
          color: white;
          text-decoration: none;
          margin-right: 30px;
      }
      .logo:hover {
          color: #4CAF50;
      }
      .main-nav {
          display: flex;
          gap: 10px;
          align-items: center;
      }
      .main-nav a {
          color: white;
          text-decoration: none;
          font-size: 14px;
          transition: color 0.3s;
          position: relative;
      }
      .main-nav a:hover {
          color: #4CAF50;
      }
      .main-nav a.active {
          color: #4CAF50;
          font-weight: bold;
      }
      .dropdown {
          position: relative;
          display: inline-block;
      }
      .dropdown-content {
          display: none;
          position: absolute;
          background-color: #f9f9f9;
          min-width: 160px;
          box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
          z-index: 1;
          border-radius: 4px;
      }
      .dropdown-content a {
          color: black;
          padding: 12px 16px;
          text-decoration: none;
          display: block;
          font-size: 13px;
      }
      .dropdown-content a:hover {
          background-color: #f1f1f1;
          color: #4CAF50;
      }
      .dropdown:hover .dropdown-content {
          display: block;
      }
      .utility-icons {
          display: flex;
          gap: 15px;
          align-items: center;
      }
      .utility-icons a, .utility-icons button {
          color: white;
          font-size: 16px;
          cursor: pointer;
          background: none;
          border: none;
          transition: color 0.3s;
      }
      .utility-icons a:hover, .utility-icons button:hover {
          color: #4CAF50;
      }
      .search-btn {
          background-color: #4CAF50;
          color: white;
          padding: 5px 15px;
          border-radius: 4px;
          text-decoration: none;
          font-size: 14px;
      }
      .search-btn:hover {
          background-color: #45a049;
      }
      .expanded-menu {
          display: none;
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          background-color: #2c3e50;
          padding: 20px;
          z-index: 100;
          box-shadow: 0 5px 15px rgba(0,0,0,0.3);
          border-top: 2px solid #4CAF50;
      }
      .expanded-menu.active {
          display: block;
          animation: fadeIn 0.3s ease-in-out;
      }
      @keyframes fadeIn {
          from { opacity: 0; transform: translateY(-10px); }
          to { opacity: 1; transform: translateY(0); }
      }
      .expanded-menu-container {
          display: flex;
          gap: 40px;
          max-width: 1200px;
          margin: 0 auto;
      }
      .expanded-menu-column {
          flex: 1;
          min-width: 200px;
      }
      .expanded-menu-column h3 {
          color: #4CAF50;
          margin-bottom: 15px;
          font-size: 16px;
          padding-bottom: 5px;
          border-bottom: 1px solid #4CAF50;
      }
      .expanded-menu-column ul {
          list-style: none;
      }
      .expanded-menu-column ul li {
          margin-bottom: 10px;
      }
      .expanded-menu-column ul li a {
          color: white;
          text-decoration: none;
          font-size: 14px;
          transition: all 0.3s;
          display: block;
          padding: 5px 0;
      }
      .expanded-menu-column ul li a:hover {
          color: #4CAF50;
          padding-left: 5px;
      }
      .expanded-menu-column ul li a i {
          margin-right: 8px;
          width: 20px;
          text-align: center;
      }
      .mobile-headers {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          z-index: 1000;
          background-color: #2c3e50;
          width: 100%;
      }
      .mobile-header-1 {
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 10px 15px;
          background-color: #333;
      }
      .mobile-menu-toggle {
          background: none;
          border: none;
          color: white;
          font-size: 20px;
          cursor: pointer;
          padding: 5px;
      }
      .mobile-logo {
          font-size: 18px;
          font-weight: bold;
          color: white;
          text-decoration: none;
          flex-grow: 1;
          text-align: center;
      }
      .mobile-header-2 {
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 10px 15px;
          background-color: #2c3e50;
          border-top: 1px solid rgba(255,255,255,0.1);
      }
      .mobile-search-btn {
          background-color: #4CAF50;
          color: white;
          padding: 8px 15px;
          border-radius: 20px;
          text-decoration: none;
          font-weight: bold;
          font-size: 14px;
          white-space: nowrap;
      }
      .mobile-social-icons {
          display: flex;
          gap: 15px;
          align-items: center;
      }
      .mobile-social-icons a {
          font-size: 18px;
      }
      .mobile-social-icons a.whatsapp { color: #25D366; }
      .mobile-social-icons a.facebook { color: #1877F2; }
      .mobile-social-icons a.youtube { color: #FF0000; }
      .mobile-social-icons a.threads { color: #000000; }
      .mobile-social-icons a.tiktok { color: #FE2C55; }
      .mobile-menu {
          display: none;
          background-color: #333;
          padding: 15px;
          position: absolute;
          top: 100%;
          left: 0;
          right: 0;
          z-index: 1000;
          max-height: 80vh;
          overflow-y: auto;
      }
      .mobile-menu.active {
          display: block;
      }
      .mobile-menu-category {
          margin-bottom: 15px;
      }
      .mobile-menu-category h3 {
          color: #4CAF50;
          margin-bottom: 8px;
          font-size: 16px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          cursor: pointer;
          padding: 5px 0;
      }
      .mobile-menu-category h3 .toggle-icon {
          transition: transform 0.3s;
      }
      .mobile-menu-category h3.active .toggle-icon {
          transform: rotate(180deg);
      }
      .mobile-menu-category ul {
          list-style: none;
          display: none;
          padding-left: 15px;
          margin-top: 5px;
      }
      .mobile-menu-category ul.active {
          display: block;
      }
      .mobile-menu-category ul li {
          margin-bottom: 5px;
      }
      .mobile-menu-category ul li a {
          color: white;
          text-decoration: none;
          font-size: 14px;
          display: block;
          padding: 5px 0;
          transition: all 0.3s;
      }
      .mobile-menu-category ul li a:hover {
          color: #4CAF50;
          padding-left: 5px;
      }
      .content-container {
          display: flex;
          flex: 1;
          padding: 20px;
          max-width: 1200px;
          margin: 0 auto;
          width: 100%;
          margin-top: 120px;
      }
      .mcqs-container {
          flex: 1;
          background-color: white;
          border-radius: 8px;
          box-shadow: 0 2px 5px rgba(0,0,0,0.1);
          padding: 20px;
          margin-right: 20px;
      }
      .page-intro {
          text-align: center;
          margin-bottom: 20px;
      }
      .featured-image {
          max-width: 100%;
          height: auto;
          border-radius: 8px;
          margin-bottom: 15px;
          box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      }
      .page-intro h1 {
          color: #2c3e50;
          margin-bottom: 10px;
      }
      .page-intro p {
          font-size: 16px;
          color: #555;
          text-align: left;
      }
      .mcq-item {
          margin-bottom: 30px;
          padding-bottom: 20px;
          border-bottom: 1px solid #eee;
      }
      .mcq-item:last-child {
          border-bottom: none;
      }
      .mcq-header {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-bottom: 10px;
      }
      .mcq-question {
          font-weight: bold;
          font-size: 18px;
          margin-bottom: 15px;
          color: #333;
      }
      .mcq-question a {
          color: #2c3e50;
          text-decoration: none;
      }
      .mcq-question a:hover {
          color: #4CAF50;
      }
      .mcq-actions {
          display: flex;
          gap: 10px;
      }
      .action-icon {
          cursor: pointer;
          color: #666;
      }
      .action-icon:hover {
          color: #4CAF50;
      }
      .favorite-icon {
          cursor: pointer;
          color: #ccc;
          font-size: 20px;
          transition: color 0.3s;
      }
      .favorite-icon:hover {
          color: #e74c3c;
      }
      .favorite-icon.favorited {
          color: #e74c3c;
      }
      .mcq-options {
          margin-left: 20px;
      }
      .mcq-option {
          margin-bottom: 10px;
          padding: 8px;
          border-radius: 4px;
          cursor: pointer;
          transition: background-color 0.2s;
      }
      .mcq-option:hover {
          background-color: #f5f5f5;
      }
      .mcq-option.correct {
          font-weight: bold;
          color: #4CAF50;
      }
      .mcq-option.selected {
          background-color: #e3f2fd;
      }
      .mcq-option.correct-answer {
          background-color: #e8f5e9;
          font-weight: bold;
          color: #4CAF50;
      }
      .mcq-option.wrong-answer {
          background-color: #ffebee;
          color: #f44336;
      }
      .mcq-details {
          display: none;
          margin-top: 15px;
          padding: 15px;
          background-color: #f9f9f9;
          border-radius: 4px;
          border-left: 3px solid #4CAF50;
      }
      .mcq-details.show {
          display: block;
      }
      .mcq-footer {
          display: flex;
          justify-content: space-between;
          margin-top: 15px;
          font-size: 12px;
          color: #777;
          align-items: center;
      }
      .show-details-btn {
          background: none;
          border: none;
          color: #4CAF50;
          cursor: pointer;
          font-size: 12px;
          padding: 2px 5px;
          white-space: nowrap;
      }
      .show-details-btn:hover {
          text-decoration: underline;
      }
      .related-links {
          margin: 20px 0;
          padding: 15px;
          background-color: #f5f5f5;
          border-radius: 5px;
      }
      .related-links h3 {
          color: #2c3e50;
          margin-bottom: 10px;
          font-size: 16px;
      }
      .related-links ul {
          list-style-type: none;
          display: flex;
          flex-wrap: wrap;
          gap: 10px;
      }
      .related-links li {
          background-color: #e3f2fd;
          padding: 5px 10px;
          border-radius: 3px;
      }
      .related-links a {
          color: #1976d2;
          text-decoration: none;
          font-size: 14px;
      }
      .related-links a:hover {
          text-decoration: underline;
      }
      .sidebar {
          width: 300px;
          background-color: white;
          border-radius: 8px;
          box-shadow: 0 2px 5px rgba(0,0,0,0.1);
          padding: 20px;
      }
      .search-container {
          margin-bottom: 20px;
      }
      .search-box {
          width: 100%;
          padding: 10px;
          border: 1px solid #ddd;
          border-radius: 4px;
          font-size: 14px;
      }
      .sidebar .search-btn {
          background-color: #4CAF50;
          color: white;
          border: none;
          padding: 10px 15px;
          border-radius: 4px;
          cursor: pointer;
          margin-top: 10px;
          width: 100%;
          font-weight: bold;
      }
      .sidebar .search-btn:hover {
          background-color: #45a049;
      }
      .categories-title {
          font-size: 18px;
          font-weight: bold;
          margin-bottom: 15px;
          color: #2c3e50;
          border-bottom: 1px solid #eee;
          padding-bottom: 10px;
      }
      .categories-list {
          list-style: none;
      }
      .categories-list a {
          color: #333;
          text-decoration: none;
          display: block;
          padding: 8px;
          border-radius: 4px;
          transition: background-color 0.2s;
          font-weight: normal;
      }
      .categories-list a:hover {
          background-color: #f5f5f5;
          color: #4CAF50;
          font-weight: normal;
      }
      .categories-list a.active-category,
      .related-links ul li a.active-category,
      .expanded-menu-column ul li a.active-category,
      .mobile-menu-category ul li a.active-category {
          background-color: #2c3e50;
          color: white;
          font-weight: bold;
          padding: 8px 12px;
          border-radius: 4px;
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      }
      .categories-list a.active-category:hover,
      .related-links ul li a.active-category:hover,
      .expanded-menu-column ul li a.active-category:hover,
      .mobile-menu-category ul li a.active-category:hover {
          background-color: #34495e;
          color: white;
          text-decoration: none;
      }
      .quiz-mode-container {
          display: flex;
          justify-content: center;
          margin-bottom: 20px;
      }
      .quiz-mode-btn {
          background-color: #4CAF50;
          color: white;
          border: none;
          padding: 10px 20px;
          border-radius: 4px;
          cursor: pointer;
          font-weight: bold;
          font-size: 16px;
          transition: all 0.3s;
      }
      .quiz-mode-btn:hover {
          background-color: #45a049;
          transform: translateY(-2px);
      }
      .quiz-mode-btn.stop {
          background-color: #f44336;
      }
      .quiz-mode-btn.stop:hover {
          background-color: #d32f2f;
      }
      .favorites-btn {
          background-color: #e74c3c;
          color: white;
          border: none;
          padding: 10px 20px;
          border-radius: 4px;
          cursor: pointer;
          font-weight: bold;
          font-size: 16px;
          transition: all 0.3s;
          margin-left: 10px;
      }
      .favorites-btn:hover {
          background-color: #c0392b;
          transform: translateY(-2px);
      }
      .pagination-container {
          display: flex;
          justify-content: center;
          align-items: center;
          margin: 20px 0;
          flex-wrap: wrap;
      }
      .pagination {
          display: flex;
          justify-content: center;
          flex-wrap: wrap;
          gap: 5px;
          align-items: center;
      }
      .page-btn {
          background-color: white;
          border: 1px solid #ddd;
          color: #333;
          padding: 8px 12px;
          cursor: pointer;
          border-radius: 4px;
          transition: all 0.3s;
          min-width: 40px;
          text-align: center;
      }
      .page-btn:hover {
          background-color: #f5f5f5;
      }
      .page-btn.active {
          background-color: #4CAF50;
          color: white;
          border-color: #4CAF50;
      }
      .page-btn.disabled {
          opacity: 0.5;
          cursor: not-allowed;
      }
      .page-jump {
          display: flex;
          align-items: center;
          margin: 10px 10px 0;
      }
      @media (min-width: 768px) {
          .page-jump {
              margin: 0 10px;
          }
      }
      .page-jump input {
          width: 50px;
          padding: 8px;
          border: 1px solid #ddd;
          border-radius: 4px;
          text-align: center;
          margin: 0 5px;
      }
      .page-jump button {
          background-color: #2c3e50;
          color: white;
          border: none;
          padding: 8px 12px;
          border-radius: 4px;
          cursor: pointer;
          transition: background-color 0.3s;
      }
      .page-jump button:hover {
          background-color: #4CAF50;
      }
      .page-info {
          margin-left: 10px;
          font-size: 14px;
          color: #555;
          white-space: nowrap;
      }
      .share-buttons {
          display: flex;
          justify-content: center;
          margin: 30px 0;
          gap: 15px;
          flex-wrap: wrap;
      }
      .share-btn {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 40px;
          height: 40px;
          border-radius: 50%;
          color: white;
          font-size: 18px;
          text-decoration: none;
          transition: transform 0.3s;
      }
      .share-btn:hover {
          transform: scale(1.1);
      }
      .share-facebook { background-color: #1877F2; }
      .share-whatsapp { background-color: #25D366; }
      .share-instagram {
          background: #f09433;
          background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
          background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
          background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
      }
      .share-link { background-color: #2c3e50; }
      .footer {
          background-color: #2c3e50;
          color: white;
          padding: 30px 20px;
          margin-top: 40px;
      }
      #contactFormContainer {
          background-color: white;
          border-radius: 8px;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          padding: 30px;
          width: 100%;
          max-width: 800px;
          margin: 40px auto;
      }
      #contactFormContainer h2 {
          text-align: center;
          color: #2c3e50;
          margin-bottom: 30px;
      }
      .footer-container {
          max-width: 1200px;
          margin: 0 auto;
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
          gap: 30px;
      }
      .footer-column h3 {
          color: #4CAF50;
          margin-bottom: 15px;
          font-size: 18px;
          border-bottom: 1px solid #4CAF50;
          padding-bottom: 5px;
      }
      .footer-column ul {
          list-style: none;
      }
      .footer-column ul li {
          margin-bottom: 10px;
      }
      .footer-column ul li a {
          color: #ddd;
          text-decoration: none;
          font-size: 14px;
          transition: color 0.3s;
      }
      .footer-column ul li a:hover {
          color: #4CAF50;
      }
      .footer-bottom {
          text-align: center;
          margin-top: 30px;
          padding-top: 20px;
          border-top: 1px solid rgba(255,255,255,0.1);
          font-size: 14px;
          color: #aaa;
      }
      .ad-container {
          background-color: #f9f9f9;
          border: 1px dashed #ccc;
          padding: 20px;
          text-align: center;
          margin: 20px 0;
          border-radius: 4px;
      }
      .ad-container p {
          color: #777;
          margin-bottom: 10px;
      }
      .modal-overlay {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background-color: rgba(0,0,0,0.7);
          z-index: 2000;
          justify-content: center;
          align-items: center;
      }
      .modal-overlay.active {
          display: flex;
      }
      .quiz-result-modal {
          background-color: white;
          border-radius: 8px;
          padding: 30px;
          max-width: 500px;
          width: 90%;
          box-shadow: 0 5px 15px rgba(0,0,0,0.3);
          text-align: center;
          animation: modalFadeIn 0.3s ease-out;
      }
      @keyframes modalFadeIn {
          from { opacity: 0; transform: translateY(-20px); }
          to { opacity: 1; transform: translateY(0); }
      }
      .quiz-result-modal h2 {
          color: #2c3e50;
          margin-bottom: 20px;
      }
      .quiz-result-score {
          font-size: 24px;
          font-weight: bold;
          margin: 20px 0;
          color: #4CAF50;
      }
      .quiz-result-details {
          margin: 20px 0;
          text-align: left;
      }
      .quiz-result-details p {
          margin-bottom: 10px;
          display: flex;
          justify-content: space-between;
      }
      .quiz-result-message {
          font-size: 18px;
          margin: 20px 0;
          padding: 15px;
          border-radius: 4px;
          background-color: #f5f5f5;
      }
      .modal-close-btn {
          background-color: #4CAF50;
          color: white;
          border: none;
          padding: 10px 20px;
          border-radius: 4px;
          cursor: pointer;
          font-weight: bold;
          margin-top: 20px;
          transition: background-color 0.3s;
      }
      .modal-close-btn:hover {
          background-color: #45a049;
      }
      .search-modal {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background-color: rgba(0,0,0,0.9);
          z-index: 2000;
          padding: 20px;
      }
      .search-modal.active {
          display: block;
      }
      .search-modal-content {
          max-width: 800px;
          margin: 50px auto;
          background-color: white;
          border-radius: 8px;
          padding: 20px;
          position: relative;
      }
      .search-modal-close {
          position: absolute;
          top: 10px;
          right: 10px;
          background: none;
          border: none;
          font-size: 24px;
          cursor: pointer;
          color: #777;
      }
      .search-modal-input {
          width: 100%;
          padding: 15px;
          font-size: 18px;
          border: 2px solid #4CAF50;
          border-radius: 4px;
          margin-bottom: 20px;
      }
      .search-results {
          max-height: 60vh;
          overflow-y: auto;
      }
      .search-result-item {
          padding: 15px;
          border-bottom: 1px solid #eee;
      }
      .search-result-item h3 {
          margin-bottom: 5px;
          color: #2c3e50;
      }
      .search-result-item p {
          color: #666;
          font-size: 14px;
      }
      .search-result-item a {
          color: #4CAF50;
          text-decoration: none;
      }
      .search-result-item a:hover {
          text-decoration: underline;
      }
      .breadcrumbs {
          padding: 10px 0;
          font-size: 14px;
          margin-bottom: 20px;
      }
      .breadcrumbs a {
          color: #4CAF50;
          text-decoration: none;
      }
      .breadcrumbs a:hover {
          text-decoration: underline;
      }
      .breadcrumbs span {
          color: #777;
          margin: 0 5px;
      }
      .modal {
          display: none;
          position: fixed;
          z-index: 1000;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0,0,0,0.5);
      }
      .modal-content {
          background-color: #fefefe;
          margin: 10% auto;
          padding: 20px;
          border: 1px solid #888;
          width: 80%;
          max-width: 500px;
          border-radius: 5px;
          animation: modalFadeIn 0.3s;
      }
      .close {
          color: #aaa;
          float: right;
          font-size: 28px;
          font-weight: bold;
          cursor: pointer;
      }
      .close:hover {
          color: black;
      }
      .auth-tabs {
          display: flex;
          margin-bottom: 20px;
      }
      .tab-button {
          flex: 1;
          padding: 10px;
          background-color: #f1f1f1;
          border: none;
          cursor: pointer;
          transition: background-color 0.3s;
      }
      .tab-button.active {
          background-color: #4CAF50;
          color: white;
      }
      .tab-content {
          display: none;
          padding: 0 10px;
      }
      .form-group {
          margin-bottom: 15px;
      }
      .form-group label {
          display: block;
          margin-bottom: 5px;
      }
      .form-group input {
          width: 100%;
          padding: 8px;
          border: 1px solid #ddd;
          border-radius: 4px;
      }
      .auth-btn {
          width: 100%;
          padding: 10px;
          background-color: #4CAF50;
          color: white;
          border: none;
          border-radius: 4px;
          cursor: pointer;
      }
      .auth-btn:hover {
          background-color: #45a049;
      }
      .favorites-modal {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background-color: rgba(0,0,0,0.7);
          z-index: 2000;
          justify-content: center;
          align-items: center;
      }
      .favorites-modal.active {
          display: flex;
      }
      .favorites-modal-content {
          background-color: white;
          border-radius: 8px;
          padding: 30px;
          max-width: 800px;
          width: 90%;
          box-shadow: 0 5px 15px rgba(0,0,0,0.3);
          text-align: center;
          animation: modalFadeIn 0.3s ease-out;
      }
      .favorites-modal h2 {
          color: #2c3e50;
          margin-bottom: 20px;
      }
      .favorites-list {
          text-align: left;
          max-height: 500px;
          overflow-y: auto;
      }
      .favorite-item {
          padding: 15px;
          border-bottom: 1px solid #eee;
          display: flex;
          justify-content: space-between;
          align-items: center;
          gap: 15px;
      }
      .favorite-item:last-child {
          border-bottom: none;
      }
      .favorite-item-question {
          font-weight: normal;
          font-size: 16px;
          flex-grow: 1;
          line-height: 1.4;
      }
      .favorite-answer-text {
          color: #4CAF50;
          font-weight: bold;
          margin-left: 8px;
      }
      .remove-favorite-btn {
          background-color: #e74c3c;
          color: white;
          border: none;
          padding: 5px 10px;
          border-radius: 4px;
          cursor: pointer;
          align-self: center;
      }
      .remove-favorite-btn:hover {
          background-color: #c0392b;
      }
      .favorites-modal-close-btn {
          background-color: #4CAF50;
          color: white;
          border: none;
          padding: 10px 20px;
          border-radius: 4px;
          cursor: pointer;
          font-weight: bold;
          margin-top: 20px;
          transition: background-color 0.3s;
      }
      .favorites-modal-close-btn:hover {
          background-color: #45a049;
      }
      @media (max-width: 1200px) {
          .nav-links {
              gap: 15px;
          }
          .main-nav {
              gap: 15px;
          }
          .social-icons {
              gap: 15px;
          }
          .expanded-menu-container {
              gap: 30px;
          }
      }
      @media (max-width: 992px) {
          .nav-links {
              gap: 10px;
          }
          .main-nav {
              gap: 10px;
          }
          .social-icons {
              gap: 10px;
          }
          .expanded-menu-container {
              flex-wrap: wrap;
              gap: 20px;
          }
          .expanded-menu-column {
              min-width: 150px;
          }
      }
      @media (max-width: 768px) {
          .desktop-headers {
              display: none;
          }
          .mobile-headers {
              display: block;
          }
          .mobile-search-btn {
              font-size: 12px;
              padding: 6px 12px;
          }
          .mobile-social-icons {
              gap: 10px;
          }
          .mobile-social-icons a {
              font-size: 16px;
          }
          .content-container {
              flex-direction: column;
              padding: 15px;
              margin-top: 100px;
          }
          .mcqs-container {
              margin-right: 0;
              margin-bottom: 20px;
          }
          .sidebar {
              display: none;
          }
          .mcq-footer {
              font-size: 11px;
          }
          .show-details-btn {
              font-size: 11px;
          }
          .footer-container {
              grid-template-columns: 1fr;
          }
          .quiz-mode-btn {
              padding: 8px 15px;
              font-size: 14px;
          }
          .related-links ul {
              flex-direction: column;
          }
          .pagination-container {
              flex-direction: column;
              align-items: center;
          }
          .page-info {
              margin-top: 10px;
              margin-left: 0;
          }
          .page-jump {
              margin-top: 10px;
          }
      }
      .scroll-buttons {
          position: fixed;
          right: 20px;
          bottom: 20px;
          display: flex;
          flex-direction: column;
          gap: 10px;
          z-index: 1000;
      }
      .scroll-btn {
          width: 40px;
          height: 40px;
          border-radius: 50%;
          background-color: #4CAF50;
          color: white;
          border: none;
          cursor: pointer;
          font-weight: bold;
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 18px;
          transition: background-color 0.3s;
      }
      .scroll-btn:hover {
          background-color: #45a049;
      }
      .mobile-header-2 .login-btn {
          background-color: #4CAF50;
          color: white;
          padding: 8px 12px;
          border-radius: 4px;
          text-decoration: none;
          font-size: 14px;
          margin-right: 10px;
          display: flex;
          align-items: center;
          gap: 5px;
      }
      .mobile-header-2 .login-btn:hover {
          background-color: #45a049;
      }
      .contact-form .form-group input[type="text"],
      .contact-form .form-group input[type="email"],
      .contact-form .form-group input[type="tel"],
      .contact-form .form-group textarea {
          width: 100%;
          padding: 12px;
          border: 1px solid #ddd;
          border-radius: 4px;
          font-size: 16px;
          box-sizing: border-box;
          color: #333;
          background-color: #fff;
      }
      .contact-form .form-group label {
          color: #333;
      }
      .contact-form .checkbox-group {
          display: flex;
          align-items: center;
          margin-bottom: 20px;
          color: #333;
      }
      .contact-form .checkbox-group input[type="checkbox"] {
          margin-right: 10px;
      }
      .contact-form button {
          background-color: #4CAF50;
          color: white;
          border: none;
          padding: 12px 20px;
          border-radius: 4px;
          cursor: pointer;
          font-size: 16px;
          width: 100%;
          transition: background-color 0.3s;
      }
      .contact-form button:hover {
          background-color: #45a049;
      }
      .contact-form .error {
          color: #e74c3c;
          font-size: 14px;
          margin-top: 5px;
      }
      .contact-form .success-message,
      .contact-form .error-message {
          padding: 15px;
          border-radius: 4px;
          margin-top: 20px;
          text-align: center;
          display: none;
      }
      .contact-form .success-message {
          background-color: #e8f5e9;
          color: #2e7d32;
      }
      .contact-form .error-message {
          background-color: #ffebee;
          color: #c62828;
      }
      
.contact-form .error-message {
          background-color: #ffebee;
          color: #c62828;
      }
      
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CATCHY "ALSO READ" WIDGET STYLING
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.tm-also-read-card {
    background: #ffffff;
    border-radius: 12px;
    margin: 35px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #f1f5f9;
    display: block;
}

/* Beautiful Left Gradient Strip */
.tm-also-read-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, #2563eb, #2ecc71); /* Blue to Green */
}

/* Hover Animation: Lift and Shadow */
.tm-also-read-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
    border-color: #e2e8f0;
}

.tm-ar-link {
    display: flex;
    align-items: center;
    padding: 15px 20px 15px 25px; /* Extra left padding for the strip */
    text-decoration: none;
    color: inherit;
    gap: 20px;
}

/* Image Container */
.tm-ar-img {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tm-ar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Image Zoom on Hover */
.tm-also-read-card:hover .tm-ar-img img {
    transform: scale(1.1);
}

/* Text Content Area */
.tm-ar-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* The "Must Read" Badge */
.tm-ar-badge {
    display: inline-block;
    background: #fee2e2;
    color: #ef4444;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    width: fit-content;
    transition: all 0.3s ease;
}

/* Badge Color Change on Hover */
.tm-also-read-card:hover .tm-ar-badge {
    background: #ef4444;
    color: #ffffff;
}

/* The Title */
.tm-ar-title {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s;
}

.tm-also-read-card:hover .tm-ar-title {
    color: #2563eb;
}

/* The Arrow Icon */
.tm-ar-icon {
    color: #cbd5e1;
    font-size: 20px;
    transition: transform 0.3s, color 0.3s;
}

.tm-also-read-card:hover .tm-ar-icon {
    color: #2563eb;
    transform: translateX(5px); /* Arrow moves right slightly */
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
    .tm-ar-link {
        padding: 12px 15px 12px 20px;
        gap: 15px;
    }
    .tm-ar-img {
        width: 75px;
        height: 75px;
    }
    .tm-ar-title {
        font-size: 15px;
    }
    .tm-ar-icon {
        display: none; /* Hides the arrow on phones to save text space */
    }
}