      .energy-news-section {
        position: relative;
        z-index: 1;
        overflow: hidden;
      }

      .energy-news-hero {
        position: relative;
        height: 500px;
        overflow: hidden;
      }

      .energy-hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
      }

      .energy-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          135deg,
          rgba(13, 27, 42, 0.92) 0%,
          rgba(40, 120, 192, 0.85) 100%
        );
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .energy-hero-content {
        max-width: 800px;
        text-align: center;
        padding: 2rem;
        animation: fadeInUp 0.8s ease-out;
      }

      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1.25rem;
        background: rgba(232, 119, 34, 0.95);
        border-radius: 50px;
        margin-bottom: 1.5rem;
        animation: pulse 2s ease-in-out infinite;
      }

      .badge-icon {
        width: 20px;
        height: 20px;
        color: white;
      }

      .hero-badge span {
        color: white;
        font-weight: 600;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        text-transform: uppercase;
      }

      .energy-hero-title {
        font-family: var(--font-display);
        font-size: clamp(2.5rem, 6vw, 4rem);
        color: white;
        margin-bottom: 1rem;
        font-weight: 400;
        letter-spacing: -1px;
        line-height: 1.1;
      }

      .energy-hero-subtitle {
        color: rgba(255, 255, 255, 0.95);
        font-size: clamp(1rem, 2vw, 1.25rem);
        line-height: 1.6;
        max-width: 600px;
        margin: 0 auto;
      }

      .energy-providers-container {
        padding: 4rem;
        background: white;
      }

      .energy-providers-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
      }

      .provider-card {
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid var(--color-light);
        border-radius: 16px;
        padding: 2rem;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
      }

      .provider-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .provider-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(40, 120, 192, 0.25);
        border-color: var(--color-primary);
      }

      .provider-card:hover::before { transform: scaleX(1); }

      .provider-card-icon {
        width: 64px;
        height: 64px;
        background: linear-gradient(135deg, rgba(40, 120, 192, 0.1) 0%, rgba(58, 142, 212, 0.1) 100%);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
      }

      .provider-card:hover .provider-card-icon { transform: rotate(5deg) scale(1.05); }

      .provider-card-icon svg {
        width: 32px;
        height: 32px;
        color: var(--color-primary);
        transition: color 0.3s ease;
      }

      .provider-card:hover .provider-card-icon svg { color: white; }
      .provider-card-content { flex-grow: 1; }

      .provider-name {
        font-size: 1.5rem;
        color: var(--color-midnight);
        font-weight: 600;
        margin: 0 0 0.5rem 0;
        letter-spacing: -0.5px;
      }

      .provider-region {
        color: var(--color-primary);
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin: 0 0 1rem 0;
      }

      .provider-description {
        color: var(--color-slate);
        font-size: 1rem;
        line-height: 1.6;
        margin: 0;
      }

      .provider-card-action {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 1rem;
        border-top: 2px solid var(--color-light);
        transition: border-color 0.3s ease;
      }

      .provider-card:hover .provider-card-action { border-color: var(--color-primary); }

      .provider-card-action span {
        color: var(--color-primary);
        font-weight: 600;
        font-size: 1rem;
      }

      .action-arrow {
        width: 24px;
        height: 24px;
        color: var(--color-primary);
        transition: transform 0.3s ease;
      }

      .provider-card:hover .action-arrow { transform: translateX(8px); }

      @media (max-width: 1024px) {
        .energy-news-hero { height: 400px; }
        .energy-providers-container { padding: 3rem 2rem; }
        .energy-providers-grid { grid-template-columns: 1fr; gap: 1.5rem; }
      }

      @media (max-width: 768px) {
        .energy-news-hero { height: 350px; }
        .energy-hero-content { padding: 1.5rem; }
        .hero-badge { padding: 0.4rem 1rem; margin-bottom: 1rem; }
        .badge-icon { width: 16px; height: 16px; }
        .hero-badge span { font-size: 0.8rem; }
        .energy-providers-container { padding: 2rem 1.5rem; }
        .provider-card { padding: 1.5rem; }
        .provider-card-icon { width: 56px; height: 56px; }
        .provider-card-icon svg { width: 28px; height: 28px; }
        .provider-name { font-size: 1.25rem; }
        .provider-region { font-size: 0.85rem; }
        .provider-description { font-size: 0.95rem; }
      }

      .news-insights-section {
        padding: 4rem;
        position: relative;
        z-index: 1;
        background: linear-gradient(
          135deg,
          rgba(40, 120, 192, 0.02) 0%,
          rgba(255, 255, 255, 0) 100%
        );
      }

      .news-insights-container {
        max-width: 1200px;
        margin: 0 auto;
      }

      .news-insights-header {
        text-align: center;
        margin-bottom: 3rem;
      }

      .news-insights-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(40, 120, 192, 0.1);
        color: var(--color-primary);
        padding: 0.5rem 1.25rem;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 1.5rem;
      }

      .news-insights-badge svg {
        width: 18px;
        height: 18px;
      }

      .news-insights-title {
        font-family: var(--font-display);
        font-size: clamp(2rem, 5vw, 3rem);
        color: var(--color-midnight);
        margin-bottom: 1rem;
        font-weight: 400;
        letter-spacing: -0.5px;
      }

      .news-insights-subtitle {
        color: var(--color-slate);
        font-size: 1.1rem;
        line-height: 1.6;
        max-width: 700px;
        margin: 0 auto;
      }

      .news-cards-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }

      .news-source-card {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        border: 2px solid transparent;
      }

      .news-source-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 50px rgba(40, 120, 192, 0.2);
        border-color: var(--color-primary);
      }

      .news-card-image {
        height: 200px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .news-card-image::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: repeating-linear-gradient(
          45deg,
          transparent,
          transparent 10px,
          rgba(255, 255, 255, 0.03) 10px,
          rgba(255, 255, 255, 0.03) 20px
        );
        animation: shimmer 20s linear infinite;
      }

      .news-source-card:nth-child(1) .news-card-image {
        background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
      }

      .news-source-card:nth-child(2) .news-card-image {
        background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
      }

      .news-source-card:nth-child(3) .news-card-image {
        background: linear-gradient(135deg, #e87722 0%, #f59e0b 100%);
      }

      .news-card-icon-wrapper {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 2;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
      }

      .news-source-card:hover .news-card-icon-wrapper {
        transform: scale(1.1) rotate(5deg);
      }

      .news-card-icon {
        width: 44px;
        height: 44px;
        color: var(--color-primary);
      }

      .news-source-card:nth-child(2) .news-card-icon {
        color: var(--color-midnight);
      }

      .news-source-card:nth-child(3) .news-card-icon {
        color: var(--color-accent);
      }

      .news-card-content {
        padding: 2rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
      }

      .news-card-title {
        font-size: 1.5rem;
        color: var(--color-midnight);
        margin-bottom: 0.75rem;
        font-weight: 600;
      }

      .news-card-description {
        color: var(--color-slate);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        flex-grow: 1;
      }

      .news-card-footer {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--color-primary);
        font-weight: 600;
        font-size: 0.9rem;
        margin-top: auto;
      }

      .news-card-arrow {
        width: 20px;
        height: 20px;
        transition: transform 0.3s ease;
      }

      .news-source-card:hover .news-card-arrow {
        transform: translateX(5px);
      }

      @media (max-width: 1024px) {
        .news-insights-section {
          padding: 3rem 2rem;
        }

        .news-cards-grid {
          grid-template-columns: 1fr;
          gap: 1.5rem;
        }

        .news-card-image {
          height: 180px;
        }
      }

      @media (max-width: 768px) {
        .news-insights-section {
          padding: 3rem 1.5rem;
        }

        .news-insights-header {
          margin-bottom: 2rem;
        }

        .news-card-content {
          padding: 1.5rem;
        }

        .news-card-icon-wrapper {
          width: 70px;
          height: 70px;
        }

        .news-card-icon {
          width: 38px;
          height: 38px;
        }

        .news-card-title {
          font-size: 1.25rem;
        }
      }


