    .blog-hero {
      background: linear-gradient(135deg, #022c3b 0%, #034a5a 100%);
      color: white;
      padding: 80px 20px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .blog-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 122, 0, 0.1) 0%, transparent 70%);
      animation: float 8s ease-in-out infinite;
    }

    .blog-hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .blog-hero h1 {
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 20px;
      background: linear-gradient(45deg, #ffffff, #ff7a00);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .blog-hero-subtitle {
      font-size: 20px;
      opacity: 0.9;
      margin-bottom: 30px;
    }

    .blog-hero-stats {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-top: 40px;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 32px;
      font-weight: 800;
      color: #ff7a00;
      display: block;
    }

    .stat-label {
      font-size: 14px;
      opacity: 0.8;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .blog-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 20px;
      position: relative;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title {
      font-size: 36px;
      font-weight: 800;
      color: #022c3b;
      margin-bottom: 15px;
      position: relative;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #ff7a00, #ff9533);
      border-radius: 2px;
    }

    .section-subtitle {
      font-size: 18px;
      color: #4b5563;
      max-width: 600px;
      margin: 0 auto;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
      margin-top: 40px;
    }

    .blog-card {
      background: #ffffff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 44, 59, 0.08);
      transition: all 0.4s ease;
      position: relative;
      border: 1px solid rgba(255, 122, 0, 0.1);
    }

    .blog-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #ff7a00, #ff9533);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 44, 59, 0.15);
    }

    .blog-card:hover::before {
      transform: scaleX(1);
    }

    .blog-image-container {
      position: relative;
      overflow: hidden;
      height: 220px;
    }

    .blog-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .blog-card:hover img {
      transform: scale(1.1);
    }

    .blog-category {
      position: absolute;
      top: 15px;
      left: 15px;
      background: rgba(2, 44, 59, 0.9);
      color: white;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .blog-card-content {
      padding: 30px;
    }

    .blog-card-content h3 {
      font-size: 22px;
      font-weight: 700;
      color: #022c3b;
      margin-bottom: 15px;
      line-height: 1.4;
      transition: color 0.3s ease;
    }

    .blog-card:hover .blog-card-content h3 {
      color: #ff7a00;
    }

    .blog-card-content p {
      font-size: 15px;
      color: #6b7280;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .blog-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      font-size: 13px;
      color: #9ca3af;
    }

    .blog-date {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .blog-read-time {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .blog-card-content a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: #ff7a00;
      font-weight: 600;
      font-size: 14px;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .blog-card-content a:hover {
      color: #022c3b;
      transform: translateX(5px);
    }

    .blog-card-content a::after {
      content: '→';
      font-size: 16px;
      transition: transform 0.3s ease;
    }

    .blog-card-content a:hover::after {
      transform: translateX(3px);
    }

    .load-more-section {
      text-align: center;
      margin-top: 60px;
    }

    .load-more-btn {
      background: linear-gradient(135deg, #022c3b, #034a5a);
      color: white;
      padding: 15px 40px;
      border: none;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .load-more-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(2, 44, 59, 0.3);
    }

    .newsletter-section {
      background: linear-gradient(135deg, #eaf8fb, #f0f9ff);
      padding: 60px 20px;
      margin-top: 80px;
      text-align: center;
    }

    .newsletter-content {
      max-width: 600px;
      margin: 0 auto;
    }

    .newsletter-title {
      font-size: 28px;
      font-weight: 800;
      color: #022c3b;
      margin-bottom: 15px;
    }

    .newsletter-subtitle {
      font-size: 16px;
      color: #6b7280;
      margin-bottom: 30px;
    }

    .newsletter-form {
      display: flex;
      gap: 15px;
      max-width: 400px;
      margin: 0 auto;
    }

    .newsletter-input {
      flex: 1;
      padding: 15px 20px;
      border: 2px solid #e5e7eb;
      border-radius: 50px;
      font-size: 16px;
      outline: none;
      transition: border-color 0.3s ease;
    }

    .newsletter-input:focus {
      border-color: #ff7a00;
    }

    .newsletter-btn {
      background: #ff7a00;
      color: white;
      padding: 15px 30px;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .newsletter-btn:hover {
      background: #e66900;
      transform: translateY(-2px);
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0px) rotate(0deg);
      }
      50% {
        transform: translateY(-20px) rotate(180deg);
      }
    }

    @media (max-width: 768px) {
      .blog-hero h1 {
        font-size: 36px;
      }

      .blog-hero-stats {
        flex-direction: column;
        gap: 20px;
      }

      .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .blog-section {
        padding: 60px 15px;
      }

      .newsletter-form {
        flex-direction: column;
      }

      .newsletter-input,
      .newsletter-btn {
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      .blog-hero {
        padding: 60px 15px 40px;
      }

      .blog-card-content {
        padding: 20px;
      }

      .section-title {
        font-size: 28px;
      }
    }