                * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }

        body {
          font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
          line-height: 1.6;
          color: #FFF5FA;
          background-color: #FFF5FA;
        }

                :root {
          --primary-pink: #ff99cc;
          --secondary-lilac: #d9b3ff;
          --accent-purple: #8c52ff;
          --light-bg: #fff5fa;
          --dark-text: #2d1a4d;
          --gray: #6b5b95;
        }

        .header {
          background: linear-gradient(135deg, var(--primary-pink), var(--secondary-lilac));
          padding: 1rem 0;
          position: sticky;
          border-radius: 180px;
          top: 0;
          margin-left: 3cm;
          margin-right: 3cm;
          margin-top: 1rem;
          z-index: 1000;
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .header-container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 1.5rem;
          color: #FFF5FA;
        }

        .header-inner {
          display: flex;
          align-items: center;
          justify-content: space-between;
        }

        .logo h6 a {
          font-size: 1.5rem;
          color: #fff;
          text-decoration: none;
          font-weight: 700;
          transition: color 0.3s;
        }

        .logo h6 a:hover {
          color: var(--accent-purple);
        }

        .nav-menu {
          display: flex;
        }

        .nav-menu ul {
          display: flex;
          list-style: none;
        }

        .nav-menu li {
          margin-left: 2rem;
        }

        .nav-menu a {
          color: #fff;
          text-decoration: none;
          font-size: 1rem;
          font-weight: 500;
          padding: 0.5rem 1rem;
          border-radius: 20px;
          transition: background 0.3s, color 0.3s;
        }

        .nav-menu a:hover {
          background: var(--accent-purple);
          color: #fff;
        }

        .contact-button .button {
          background: var(--accent-purple);
          color: #fff;
          padding: 0.5rem 1.5rem;
          border-radius: 25px;
          text-decoration: none;
          font-weight: 600;
          transition: background 0.3s;
        }

        .contact-button .button:hover {
          background: var(--primary-pink);
        }

        .nav-toggle, .nav-close {
          display: none;
        }

                .blog-header {
          background: var(--light-bg);
          padding: 4rem 0 2rem;
          text-align: center;
        }

        .blog-header-container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 1.5rem;
        }

        .blog-header h1 {
          font-size: 3rem;
          color: var(--dark-text);
          margin-bottom: 1rem;
        }

        .blog-header p {
          font-size: 1.2rem;
          color: var(--gray);
          max-width: 600px;
          margin: 0 auto;
        }

                .blog-post {
          padding: 4rem 0;
          background: #fff;
        }

        .blog-post-container {
          max-width: 800px;
          margin: 0 auto;
          padding: 0 1.5rem;
        }

        .post-article {
          background: var(--light-bg);
          padding: 3rem;
          border-radius: 20px;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .post-article h1 {
          font-size: 2.5rem;
          color: var(--dark-text);
          margin-bottom: 1.5rem;
          line-height: 1.3;
        }

        .post-meta {
          color: var(--gray);
          font-size: 1rem;
          margin-bottom: 2rem;
          padding-bottom: 1.5rem;
          border-bottom: 2px solid var(--secondary-lilac);
          display: flex;
          align-items: center;
          gap: 1rem;
        }

        .post-meta time {
          font-weight: 600;
        }

        .post-meta .author {
          color: var(--accent-purple);
          text-decoration: none;
          font-weight: 600;
          transition: color 0.3s;
        }

        .post-meta .author:hover {
          color: var(--primary-pink);
        }

        .post-content {
          color: var(--gray);
          font-size: 1.1rem;
          line-height: 1.8;
        }

        .post-content p {
          margin-bottom: 1.5rem;
        }

        .post-content p:last-child {
          margin-bottom: 0;
        }

                .back-button {
          margin-top: 2rem;
          text-align: center;
        }

        .back-button .button {
          background: var(--primary-pink);
          color: #fff;
          padding: 0.75rem 2rem;
          border-radius: 25px;
          text-decoration: none;
          font-weight: 600;
          transition: background 0.3s;
          display: inline-block;
        }

        .back-button .button:hover {
          background: var(--accent-purple);
        }

                .footer {
          background: var(--dark-text);
          padding: 2rem 0;
          color: #fff;
          text-align: center;
        }

        .footer-container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 1.5rem;
        }

        .footer-logo h6 a {
          font-size: 1.5rem;
          color: #fff;
          text-decoration: none;
          font-weight: 700;
        }

                @media (max-width: 768px) {
          .header {
            margin-left: 1rem;
            margin-right: 1rem;
            border-radius: 80px;
          }

          .header-inner {
            flex-wrap: wrap;
            justify-content: center;
          }

          .nav {
            order: 3;
            width: 100%;
          }

          .nav-toggle {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
          }

          .nav-toggle svg {
            fill: #fff;
            width: 24px;
            height: 24px;
          }

          .nav-menu {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--dark-text);
            padding: 1rem;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            z-index: 999;
          }

          .nav-menu.active {
            display: flex;
          }

          .nav-menu ul {
            flex-direction: column;
            align-items: center;
          }

          .nav-menu li {
            margin: 0.5rem 0;
          }

          .blog-header h1 {
            font-size: 2.2rem;
          }

          .post-article {
            padding: 2rem;
          }

          .post-article h1 {
            font-size: 2rem;
          }
        }

        @media (max-width: 480px) {
          .blog-header h1 {
            font-size: 1.8rem;
          }

          .post-article {
            padding: 1.5rem;
          }

          .post-article h1 {
            font-size: 1.6rem;
          }

          .post-meta {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
}
}
