:root {
    --primary-color: #201E48;
    --secondary-color: #7e64ba;
    --background-color: #f8f4ed;
    --button-color: #44a1e0;
    --white: #201E48 ;
    --text-muted: #cccccc;
    --error-bg: rgba(255, 0, 0, 0.1);
    --error-border: #ff7b7b;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 20px;
    --glass-blur: blur(15px);
  }
  
  @font-face {
    font-family: 'Neue Montreal';
    src: url(../fonts/NeueMontreal-Regular.otf);    
  }
  
  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: var(--background-color); }
  ::-webkit-scrollbar-thumb { 
    background: var(--secondary-color);
    border-radius: 100px; 
  }
  ::-webkit-scrollbar-thumb:hover { background: var(--primary-color); }
  
  ::selection {
    color: var(--background-color);
    background: var(--primary-color);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Neue Montreal', 'Poppins';
    line-height: 1.4;
    background-color: var(--background-color);
  }
  
  .service-cards img{
    width: 100%;
    height: auto;
    max-width: 250px;
    margin-bottom: 1rem;
    transition: transform 0.5s ease;
  }
  
  .navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 15px;
    background-color: var(--background-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    max-width: 1000px;
    margin: 15px auto;
    position: fixed;
    top: 15px;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  }
  
  .nav-link{
    color: var(--secondary-color);
    transition: 0.3s ease;
  
  }
  
  .nav-link:hover{
    color: var(--white);
  }
  
        @media (max-width: 960px) {
            .navbar {
                max-width: 90%;
                padding: 10px 20px;
            }
        }
  
        .logo {
            width: clamp(100px, 15vw, 120px);
            height: auto;
        }
  
        .nav-links {
            list-style: none;
            display: flex;
            gap: 30px;
        }
  
        .nav-links li a {
            text-decoration: none;
            color: var(--secondary-color);
            font-weight: 0;
            position: relative;
            transition: var(--transition);
        }
  
        .underline{
          display: flex;
          gap: 30px;
        }
        .underline li a.active {
          color: var(--primary-color);
          position: relative;
        }
        .underline li a.active::after {
          content: '';
          position: absolute;
          width: 100%;
          height: 2px;
          bottom: -4px;
          left: 0;
          background-color: var(--primary-color);
          transition: width 0.3s ease;
        }
        .underline li a {
          position: relative;
          transition: var(--transition);
        }
        .underline li a::after {
          content: '';
          position: absolute;
          width: 0;
          height: 2px;
          bottom: -4px;
          left: 0;
          background-color: var(--primary-color);
          transition: width 0.3s ease;
        }
        .underline li a:hover {
          color: var(--primary-color);
        }
        .underline li a:hover::after {
          width: 100%;
        }
        .signup-btn {
            border: 2px solid var(--secondary-color);
            padding: 8px 16px;
            border-radius: 30px;
            transition: all 0.2s ease-in-out;
            color: var(--secondary-color);
            text-decoration: none;
        }
        .signup-btn:hover {
            border: 2px solid var(--primary-color);
            background-color: var(--primary-color);
            color: var(--background-color);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .hamburger span {
            height: 3px;
            width: 25px;
            background: var(--primary-color);
            border-radius: 4px;
            transition: all 0.3s ease-in-out; /* For the 'X' animation */
        }
  
        /* Responsive Navbar */
        @media (max-width: 850px) {
            .navbar {
               background-color: var(--background-color);
                padding: 15px 30px;
                max-width: 90%;
            }
            .hamburger {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background-color: var(--background-color);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transform: translateY(-100%);
                transition: transform 0.3s ease-in-out;
                padding: 20px;
                visibility: hidden;
                opacity: 0;
            }
            .nav-links.active {
                transform: translateY(0);
                visibility: visible;
                opacity: 1;
            }
            .underline {
                flex-direction: column;
                gap: 20px;
            }
            .nav-links li {
                opacity: 0;
                transform: translateY(-20px);
                transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
            }
            .nav-links.active li {
                opacity: 1;
                transform: translateY(0);
            }
            .nav-links li:nth-child(1) { transition-delay: 0.1s; }
            .nav-links li:nth-child(2) { transition-delay: 0.2s; }
            .nav-links li:nth-child(3) { transition-delay: 0.3s; }
            .nav-links li:nth-child(4) { transition-delay: 0.4s; }
            .nav-links li:nth-child(5) { transition-delay: 0.5s; }
            .nav-links li:nth-child(6) { transition-delay: 0.6s; }
            .nav-links li:nth-child(7) { transition-delay: 0.7s; }
            .hamburger.toggle span:nth-child(1) {
              transform: rotate(45deg) translate(5px, 5px);
            }
            .hamburger.toggle span:nth-child(2) {
              opacity: 0;
            }
            .hamburger.toggle span:nth-child(3) {
              transform: rotate(-45deg) translate(5px, -5px);
            }
        }
  
        @media (max-width: 480px) {
          .navbar {
            padding: 10px 15px;
          }
  
          .logo {
            width: 80px;
          }
  
          .nav-links {
            padding: 15px;
          }
  
          .underline {
            gap: 15px;
          }
        }
  
  .about-content {
    text-align: center;
  }
  
  .about-subtitle {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 500;
    justify-content: center;
    text-align: center;
  }
  
  .about-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 30px;
  }
  
  .about-text {
    flex: 1 1 400px;
    text-align: right;
    color: var(--primary-color);
    line-height: 1.8;
  }
  
  .about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--primary-color);
  }
  
  .about-image {
    flex: 1 1 400px;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
  }
  
  .about-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 20px;
    transition: transform 0.5s ease;
  }
  
  .about-image img:hover {
    transform: scale(1.02);
  }
  
  /* Responsive for mobile */
  @media (max-width: 768px) {
    .about-grid {
      flex-direction: column;
    }
  
    .about-text {
      text-align: justify;
    }
  
    .about-image {
      margin-top: 30px;
    }
  }
  
  .hero {
    background-image: url(../Resources/bg_section1.png);
    padding:100px 100px;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 4.6rem);
    color: var(--primary-color);
    font-weight: 100;
  }
  
  
  .hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--secondary-color);
  }
  
  .hero-btn {
    display: inline-block;
    background-color: var(--white);
    color: var(--background-color);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    border: 2px solid transparent; 
    transition: var(--transition);
  }
  
  .hero-btn:hover {
    border-color: var(--secondary-color); 
    color: var(--primary-color);
    background-color: transparent;
    box-shadow: 0 8px 20px var(--secondary-color);
  }
  
  .partners {
    background-color: var(--background-color);
    padding: 80px 20px;
    text-align: center;
  }
  
  .partners-content {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .partners p {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 40px;
  }
  
  .partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    align-items: center;
  }
  
  .partner-logos img {
    max-width: 120px;
    width: 100%;
    height: auto;
    filter: grayscale(100%); 
    opacity: 0.4;
    transition: all 0.3s ease;
  }
  
  .partner-logos img:hover {
    filter: grayscale(0%); 
    opacity: 1;
    transform: scale(1.05);
  }
  
  @media (max-width: 768px) {
    .partner-logos {
      gap: 30px;
    }
  
    .partner-logos img {
      max-width: 120px;
    }
  }
  
  .testimonials {
    background-color: var(--background-color);
    padding: 80px 20px;
  }
  
  .testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .testimonials-wrapper {
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) var(--background-color);
  }
  
  .testimonials-wrapper::-webkit-scrollbar {
    height: 8px;
  }
  
  .testimonials-wrapper::-webkit-scrollbar-track {
    background: var(--background-color);
  }
  
  .testimonials-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--secondary-color);
    border-radius: 10px;
  }
  
  .testimonial-card {
    flex: 0 0 300px;
    background-color: var(--background-color);
    border: 1px solid var(--secondary-color);
    border-radius: 20px;
    padding: 30px 20px;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  
  .testimonial-text {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.6;
  }
  
  .testimonial-author {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: bold;
  }
  
  @media (max-width: 768px) {
    .testimonial-card {
      flex: 0 0 80%;
    }
  }
  
  @media (max-width: 480px) {
    .testimonial-card {
      flex: 0 0 90%;
    }
  }
  
  .section-title {
    text-align: center;
    margin: 0 auto 50px;
    font-size: 36px; 
    color: var(--primary-color);
    max-width: 900px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 15px;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
  }
  
  .container {
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .card {
    flex: 1 1 140px;
    background: var(--background-color);
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    text-align: center;
    color: white;
    transition: var(--transition);
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .card p{
    font-size: 14px;
    color: var(--primary-color);
  }
  
  .card h3{
    font-weight: 0px;
    color: var(--secondary-color);
  }
  
  .footer {
    background-color: var(--primary-dark);
    color: var(--primary-color);
    padding: 60px 20px 20px;
    font-size: 14px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-section h3, .footer-section h4 {
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--primary-color);
  }
  
  .footer-section p {
    line-height: 1.6;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
  }
  
  .footer-section ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
  }
  
  .footer-section ul li a:hover {
    color: var(--secondary-color);
  }
  
  .footer-section ul li a:hover::after {
    width: 100%;
  }
  
  .social-icons a {
    margin-right: 15px;
    display: inline-block;
    color: var(--primary-color);
    font-size: 24px;
    transition: all 0.3s ease;
  }
  
  .social-icons a:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
  }
  
  .footer-bottom {
    text-align: center;
    border-top: 1px solid var(--primary-color);
    padding-top: 20px;
    font-size: 13px;
    color: var(--primary-color);
  }
  
  /*Newsroom*/
  .newsroom {
    padding: 80px 20px;
    background-color: var(--background-color);
  }
  
  .newsroom-title{
    color: var(--secondary-color);
  }
  
  .news-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .news-article {
    background-color: var(--secondary-light);
    padding: 25px;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    transition: var(--transition);
  }
  .news-article img {
    display: block;
    margin: 0 auto 1rem auto;
    width: 100%;
    height: auto;
    max-width: 100%; 
    transition: transform 0.5s ease;
    border-radius: 30px;
    object-fit: cover;
  }
  
  .news-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .news-article h3 {
    text-align: justify;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
  }
  
  .news-article p {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--primary-color);
  }
  
  .news-date {
    font-size: 13px;
    color: #888;
  }
  
  .newsroom-button {
    text-align: center;
    margin-top: 50px;
  }
  
  .btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--white);
    color: var(--background-color);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .newsletter {
    background-color: var(--background-color);
    padding: 80px 20px;
  }
  
  .newsletter-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  
  .newsletter-text {
    max-width: 700px;
  }
  
  .section-title {
    font-size: 4rem;
    max-width: 600px;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .newsletter-description {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
  }
  
  .newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
  }
  
  .newsletter-form input[type="email"] {
    background-color: var(--background-color);
    color: var(--secondary-color);
    flex: 1 1 300px;
    min-width: 250px;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .newsletter-form input[type="email"]:focus {
    color: var(--primary-color);
    border-color: var(--primary-dark);
    background-color: var(--background-color);
    box-shadow: 0 0 8px rgba(0, 98, 255, 0.2);
  }
  
  .btn-subscribe {
    flex: 0 0 auto;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    background-color: var(--primary-color);
    color: var(--background-color);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .btn-subscribe:hover {
    background-color: var(--secondary-color);
  }
  
  @media (max-width: 768px) {
    .newsletter-content {
      padding: 0 20px;
    }
  
    .section-title {
      font-size: 28px;
    }
  
    .newsletter-description {
      font-size: 16px;
    }
  
    .newsletter-form {
      flex-direction: column;
      align-items: center; 
    }
  
    .newsletter-form input[type="email"],
    .btn-subscribe {
      width: 100%;
      max-width: 400px;
    }
  }
  
  @media (max-width: 480px) {
    .section-title {
      font-size: 24px;
    }
  
    .newsletter-description {
      font-size: 15px;
    }
  
    .newsletter-form input[type="email"],
    .btn-subscribe {
      width: 100%;
      max-width: 320px; 
    }
  }
  
  .support-container {
    max-width: 1200px;
    margin: 160px auto 2rem;
    padding: 0 1rem;
  }
  
  .support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .support-card {
    background: var(--background-color);
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  .support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border-color: var(--primary-color);
  }
  
  .support-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .support-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  
  .support-card p {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .contact-form {
    background: var(--background-color);
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
  }
  
  .contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    background: var(--background-color);
    color: var(--white);
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 8px rgba(224, 141, 219, 0.2);
  }
  
  .form-group textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  .submit-btn {
    background: var(--white);
    color: var(--background-color);
    padding: 10px 25px;
    border: 2px solid transparent;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-weight: 600;
    width: 100%;
    margin-top: 1rem;
  }
  
  .submit-btn:hover {
    border-color: var(--secondary-color);
    color: var(--primary-color);
    background-color: transparent;
    box-shadow: 0 8px 20px var(--secondary-color);
  }
  
  .faq-section {
    margin-top: 3rem;
  }
  
  .faq-section h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  
  .faq-item {
    background: var(--background2-color);
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
  }
  
  .faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(32, 30, 72, 0.1);
  }
  
  .faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
  }
  
  .faq-answer {
    padding: 0 1.5rem;
    color: var(--primary-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    line-height: 1.6;
  }
  
  .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
  }
  
  .faq-question i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-question i {
    transform: rotate(180deg);
  }
  
  .faq-item.active .faq-question {
    color: var(--secondary-color);
  }
  
  .report-btn {
    text-decoration: none;
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 10px 25px;
    border: 2px solid transparent;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-weight: 600;
    width: 100%;
    margin-top: 1rem;
  }
  
  .report-btn:hover {
    background-color: var(--secondary-color);
    color: var(--background-color);
  
  }

  @media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
  
    .support-container {
        margin-top: 100px;
    }
  }
  
  /* Newsroom Styles */
  .newsroom-section {
      margin-bottom: 4rem;
  }
  
  .newsroom-section h2 {
      color: var(--primary-color);
      font-size: 2rem;
      margin-bottom: 2rem;
      position: relative;
      padding-bottom: 0.5rem;
  }
  
  .newsroom-section h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background: var(--secondary-color);
      border-radius: 2px;
  }
  
  .news-articles {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
  }
  
  .news-article {
      background: var(--background-color);
      border: 2px solid var(--secondary-color);
      border-radius: 30px;
      overflow: hidden;
      transition: var(--transition);
  }
  
  .news-article:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      border-color: var(--primary-color);
  }
  
  .news-article img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.5s ease;
  }
  
  .news-article:hover img {
      transform: scale(1.05);
  }
  
  .article-content {
      padding: 1.5rem;
  }
  
  .news-date {
      color: var(--secondary-color);
      font-size: 0.9rem;
      display: block;
      margin-bottom: 0.5rem;
  }
  
  .news-article h3 {
      color: var(--primary-color);
      font-size: 1.3rem;
      margin-bottom: 1rem;
      line-height: 1.4;
  }
  
  .news-article p {
      color: var(--primary-color);
      margin-bottom: 1.5rem;
      line-height: 1.6;
  }
  
  .read-more {
      color: var(--secondary-color);
      text-decoration: none;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: var(--transition);
  }
  
  .read-more i {
      transition: transform 0.3s ease;
  }
  
  .read-more:hover {
      color: var(--primary-color);
  }
  
  .read-more:hover i {
      transform: translateX(5px);
  }
  
  .news-article.featured {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 2rem;
  }
  
  .news-article.featured img {
      height: 100%;
  }
  
  @media (max-width: 768px) {
      .news-article.featured {
          grid-template-columns: 1fr;
      }
  
      .news-article.featured img {
          height: 200px;
      }
  }
  
  .newsletter-section {
      background: var(--background-color);
      border: 2px solid var(--secondary-color);
      border-radius: 30px;
      padding: 3rem;
      text-align: center;
  }
  
  .newsletter-section p {
      color: var(--primary-color);
      margin-bottom: 2rem;
  }
  
  .newsletter-form {
      max-width: 600px;
      margin: 0 auto;
  }
  
  /* Article Page Styles */
  .article-container {
      max-width: 1200px;
      margin: 160px auto 4rem;
      padding: 0 2rem;
  }
  
  .article-header {
      margin-bottom: 2rem;
  }
  
  .article-meta {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
  }
  
  .article-category {
      color: var(--secondary-color);
      font-weight: 600;
      text-transform: uppercase;
      font-size: 0.9rem;
  }
  
  .article-date {
      color: var(--primary-color);
      font-size: 0.9rem;
  }
  
  .article-title {
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: 1.5rem;
      line-height: 1.2;
  }
  
  .article-author {
      display: flex;
      align-items: center;
      gap: 1rem;
  }
  
  .author-image {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
  }
  
  .author-info {
      display: flex;
      flex-direction: column;
  }
  
  .author-name {
      font-weight: 600;
      color: var(--primary-color);
  }
  
  .author-role {
      font-size: 0.9rem;
      color: var(--secondary-color);
  }
  
  .article-featured-image {
      margin: 2rem 0;
      border-radius: 30px;
      overflow: hidden;
  }
  
  .article-featured-image img {
      width: 100%;
      height: auto;
      display: block;
  }
  
  .article-content {
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--primary-color);
  }
  
  .article-excerpt {
      font-size: 1.3rem;
      color: var(--secondary-color);
      margin-bottom: 2rem;
      font-weight: 500;
  }
  
  .article-content h2 {
      font-size: 1.8rem;
      color: var(--primary-color);
      margin: 2rem 0 1rem;
  }
  
  .article-content p {
      margin-bottom: 1.5rem;
  }
  
  .article-content ul {
      margin-bottom: 1.5rem;
      padding-left: 1.5rem;
  }
  
  .article-content li {
      margin-bottom: 0.5rem;
  }
  
  blockquote {
      border-left: 4px solid var(--secondary-color);
      padding-left: 1.5rem;
      margin: 2rem 0;
      font-style: italic;
      color: var(--primary-color);
  }
  
  blockquote cite {
      display: block;
      margin-top: 1rem;
      font-weight: 600;
  }
  
  .article-footer {
      margin: 3rem 0;
      padding-top: 2rem;
      border-top: 1px solid var(--secondary-color);
  }
  
  .article-tags {
      margin-bottom: 1.5rem;
  }
  
  .tag {
      display: inline-block;
      padding: 0.5rem 1rem;
      background: var(--background-color);
      border: 1px solid var(--secondary-color);
      border-radius: 20px;
      margin-right: 0.5rem;
      margin-bottom: 0.5rem;
      color: var(--secondary-color);
      font-size: 0.9rem;
      transition: var(--transition);
  }
  
  .tag:hover {
      background: var(--secondary-color);
      color: var(--background-color);
  }
  
  .article-share {
      display: flex;
      align-items: center;
      gap: 1rem;
  }
  
  .article-share span {
      color: var(--primary-color);
      font-weight: 600;
  }
  
  .share-link {
      color: var(--secondary-color);
      font-size: 1.2rem;
      transition: var(--transition);
  }
  
  .share-link:hover {
      color: var(--primary-color);
      transform: scale(1.1);
  }
  
  .related-articles {
      margin-top: 4rem;
  }
  
  .related-articles h3 {
      font-size: 1.8rem;
      color: var(--primary-color);
      margin-bottom: 2rem;
  }
  
  @media (max-width: 768px) {
      .article-container {
          margin-top: 120px;
          padding: 0 1rem;
      }
  
      .article-title {
          font-size: 2rem;
      }
  
      .article-content {
          font-size: 1rem;
      }
  
      .article-excerpt {
          font-size: 1.1rem;
      }
  }
  
  
  