
        @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-text-color: #FFFFFF;
            --secondary-text-color: #9B96B0;
            --accent-color: #d66c2a;
            --padding-inline-section: 15px;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #0a0a0a;
            color: white;
            line-height: 1.6;
        }

        .container {
            max-width: 1280px;
            margin-inline: auto;
            padding: var(--padding-inline-section);
        }

        /* Header */
        

        /* Article Hero */
        .article-hero {
           
            background-attachment: fixed;
            padding: 120px 0 80px;
            position: relative;
        }

        .article-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(214, 108, 42, 0.2), rgba(10, 10, 10, 0.8));
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .article-category {
            background-color: var(--accent-color);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 20px;
        }

        .article-title {
            font-size: 3.0rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
           
        }
        

        .article-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-bottom: 30px;
            font-size: 0.95rem;
            color: #b3b3b3;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .article-excerpt {
            font-size: 1.2rem;
            color: #e0e0e0;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Article Content */
        .article-content {
            padding: 80px 0;
            background-color: #0a0a0a;
        }

        .content-wrapper {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .content-section {
            margin-bottom: 50px;
        }

        .content-section h2 {
            font-size: 2.2rem;
            color: var(--accent-color);
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
        }

        .content-section h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 30px;
            background: linear-gradient(135deg, var(--accent-color), #b65620);
            border-radius: 2px;
        }

        .content-section h3 {
            font-size: 1.6rem;
            color: #ffffff;
            margin: 30px 0 15px;
        }

        .content-section p {
            font-family: 'Roboto', sans-serif;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #b3b3b3;
            margin-bottom: 20px;
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(214, 108, 42, 0.1), rgba(214, 108, 42, 0.05));
            border-left: 4px solid var(--accent-color);
            padding: 25px;
            margin: 30px 0;
            border-radius: 8px;
            position: relative;
        }

        .highlight-box::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 4rem;
            color: var(--accent-color);
            opacity: 0.3;
        }

        .highlight-box p {
            color: #ffffff;
            font-weight: 500;
            margin: 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .stat-card {
            background: linear-gradient(135deg, #1e293b, #334155);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(214, 108, 42, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(214, 108, 42, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-color);
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #b3b3b3;
            margin-top: 8px;
        }

        .content-list {
            list-style: none;
            padding: 0;
        }

        .content-list li {
            position: relative;
            padding: 12px 0 12px 30px;
            color: #b3b3b3;
            font-size: 1.05rem;
        }

        .content-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            top: 12px;
            color: var(--accent-color);
            font-weight: bold;
        }

        /* Related Articles */
        .related-articles {
            background-color: #111111;
            padding: 60px 0;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .related-card {
            background-color: #1e293b;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .related-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(214, 108, 42, 0.15);
        }

        .related-image {
            width: 100%;
            height: 180px;
            background-size: cover;
            background-position: center;
        }

        .related-content {
            padding: 20px;
        }

        .related-content h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: white;
        }

        .related-content p {
            font-size: 0.9rem;
            color: #b3b3b3;
            margin-bottom: 15px;
        }

        .related-link {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            background: #252321;
            padding: 60px 0;
            text-align: center;
            margin-top: 80px;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: white;
        }

        .cta-content p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .cta-btn.primary {
            background-color: white;
            color: black;
        }

        .cta-btn.secondary {
            border: 2px solid white;
            color: white;
            background: transparent;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .article-title {
                font-size: 2.5rem;
            }

            .article-meta {
                flex-direction: column;
                gap: 15px;
            }

            .content-section h2 {
                font-size: 1.8rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-btn {
                width: 100%;
                max-width: 300px;
            }

            .nav-links {
                display: none;
            }
        }

        /* Scroll Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-color), #b65620);
            z-index: 9999;
            transition: width 0.1s;
        }

        /* Social Share */
        .social-share {
            position: fixed;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 100;
        }

        .share-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s;
            text-decoration: none;
        }

        .share-btn.facebook { background-color: #d66c2a; }
        .share-btn.twitter { background-color: #d66c2a; }
        .share-btn.linkedin { background-color: #d66c2a; }
        .share-btn.copy { background-color: #d66c2a; }

        .share-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        @media (max-width: 1024px) {
            .social-share {
                display: none;
            }
        }



        /* CTA Sections */


.cta-section {
  max-width: 1200px;
  margin: 50px auto;
  /* Increased top margin for more space */
  padding: 50px 20px;
  text-align: center;
  background: linear-gradient(#A8653E, #301508);
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  color: white;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--secondary-text-color);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(#A8653E, #301508);
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0px 4px 6px rgba(66, 47, 47, 0.1);
  transition: 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 25px 10px;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .cta-section p {
    font-size: 16px;
  }

  .cta-button {
    font-size: 16px;
    padding: 10px 25px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 20px 10px;
  }

  .cta-section h2 {
    font-size: 24px;
  }

  .cta-section p {
    font-size: 14px;
  }

  .cta-button {
    font-size: 14px;
    padding: 8px 20px;
  }
}
  


    /* Footer */
    .footer {
      background-color: black;
      color: #4b5563;
      padding: 40px 0;
    }

    .wrapper {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding-bottom: 20px;
      border-bottom: 1px solid #e5e7eb;
    }

    .brand {
      width: 20%;
      text-align: center;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-logo img {
      text-align: center;
      border-radius: 50%;
      width: 40px;
      height: 40px;
    }

    .brand-name {
      font-size: 25px;
      font-weight: bold;
      display: block;
      color: var(--primary-text-color);
      margin-top: 5px;
    }

    .brand-description {
      font-size: 14px;
      color: var(--secondary-text-color);
    }

    .footer-links {
      display: flex;
      width: 75%;
      justify-content: space-between;
    }

    .column {
      width: 22%;
    }

    .column h3 {
      font-size: 20px;
      font-weight: bold;
      color: var(--primary-text-color);
      margin-bottom: 10px;
    }

    .column ul {
      list-style: none;
      padding: 0;
    }

    .column ul li {
      margin-bottom: 8px;
    }

    .column ul li a {
      text-decoration: none;
      color: white;
      font-size: 14px;
      transition: color 0.3s;
    }

    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding-top: 20px;
    }

    .footer-bottom p {
      font-size: 14px;
      color: white;
    }

    .footer-bottom a {
      text-decoration: none;
      color: white;
      transition: color 0.3s;
    }

    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icons a {
      color: white;
      font-size: 20px;
      transition: transform 0.3s;
    }

    .social-icons a:hover {
      transform: scale(1.1);
      color: #d66c2a;
    }

    /* Media query for footer */
    @media screen and (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .results-section {
        margin: 5px;
      }

      .brand {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
      }

      .footer-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
      }

      .brand-name {
        margin-top: 0;
        font-size: 20px;
      }

      .brand-description {
        max-width: 80%;
        text-align: center;
        margin-top: 8px;
      }

      .footer-links {
        flex-direction: column;
        width: 100%;
        align-items: center;
      }

      .column {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
      }
    }