      /* Global Styles */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      :root {
        /* Primary Brand Colors - Orange & Pink Only */
        --primary-orange: #ff6a00;
        --primary-pink: #ee0979;
        --light: #f8f9fa;
        --dark: #212529;
        --gray: #6c757d;
        --white: #ffffff;
      }

      body {
        font-family: "Segoe UI", Arial, sans-serif;
        background: #f4f7fb;
        color: #333;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        line-height: 1.6;
      }

      /* Header */
      header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 30px;
        background: #fff;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
      }

      header img {
        height: 55px;
      }

      nav ul {
        list-style: none;
        display: flex;
        gap: 20px;
      }

      nav ul li a {
        text-decoration: none;
        font-weight: bold;
        color: #444;
        position: relative;
        transition: color 0.3s ease, transform 0.3s ease;
        padding: 5px 10px;
      }

      nav ul li a:hover {
        color: var(--primary-orange);
        transform: translateY(-2px);
      }

      nav ul li a.active {
        color: var(--primary-orange);
      }

      nav ul li a.active::after {
        width: 100%;
      }

      nav ul li a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background: var(--primary-orange);
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        transition: width 0.3s ease;
      }

      nav ul li a:hover::after {
        width: 100%;
      }

      /* Mobile Menu Toggle */
      .menu-toggle {
        display: none;
        font-size: 24px;
        background: none;
        border: none;
        color: #444;
        cursor: pointer;
        z-index: 1001;
        transition: color 0.3s ease, transform 0.3s ease;
      }

      .menu-toggle:hover {
        color: var(--primary-orange);
        transform: rotate(90deg);
      }

      @media (max-width: 768px) {
        .menu-toggle {
          display: block;
        }

        nav {
          display: none;
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          background: #fff;
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
          transform: translateX(-100%);
          transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
          opacity: 0;
        }

        nav.active {
          display: block;
          transform: translateX(0);
          opacity: 1;
        }

        nav ul {
          flex-direction: column;
          padding: 20px;
          gap: 15px;
        }

        nav ul li {
          text-align: center;
          opacity: 0;
          transform: translateY(20px);
          transition: opacity 0.3s ease, transform 0.3s ease;
        }

        nav.active ul li {
          opacity: 1;
          transform: translateY(0);
        }

        nav ul li:nth-child(1) { transition-delay: 0.1s; }
        nav ul li:nth-child(2) { transition-delay: 0.2s; }
        nav ul li:nth-child(3) { transition-delay: 0.3s; }
        nav ul li:nth-child(4) { transition-delay: 0.4s; }
        nav ul li:nth-child(5) { transition-delay: 0.5s; }
        nav ul li:nth-child(6) { transition-delay: 0.6s; }
      }

      /* Blog Page Specific Styles */
      .blog-header {
        background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
        color: var(--white);
        text-align: center;
        padding: 70px 20px;
        position: relative;
        overflow: hidden;
      }
      
      .blog-header h1 {
        font-size: 2.8rem;
        margin-bottom: 15px;
        animation: fadeInDown 1s ease;
        position: relative;
        z-index: 2;
      }
      
      .blog-header p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto 25px;
        animation: fadeInUp 1.2s ease;
        position: relative;
        z-index: 2;
      }
      
      .blog-header::before {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        top: -80px;
        right: -80px;
      }
      
      .blog-header::after {
        content: '';
        position: absolute;
        width: 150px;
        height: 150px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        bottom: -60px;
        left: -60px;
      }
      
      @keyframes fadeInDown {
        from {
          opacity: 0;
          transform: translateY(-20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      
      /* Blog Container */
      .blog-container {
        display: flex;
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
        gap: 30px;
      }
      
      .blog-main {
        flex: 3;
      }
      
      .blog-sidebar {
        flex: 1;
      }
      
      .blog-posts {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }
      
      .blog-card {
        background: white;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
      }
      
      .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
        color: #fff;
      }
      
      .blog-card:hover p {
        color: rgba(255, 255, 255, 0.9);
      }
      
      .blog-card:hover h3 {
        color: white;
      }
      
      .blog-card-image {
        height: 200px;
        overflow: hidden;
        position: relative;
      }
      
      .blog-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }
      
      .blog-card:hover .blog-card-image img {
        transform: scale(1.05);
      }
      
      .blog-card-content {
        padding: 25px;
        display: flex;
        flex-direction: column;
        flex: 1;
      }
      
      .blog-category {
        display: inline-block;
        background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 15px;
        align-self: flex-start;
      }
      
      .blog-card h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
        line-height: 1.4;
        color: var(--dark);
      }
      
      .blog-card p {
        color: var(--gray);
        margin-bottom: 20px;
        line-height: 1.6;
        flex-grow: 1;
      }
      
      .blog-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
        padding-top: 15px;
        border-top: 1px solid #eee;
        font-size: 0.9rem;
        color: #888;
      }
      
      .blog-card:hover .blog-meta {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.8);
      }
      
      .read-more {
        display: inline-flex;
        align-items: center;
        color: var(--primary-orange);
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
      }
      
      .blog-card:hover .read-more {
        color: white;
      }
      
      .read-more:hover {
        transform: translateX(5px);
      }
      
      .read-more i {
        margin-left: 5px;
        transition: transform 0.3s ease;
      }
      
      .read-more:hover i {
        transform: translateX(5px);
      }
      
      .sidebar-widget {
        background: white;
        border-radius: 14px;
        padding: 25px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }
      
      .sidebar-widget h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #f0f0f0;
        color: var(--dark);
        position: relative;
      }
      
      .sidebar-widget h3::after {
        content: '';
        position: absolute;
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-orange), var(--primary-pink));
        bottom: -2px;
        left: 0;
      }
      
      .categories-list {
        list-style: none;
      }
      
      .categories-list li {
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px dashed #eee;
      }
      
      .categories-list li:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
      }
      
      .categories-list a {
        display: flex;
        justify-content: space-between;
        color: var(--dark);
        text-decoration: none;
        transition: all 0.3s ease;
      }
      
      .categories-list a:hover {
        color: var(--primary-orange);
        transform: translateX(5px);
      }
      
      .categories-list span {
        background: #f8f9fa;
        padding: 3px 8px;
        border-radius: 10px;
        font-size: 0.8rem;
        transition: all 0.3s ease;
      }
      
      .categories-list a:hover span {
        background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
        color: white;
      }
      
      .recent-posts-list {
        list-style: none;
      }
      
      .recent-post {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px dashed #eee;
      }
      
      .recent-post:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
      }
      
      .recent-post img {
        width: 70px;
        height: 70px;
        border-radius: 8px;
        object-fit: cover;
        margin-right: 15px;
      }
      
      .recent-post-content h4 {
        font-size: 0.95rem;
        margin-bottom: 5px;
        line-height: 1.4;
      }
      
      .recent-post-content a {
        color: var(--dark);
        text-decoration: none;
        transition: color 0.3s ease;
      }
      
      .recent-post-content a:hover {
        color: var(--primary-orange);
      }
      
      .recent-post-content span {
        font-size: 0.8rem;
        color: #888;
      }
      
      .tags-container {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }
      
      .tag {
        display: inline-block;
        background: #f8f9fa;
        color: var(--dark);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        text-decoration: none;
        transition: all 0.3s ease;
      }
      
      .tag:hover {
        background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
        color: white;
        transform: translateY(-2px);
      }
      
      .newsletter-widget {
        background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
        color: white;
      }
      
      .newsletter-widget h3 {
        color: white;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
      }
      
      .newsletter-widget h3::after {
        background: linear-gradient(90deg, white, rgba(255, 255, 255, 0.7));
      }
      
      .newsletter-widget p {
        margin-bottom: 20px;
        opacity: 0.9;
      }
      
      .newsletter-widget input {
        width: 100%;
        padding: 12px 15px;
        border-radius: 8px;
        border: none;
        margin-bottom: 15px;
        font-size: 0.95rem;
        background: rgba(255, 255, 255, 0.9);
        color: var(--dark);
      }
      
      .newsletter-widget input:focus {
        outline: none;
        background: white;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
      }
      
      .newsletter-widget input::placeholder {
        color: rgba(0, 0, 0, 0.5);
      }
      
      .newsletter-widget button {
        width: 100%;
        padding: 12px;
        background: white;
        color: var(--primary-orange);
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
      }
      
      .newsletter-widget button:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.9);
      }
      
      /* SEO Description Section - Before Footer */
      .seo-description {
        max-width: 1200px;
        margin: 60px auto 40px;
        padding: 40px;
        background: white;
        border-radius: 14px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        border: 1px solid #eaeaea;
      }
      
      .seo-description h2 {
        color: var(--dark);
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 3px solid var(--primary-orange);
        font-size: 1.8rem;
        text-align: center;
      }
      
      .seo-description h3 {
        color: var(--primary-pink);
        margin: 30px 0 18px;
        font-size: 1.5rem;
        padding-left: 10px;
        border-left: 4px solid var(--primary-orange);
      }
      
      .seo-description p {
        margin-bottom: 18px;
        text-align: justify;
        color: var(--dark);
        font-size: 1.05rem;
        line-height: 1.7;
      }
      
      .seo-description ul {
        margin: 20px 0 25px 35px;
      }
      
      .seo-description li {
        margin-bottom: 12px;
        position: relative;
        font-size: 1.05rem;
        line-height: 1.6;
      }
      
      .seo-description li:before {
        content: "✓";
        color: var(--primary-orange);
        font-weight: bold;
        position: absolute;
        left: -25px;
        font-size: 1.2rem;
      }
      
      .keyword-highlight {
        background: linear-gradient(135deg, rgba(255, 106, 0, 0.1), rgba(238, 9, 121, 0.1));
        padding: 3px 8px;
        border-radius: 5px;
        font-weight: 600;
        color: var(--primary-orange);
      }
      
      .seo-description .conclusion {
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        padding: 25px;
        border-radius: 12px;
        margin-top: 35px;
        border-left: 5px solid var(--primary-orange);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
      }
      
      .seo-description .conclusion h3 {
        border-left: none;
        padding-left: 0;
        margin-top: 0;
      }
      
      /* Responsive Styles for Blog */
      @media (max-width: 1024px) {
        .blog-container {
          flex-direction: column;
        }
        
        .blog-posts {
          grid-template-columns: repeat(2, 1fr);
        }
        
        .seo-description {
          margin: 40px 20px 30px;
          padding: 30px;
        }
      }
      
      @media (max-width: 768px) {
        .blog-header h1 {
          font-size: 2.2rem;
        }
        
        .blog-header p {
          font-size: 1rem;
        }
        
        .blog-posts {
          grid-template-columns: 1fr;
        }
        
        .seo-description h2 {
          font-size: 1.8rem;
        }
        
        .seo-description h3 {
          font-size: 1.3rem;
        }
        
        .seo-description p, .seo-description li {
          font-size: 1rem;
        }
      }
      
      @media (max-width: 480px) {
        .blog-header {
          padding: 50px 15px;
        }
        
        .blog-header h1 {
          font-size: 1.8rem;
        }
        
        .blog-container {
          padding: 0 15px;
        }
        
        .blog-card-content {
          padding: 20px;
        }
        
        .blog-meta {
          flex-direction: column;
          align-items: flex-start;
          gap: 10px;
        }
        
        .seo-description {
          padding: 20px;
          margin: 30px 15px 20px;
        }
        
        .seo-description h2 {
          font-size: 1.5rem;
        }
        
        .seo-description h3 {
          font-size: 1.2rem;
        }
      }

      /* UPDATED FOOTER STYLES - Same as AI Notes Generator */
      footer {
        background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
        color: var(--white);
        padding: 20px 15px;
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
        width: 100%;
        margin-top: auto;
      }

      footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ff6a00, #ee0979, #00c4cc);
        z-index: 1;
      }

      .footer-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
      }

      .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .footer-logo {
        margin-bottom: 15px;
        transition: transform 0.5s ease;
      }

      .footer-logo:hover {
        transform: translateY(-5px);
      }

      .footer-logo img {
        height: 50px;
        transition: transform 0.3s ease;
        border-radius: 8px;
        background: var(--white);
        padding: 5px;
      }

      .footer-logo img:hover {
        transform: scale(1.05);
      }

      .footer-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 15px;
        max-width: 100%;
        opacity: 0.9;
      }

      .footer-heading {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        padding-bottom: 8px;
        display: inline-block;
      }

      .footer-heading::after {
        content: '';
        position: absolute;
        width: 30px;
        height: 2px;
        background: linear-gradient(90deg, #ff6a00, #ee0979);
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
        transition: width 0.4s ease;
      }

      .footer-heading:hover::after {
        width: 50px;
      }

      .footer-tools ul,
      .footer-quick-links ul {
        list-style: none;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0;
        margin: 0;
      }

      .footer-tools ul li a,
      .footer-quick-links ul li a {
        color: var(--white);
        text-decoration: none;
        opacity: 0.9;
        transition: opacity 0.3s ease, color 0.3s ease;
      }

      .footer-tools ul li a:hover,
      .footer-quick-links ul li a:hover {
        opacity: 1;
        color: #ffcc00;
      }

      .footer-social {
        display: flex;
        gap: 12px;
        margin-top: 15px;
        justify-content: center;
        align-items: center;
      }

      .footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--white);
        font-size: 16px;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .footer-social a::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #ff6a00, #ee0979);
        border-radius: 50%;
        transform: scale(0);
        transition: transform 0.3s ease;
        z-index: -1;
      }

      .footer-social a:hover {
        transform: translateY(-3px);
        color: var(--white);
      }

      .footer-social a:hover::after {
        transform: scale(1);
      }

      .footer-social a i {
        transition: transform 0.3s ease;
      }

      .footer-social a:hover i {
        transform: scale(1.2);
      }

      .footer-contact {
        margin-top: 15px;
      }

      .footer-contact p {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
        opacity: 0.9;
        font-size: 0.9rem;
      }

      .footer-contact i {
        margin-right: 8px;
        color: #ffcc00;
        font-size: 16px;
      }

      .footer-bottom {
        text-align: center;
        margin-top: 20px;
        font-size: 0.85rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        grid-column: 1 / -1;
      }

      .footer-bottom p {
        margin-bottom: 12px;
        opacity: 0.9;
        width: 100%;
      }

      .footer-legal {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
      }

      .footer-legal a {
        color: var(--white);
        text-decoration: none;
        opacity: 0.8;
        transition: opacity 0.3s ease, color 0.3s ease;
        font-size: 0.85rem;
        position: relative;
        white-space: nowrap;
      }

      .footer-legal a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        background: #ffcc00;
        bottom: -2px;
        left: 0;
        transition: width 0.3s ease;
      }

      .footer-legal a:hover {
        opacity: 1;
        color: #ffcc00;
      }

      .footer-legal a:hover::after {
        width: 100%;
      }

      .footer-bubble {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        animation: float 8s infinite ease-in-out;
      }

      .footer-bubble:nth-child(1) {
        width: 60px;
        height: 60px;
        top: 20%;
        left: 5%;
        animation-delay: 0s;
      }

      .footer-bubble:nth-child(2) {
        width: 40px;
        height: 40px;
        top: 60%;
        left: 8%;
        animation-delay: 1s;
      }

      .footer-bubble:nth-child(3) {
        width: 50px;
        height: 50px;
        top: 30%;
        right: 5%;
        animation-delay: 2s;
      }

      .footer-bubble:nth-child(4) {
        width: 30px;
        height: 30px;
        top: 70%;
        right: 10%;
        animation-delay: 3s;
      }

      @keyframes float {
        0%, 100% {
          transform: translateY(0) rotate(0deg);
        }
        50% {
          transform: translateY(-15px) rotate(10deg);
        }
      }

      .footer-newsletter {
        margin-top: 15px;
        width: 100%;
      }

      .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
      }

      .newsletter-input {
        padding: 10px 15px;
        border: none;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.12);
        color: var(--white);
        font-size: 14px;
        transition: background 0.3s ease, box-shadow 0.3s ease;
        width: 100%;
        max-width: 250px;
      }

      .newsletter-input:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.18);
        box-shadow: 0 0 0 2px rgba(255, 204, 0, 0.5);
      }

      .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.7);
      }

      .newsletter-btn {
        padding: 10px 15px;
        border: none;
        border-radius: 6px;
        background: linear-gradient(135deg, #ff6a00, #ee0979);
        color: var(--white);
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        width: 100%;
        max-width: 250px;
      }

      .newsletter-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(255, 106, 0, 0.4);
      }

      @media (min-width: 769px) {
        .footer-container {
          grid-template-columns: repeat(4, 1fr);
        }

        .footer-bottom {
          grid-column: 1 / span 4;
        }
      }

      @media (max-width: 480px) {
        .footer-logo img {
          height: 40px;
        }

        .footer-heading {
          font-size: 1.1rem;
        }

        .footer-tools ul,
        .footer-quick-links ul {
          grid-template-columns: 1fr;
        }

        .footer-social a {
          width: 32px;
          height: 32px;
          font-size: 14px;
        }

        .footer-contact p {
          font-size: 0.8rem;
        }

        .footer-contact i {
          font-size: 14px;
        }

        .footer-legal a {
          font-size: 0.8rem;
        }

        .newsletter-input,
        .newsletter-btn {
          padding: 8px 12px;
          font-size: 12px;
          max-width: 200px;
        }
      }

      .brand-highlight {
        color: var(--primary-orange);
        font-weight: 700;
      }