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

   body {
       font-family: 'Urbanist', sans-serif;
       background: #1a1a1a;
       color: #fff;
   }

   .container {
       max-width: 1200px;
       margin: 0 auto;
       padding: 0 20px;
   }


   a {
       text-decoration: none;
   }

   /* Navigation */
   .main-header6 {
       position: absolute;
       width: 100%;
       top: 0;
       z-index: 1000;

       padding: 20px 0;
   }

   .navbar {
       width: 100%;
   }

   .nav-container {
       max-width: 1400px;
       margin: 0 auto;
       padding: 0 40px;
       display: flex;
       justify-content: space-between;
       align-items: center;
       gap: 20px;
   }

   .nav-left,
   .nav-right {
       display: flex;
       gap: 30px;
       align-items: center;
   }

   .nav-link {
       color: #ffffff;
       text-decoration: none;
       font-size: 14px;
       font-weight: 400;
       transition: opacity 0.3s;
   }

   .nav-link {
       position: relative;
       text-decoration: none;
   }

   .nav-link::after {
       content: "";
       position: absolute;
       left: 0;
       bottom: -4px;
       width: 0;
       height: 2px;
       background: #fff;
       transition: width 0.3s ease;
   }

   .nav-link.active::after {
       width: 100%;
   }

   .logo img {
       height: 50px;
       width: auto;
   }

   /* Mobile menu toggle */
   .mobile-menu-toggle {
       display: none;
       background: none;
       border: none;
       color: white;
       font-size: 24px;
       cursor: pointer;
   }

   /* Hero Section */
   .hero6 {
       height: 500px;
       min-height: 400px;
       background: url('Images/insights_header.png') center/cover no-repeat;
       display: flex;
       align-items: center;
       justify-content: center;
       text-align: center;
       position: relative;
   }

   .hero-content {
       margin-top: 80px;
       padding: 0 20px;

   }

   .hero-content h1 {
       font-family: 'Tenor Sans', sans-serif;
       font-size: 48px;
       letter-spacing: 4px;
       margin-bottom: 10px;
   }

   .hero-content p {
       font-size: 18px;
       opacity: 0.9;
   }


   .blog-section {
       margin: 60px auto 40px auto;
       padding: 0 20px;
       background: #181818;

   }

   /* FEATURED CARD */
   .featured-card {
       display: grid;
       grid-template-columns: 1.2fr 1fr;
       gap: 40px;
       border: 1px solid rgba(51, 51, 51, 0.95);
       margin-bottom: 60px;
   }

   .featured-image img {
       width: 100%;
       height: 100%;
       object-fit: cover;
   }

   .featured-content {
       vertical-align: middle !important;
       padding: 20px 30px 20px 30px;
   }

   .featured-content h2 {
       font-size: 22px;
       margin: 20px 0;
       padding-right: 60px;
       font-family: 'Tenor Sans', sans-serif;
       color: #c9a86a;
   }

   .featured-content p {
       font-size: 15px;
       font-family: 'Urbanist', sans-serif;
       line-height: 1.6;
       margin-bottom: 20px;
       color: #bdbdbd;
   }

   .meta-row {
       display: flex;
       gap: 20px;
       font-family: 'Urbanist', sans-serif;
       font-size: 13px;
       color: #9a9a9a;
   }

   .read-more {
       font-family: 'Urbanist', sans-serif;
   }

   .insights_icon {
       width: 15px !important;
       vertical-align: middle !important;
       height: 15px !important;
       font-family: 'Urbanist', sans-serif;
       margin-right: 10px !important;
   }

   .articles-grid {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 30px;
   }

   .article-card {
       display: flex;
       flex-direction: column;
       border: 1px solid rgba(51, 51, 51, 0.95);
   }

   .image-box {
       position: relative;
       height: 180px;
   }

   .image-box img {
       width: 100%;
       height: 100%;
       object-fit: cover;
   }

   .image-box .badge {
       position: absolute;
       top: 20px;
       right: 0;
       padding: 1px 10px;
       background: #C9A86A;
       color: white;
       font-size: 12px;
       font-weight: 800;
       border-radius: 0;
       letter-spacing: 0.5px;
   }

   .card-body {
       padding: 20px;
       display: flex;
       flex-direction: column;
       flex: 1;
   }

   .card-body h3 {
       font-size: 16px;
       margin: 12px 0;
       color: #c9a86a;
       font-family: 'Tenor Sans', sans-serif;
   }

   .card-body p {
       font-size: 14px;
       color: #bdbdbd;
       line-height: 1.5;
       font-family: 'Urbanist', sans-serif;
       margin-bottom: 20px;
   }

   .read-more {
       margin-top: auto;
       font-size: 14px;
       color: #c9a86a;
       text-decoration: none;
       font-weight: 500;
   }

   .read-more:hover {
       text-decoration: underline;
   }

   /* Footer Section*/
   .footer {
       background: #161616;
       padding: 80px 40px 20px;
   }

   .footer-content {
       display: grid;
       grid-template-columns: 1fr 2fr;
       gap: 60px;
       margin-bottom: 40px;
       max-width: 1400px;
       margin-left: auto;
       margin-right: auto;
   }

   .footer-brand img {
       height: 40px;
       max-width: 100%;
       object-fit: contain;
   }

   .footer-links {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 40px;
   }

   .footer-column h4 {
       color: #ffffff;
       font-size: 16px;
       font-weight: 600;
       margin-bottom: 20px;
       letter-spacing: 1px;
       font-family: 'Tenor Sans', sans-serif;
   }

   .footer-column a {
       display: block;
       color: white;
       text-decoration: none;
       font-size: 14px;
       margin-bottom: 12px;
       transition: color 0.3s;
   }

   .footer-column a:hover {
       color: #C9A86A;
   }

   .subscribe-message {
       margin-top: 10px;
       color: #7cb342 !important;
       font-weight: 500;
       display: none;
   }

   .subscribe-field {
       display: flex;
       gap: 10px;
       margin-bottom: 20px;
   }

   .subscribe-field input {
       flex: 1;
       padding: 12px;
       background: transparent;
       border: 1px solid #333;
       color: #fff;
       font-size: 14px;
       font-family: 'Urbanist', sans-serif;
   }

   .subscribe-button {
       padding: 12px 30px;
       background: #fff;
       color: #000;
       border: none;
       cursor: pointer;
       font-weight: 600;
       font-family: 'Urbanist', sans-serif;
       transition: background 0.3s;
       white-space: nowrap;
   }

   .subscribe-button:hover {
       background: #C4A962;
   }

   .social-icons {
       display: flex;
       gap: 25px;
       margin-top: 20px;
   }

   .social-icons a img {
       width: 40px;
       height: 40px;
       transition: transform 0.3s;
   }

   .social-icons a:hover img {
       transform: scale(1.1);
   }

   .footer-bottom {
       text-align: center;
       padding-top: 30px;
       border-top: 1px solid #333;
       color: white;
       font-size: 14px;
       max-width: 1400px;
       margin: 0 auto;
   }



   /* RESPONSIVE */
   @media (max-width: 992px) {
       .featured-card {
           grid-template-columns: 1fr;
       }

       .articles-grid {
           grid-template-columns: repeat(2, 1fr);
       }
   }

   @media (max-width: 600px) {
       .articles-grid {
           grid-template-columns: 1fr;
       }
   }

   /* Desktop (1200px and below) */
   @media (max-width: 1200px) {
       .container {
           padding: 0 30px;
       }

       .nav-container {
           padding: 0 30px;
       }

       .nav-left,
       .nav-right {
           gap: 40px;
       }
   }

   /* Tablet Large (1024px and below) */
   @media (max-width: 1024px) {

       .nav-left,
       .nav-right {
           gap: 30px;
       }

       .nav-link {
           font-size: 15px;
       }
   }

   /* Tablet Medium (900px and below) */
   @media (max-width: 900px) {
       .menu-toggle {
           display: flex;
       }

       .nav-left,
       .nav-right {
           display: none;
       }

       .nav-container {
           justify-content: space-between;
       }

       .logo {
           order: 2;
       }

       .menu-toggle {
           order: 1;
       }

       .footer-content {
           grid-template-columns: 1fr;
           gap: 40px;
       }

       .footer-links {
           grid-template-columns: 1fr;
           gap: 30px;
       }

       .footer-brand {
           text-align: center;
       }
   }

   /* Tablet (768px and below) */
   @media (max-width: 768px) {

       .container,
       .nav-container {
           padding: 0 20px;
       }

       .logo img {
           height: 50px;
           max-width: 220px;
       }

       .hero6 {
           height: 450px;
       }

       .hero-content h1 {
           font-size: 36px;
           letter-spacing: 2px;
       }

       .hero-content p {
           font-size: 16px;
       }


       .footer-brand img {
           height: 35px;
           max-width: 220px;
       }

       .subscribe-field {
           flex-direction: column;
       }

       .subscribe-field input {
           width: 100%;
       }

       .subscribe-button {
           width: 100%;
       }
   }

   /* Mobile Large (640px and below) */
   @media (max-width: 640px) {
       .hero6 {
           height: 400px;
       }

       .hero-content h1 {
           font-size: 32px;
       }

   }

   /* Mobile Medium (480px and below) */
   @media (max-width: 480px) {

       .container,
       .nav-container {
           padding: 0 15px;
       }

       .logo img {
           height: 25px;

       }

       .sidebar-logo img {
           height: 30px;
           max-width: 170px;
       }

       .hero6 {
           height: 350px;
       }

       .hero-content h1 {
           font-size: 26px;
           letter-spacing: 1px;
       }

       .hero-content p {
           font-size: 14px;
       }

       .footer {
           padding: 60px 20px 20px;
       }

       .footer-brand {
           margin-bottom: 20px;
       }

       .footer-brand img {
           height: 50px;
           max-width: 300px;
       }

       .sidebar {
           width: 260px;
       }
   }

   /* Mobile Small (360px and below) */
   @media (max-width: 360px) {
       .hero6 {
           height: 320px;
       }

       .hero-content h1 {
           font-size: 22px;
       }

       .hero-content p {
           font-size: 13px;
       }

       .logo img {
           height: 28px;
           max-width: 130px;
       }

       .sidebar-logo img {
           height: 22px;
           max-width: 140px;
       }

       .sidebar {
           width: 240px;
       }

       .footer-brand img {
           height: 28px;
           max-width: 180px;
       }
   }



   /* Tablet Portrait (768px and below) */
   @media (max-width: 768px) {

       .btn {
           width: 100%;
           max-width: 300px;
           margin: 0 auto;
       }

       .subscribe-field input {
           width: 100%;
       }

       .subscribe-button {
           width: 100%;
       }
   }

   /* Mobile (576px and below) */
   @media (max-width: 576px) {
       .btn {
           padding: 12px 24px;
           font-size: 13px;
       }

   }