    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #ffffff;
      color: #2d3436;
      overflow-x: hidden;
      line-height: 1.7;
      box-sizing: border-box;
    }

    /* Smooth Scroll */
    html {
      scroll-behavior: smooth;
    }

    /* Navigation */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      padding: 1.5rem 7%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      padding: 1rem 7%;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 800;
      background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      cursor: pointer;
      font-family: 'Playfair Display', serif;
      letter-spacing: -1px;
    }

    .nav-links {
      display: flex;
      gap: 3rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: #2d3436;
      font-weight: 500;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      position: relative;
      cursor: pointer;
      letter-spacing: 0.3px;
    }

    .nav-links a:hover {
      color: #6366f1;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .auth-btn {
      background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
      color: white;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    }

    .auth-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
    }

    /* Hero Section */
    .hero {
      min-height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10rem 7% 5rem;
      background: linear-gradient(135deg, #f5f3ff 0%, #faf5ff 50%, #fef3f2 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 80%;
      height: 150%;
      background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      z-index: 0;
      animation: pulse 8s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.1); opacity: 0.8; }
    }

    /* Animated Background Shapes */
    .hero-bg-shape {
      position: absolute;
      border-radius: 50%;
      opacity: 0.1;
      animation: floatShape 20s ease-in-out infinite;
    }

    @keyframes floatShape {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      25% { transform: translate(30px, -30px) rotate(90deg); }
      50% { transform: translate(-20px, 20px) rotate(180deg); }
      75% { transform: translate(40px, 10px) rotate(270deg); }
    }

    .shape-1 {
      width: 300px;
      height: 300px;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      top: 10%;
      left: 5%;
      animation-delay: 0s;
      animation-duration: 25s;
    }

    .shape-2 {
      width: 200px;
      height: 200px;
      background: linear-gradient(135deg, #8b5cf6, #d946ef);
      bottom: 20%;
      right: 10%;
      animation-delay: 3s;
      animation-duration: 20s;
    }

    .shape-3 {
      width: 150px;
      height: 150px;
      background: linear-gradient(135deg, #d946ef, #f97316);
      top: 60%;
      left: 15%;
      animation-delay: 6s;
      animation-duration: 18s;
    }

    .hero-content {
      flex: 1;
      max-width: 600px;
      z-index: 10;
      animation: fadeInLeft 1s ease;
    }

    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(0.9);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .hero-label {
      display: inline-block;
      background: rgba(99, 102, 241, 0.1);
      color: #6366f1;
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      letter-spacing: 0.5px;
      animation: scaleIn 0.6s ease 0.2s both;
    }

    .hero h1 {
      font-size: 4.5rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      color: #1a1a2e;
      font-family: 'Playfair Display', serif;
      letter-spacing: -2px;
      animation: slideUp 0.8s ease 0.4s both;
    }

    .hero h1 .gradient-text {
      background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero p {
      font-size: 1.2rem;
      color: #636e72;
      margin-bottom: 2.5rem;
      line-height: 1.8;
      font-weight: 400;
      animation: slideUp 0.8s ease 0.6s both;
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      animation: slideUp 0.8s ease 0.8s both;
    }

    .btn-primary, .btn-secondary {
      padding: 1.1rem 2.5rem;
      border-radius: 50px;
      border: none;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn-primary {
      background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
      color: white;
      box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
    }

    .btn-secondary {
      background: white;
      color: #6366f1;
      border: 2px solid #6366f1;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .btn-secondary:hover {
      background: #6366f1;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    }

    .hero-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 10;
      animation: fadeInRight 1s ease;
    }

    .hero-image-wrapper {
      position: relative;
      width: 100%;
      max-width: 550px;
    }

    .hero-image-main {
      width: 100%;
      height: 600px;
      border-radius: 30px;
      object-fit: cover;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease;
    }

    .hero-image-main:hover {
      transform: scale(1.02);
    }

    .floating-card {
      position: absolute;
      background: white;
      padding: 1.5rem;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }

    .floating-card-1 {
      top: 10%;
      left: -10%;
      animation-delay: 0s;
    }

    .floating-card-2 {
      bottom: 15%;
      right: -10%;
      animation-delay: 1s;
    }

    .floating-card h4 {
      font-size: 0.85rem;
      color: #636e72;
      margin-bottom: 0.5rem;
    }

    .floating-card p {
      font-size: 1.8rem;
      font-weight: 700;
      color: #6366f1;
    }

    /* Trusted By Section */
    .trusted-by {
      padding: 3rem 7%;
      background: white;
      text-align: center;
    }

    .trusted-by p {
      font-size: 0.9rem;
      color: #95a5a6;
      margin-bottom: 2rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 600;
    }

    .trusted-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 4rem;
      flex-wrap: wrap;
      opacity: 0.6;
    }

    .trusted-logos span {
      font-size: 1.8rem;
      font-weight: 700;
      color: #2d3436;
    }

    /* Features Section */
    .features {
      padding: 8rem 7%;
      background: white;
    }

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 5rem;
    }

    .section-label {
      display: inline-block;
      background: rgba(99, 102, 241, 0.1);
      color: #6366f1;
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 1rem;
      letter-spacing: 0.5px;
    }

    .section-title {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      color: #1a1a2e;
      font-family: 'Playfair Display', serif;
      line-height: 1.2;
      letter-spacing: -1.5px;
    }

    .section-subtitle {
      font-size: 1.2rem;
      color: #636e72;
      line-height: 1.8;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
      margin-top: 4rem;
    }

    .feature-card {
      background: linear-gradient(135deg, #f8f9ff 0%, #faf5ff 100%);
      padding: 3rem;
      border-radius: 25px;
      transition: all 0.4s ease;
      border: 1px solid rgba(99, 102, 241, 0.1);
      cursor: pointer;
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
      background: white;
    }

    .feature-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin-bottom: 2rem;
      box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    }

    .feature-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: #1a1a2e;
      font-weight: 700;
    }

    .feature-card p {
      color: #636e72;
      line-height: 1.8;
      font-size: 1rem;
    }

    /* Visual Guides Section */
    .visual-guides {
      padding: 8rem 7%;
      background: linear-gradient(135deg, #f5f3ff 0%, #faf5ff 100%);
    }

    .guides-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
      margin-top: 4rem;
    }

    .guide-card {
      background: white;
      border-radius: 25px;
      overflow: hidden;
      transition: all 0.4s ease;
      cursor: pointer;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .guide-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .guide-image {
      width: 100%;
      height: 280px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .guide-card:hover .guide-image {
      transform: scale(1.05);
    }

    .guide-content {
      padding: 2rem;
    }

    .guide-category {
      display: inline-block;
      background: rgba(99, 102, 241, 0.1);
      color: #6366f1;
      padding: 0.4rem 1rem;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 600;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .guide-content h3 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
      color: #1a1a2e;
      font-weight: 700;
      line-height: 1.4;
    }

    .guide-content p {
      color: #636e72;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      font-size: 0.95rem;
    }

    .guide-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: #6366f1;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .guide-btn:hover {
      gap: 1rem;
    }

    /* Learning Paths Section */
    .learning-paths {
      padding: 8rem 7%;
      background: white;
    }

    .paths-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
      margin-top: 4rem;
    }

    .path-card {
      background: linear-gradient(135deg, #1a1a2e 0%, #2d3436 100%);
      padding: 3.5rem;
      border-radius: 30px;
      color: white;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.4s ease;
    }

    .path-card::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
      transition: all 0.5s ease;
    }

    .path-card:hover::before {
      transform: scale(1.2);
    }

    .path-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    }

    .path-icon {
      font-size: 3.5rem;
      margin-bottom: 2rem;
      display: inline-block;
    }

    .path-card h3 {
      font-size: 2rem;
      margin-bottom: 1rem;
      font-weight: 700;
      position: relative;
      z-index: 1;
    }

    .path-card p {
      color: #b2bec3;
      line-height: 1.8;
      margin-bottom: 2rem;
      font-size: 1.05rem;
      position: relative;
      z-index: 1;
    }

    .path-stats {
      display: flex;
      gap: 2rem;
      margin-bottom: 2rem;
      position: relative;
      z-index: 1;
    }

    .path-stat {
      display: flex;
      flex-direction: column;
    }

    .path-stat-number {
      font-size: 1.8rem;
      font-weight: 700;
      color: #6366f1;
    }

    .path-stat-label {
      font-size: 0.85rem;
      color: #b2bec3;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .path-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: white;
      color: #1a1a2e;
      padding: 1rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
    }

    .path-btn:hover {
      background: #6366f1;
      color: white;
      gap: 1rem;
    }

    /* Testimonials Section */
    .testimonials {
      padding: 8rem 7%;
      background: linear-gradient(135deg, #f5f3ff 0%, #faf5ff 100%);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
      margin-top: 4rem;
    }

    .testimonial-card {
      background: white;
      padding: 3rem;
      border-radius: 25px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    }

    .testimonial-rating {
      color: #ffd700;
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
    }

    .testimonial-text {
      font-size: 1.05rem;
      color: #2d3436;
      line-height: 1.8;
      margin-bottom: 2rem;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .author-image {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
    }

    .author-info h4 {
      font-size: 1rem;
      font-weight: 600;
      color: #1a1a2e;
      margin-bottom: 0.2rem;
    }

    .author-info p {
      font-size: 0.85rem;
      color: #636e72;
    }

    /* Blog Section */
    .blog {
      padding: 8rem 7%;
      background: white;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
      margin-top: 4rem;
    }

    .blog-card {
      background: white;
      border-radius: 25px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      cursor: pointer;
    }

    .blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .blog-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .blog-card:hover .blog-image {
      transform: scale(1.05);
    }

    .blog-content {
      padding: 2rem;
    }

    .blog-meta {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-bottom: 1rem;
      font-size: 0.85rem;
      color: #636e72;
    }

    .blog-meta span {
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .blog-content h3 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
      color: #1a1a2e;
      font-weight: 700;
      line-height: 1.4;
    }

    .blog-content p {
      color: #636e72;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      font-size: 0.95rem;
    }

    .blog-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: #6366f1;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .blog-btn:hover {
      gap: 1rem;
    }

    /* CTA Section */
    .cta {
      padding: 8rem 7%;
      background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      animation: rotate 20s linear infinite;
    }

    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .cta-content {
      position: relative;
      z-index: 10;
      max-width: 800px;
      margin: 0 auto;
    }

    .cta h2 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      font-family: 'Playfair Display', serif;
      line-height: 1.2;
      letter-spacing: -1.5px;
    }

    .cta p {
      font-size: 1.3rem;
      margin-bottom: 3rem;
      opacity: 0.95;
      line-height: 1.7;
    }

    .cta-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-cta {
      padding: 1.2rem 3rem;
      border-radius: 50px;
      border: 2px solid white;
      background: white;
      color: #6366f1;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .btn-cta:hover {
      background: transparent;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    }

    .btn-cta-outline {
      background: transparent;
      color: white;
    }

    .btn-cta-outline:hover {
      background: white;
      color: #6366f1;
    }

    /* Footer */
    .footer {
      background: #1a1a2e;
      color: white;
      padding: 5rem 7% 2rem;
    }

    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
      gap: 4rem;
      margin-bottom: 4rem;
    }

    .footer-section h3 {
      margin-bottom: 1.5rem;
      font-size: 1.2rem;
      font-weight: 700;
    }

    .footer-section p {
      color: #b2bec3;
      line-height: 1.8;
      margin-bottom: 1.5rem;
      font-size: 0.95rem;
    }

    .footer-section a {
      display: block;
      color: #b2bec3;
      text-decoration: none;
      margin-bottom: 0.8rem;
      transition: all 0.3s ease;
      font-size: 0.95rem;
      cursor: pointer;
    }

    .footer-section a:hover {
      color: #6366f1;
      padding-left: 5px;
    }

    .newsletter-form {
      display: flex;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .newsletter-input {
      flex: 1;
      padding: 0.9rem 1.2rem;
      border: 2px solid #2d3436;
      border-radius: 50px;
      background: #2d3436;
      color: white;
      font-size: 0.9rem;
      transition: all 0.3s ease;
    }

    .newsletter-input:focus {
      outline: none;
      border-color: #6366f1;
      background: #1a1a2e;
    }

    .newsletter-btn {
      padding: 0.9rem 1.8rem;
      border-radius: 50px;
      border: none;
      background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
      color: white;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.9rem;
    }

    .newsletter-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid #2d3436;
      color: #b2bec3;
      font-size: 0.9rem;
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      background: #2d3436;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .social-icon:hover {
      background: #6366f1;
      transform: translateY(-3px);
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(10px);
      padding: 2rem;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: white;
      padding: 3rem;
      border-radius: 30px;
      max-width: 500px;
      width: 100%;
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
      animation: modalSlideUp 0.4s ease;
      max-height: 90%;
      overflow-y: auto;
    }

    @keyframes modalSlideUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
    }

    .modal-header h2 {
      font-size: 2rem;
      color: #1a1a2e;
      font-weight: 800;
    }

    .close-modal {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background: #f5f5f5;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1.5rem;
      color: #636e72;
    }

    .close-modal:hover {
      background: #6366f1;
      color: white;
      transform: rotate(90deg);
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.7rem;
      font-weight: 600;
      color: #1a1a2e;
      font-size: 0.95rem;
    }

    .form-group input {
      width: 100%;
      padding: 1rem 1.3rem;
      border: 2px solid #e0e0e0;
      border-radius: 15px;
      font-size: 1rem;
      transition: all 0.3s ease;
      font-family: 'Poppins', sans-serif;
    }

    .form-group input:focus {
      outline: none;
      border-color: #6366f1;
      box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    }

    .submit-btn {
      width: 100%;
      padding: 1.1rem;
      background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
      color: white;
      border: none;
      border-radius: 15px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 1rem;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    }

    .form-switch {
      text-align: center;
      margin-top: 1.5rem;
      color: #636e72;
      font-size: 0.95rem;
    }

    .form-switch a {
      color: #6366f1;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
    }

    .form-switch a:hover {
      text-decoration: underline;
    }

    /* Content Pages */
    .content-page {
      padding: 10rem 7% 5rem;
      max-width: 1000px;
      margin: 0 auto;
    }

    .content-page h1 {
      font-size: 3.5rem;
      margin-bottom: 2rem;
      color: #1a1a2e;
      font-family: 'Playfair Display', serif;
      font-weight: 800;
      line-height: 1.2;
    }

    .content-page h2 {
      font-size: 2.2rem;
      margin-top: 3rem;
      margin-bottom: 1.5rem;
      color: #1a1a2e;
      font-weight: 700;
    }

    .content-page h3 {
      font-size: 1.6rem;
      margin-top: 2rem;
      margin-bottom: 1rem;
      color: #2d3436;
      font-weight: 600;
    }

    .content-page p {
      font-size: 1.1rem;
      line-height: 1.9;
      color: #636e72;
      margin-bottom: 1.5rem;
    }

    .content-page ul, .content-page ol {
      margin-left: 2rem;
      margin-bottom: 2rem;
    }

    .content-page li {
      margin-bottom: 1rem;
      color: #636e72;
      line-height: 1.8;
      font-size: 1.05rem;
    }

    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      padding: 0.9rem 2rem;
      background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
      color: white;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      margin-bottom: 3rem;
      transition: all 0.3s ease;
      box-shadow: 0 5px 20px rgba(99, 102, 241, 0.3);
    }

    .back-btn:hover {
      transform: translateX(-5px);
      box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
    }

    .content-image {
      width: 100%;
      height: 500px;
      object-fit: cover;
      border-radius: 25px;
      margin: 3rem 0;
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    }

    /* User Menu */
    .user-menu {
      position: relative;
    }

    .user-avatar {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1.1rem;
    }

    .user-avatar:hover {
      transform: scale(1.05);
      box-shadow: 0 5px 20px rgba(99, 102, 241, 0.3);
    }

    .dropdown {
      position: absolute;
      top: 60px;
      right: 0;
      background: white;
      border-radius: 15px;
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
      min-width: 180px;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
    }

    .dropdown.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown a {
      display: block;
      padding: 1rem 1.5rem;
      color: #2d3436;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 0.95rem;
      font-weight: 500;
    }

    .dropdown a:hover {
      background: #f5f3ff;
      color: #6366f1;
      padding-left: 2rem;
    }

    .hidden {
      display: none;
    }

    /* Toast Notification */
    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(100px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .hero {
        flex-direction: column;
        text-align: center;
        padding: 9rem 5% 4rem;
      }

      .hero-content {
        max-width: 100%;
      }

      .hero h1 {
        font-size: 3.5rem;
      }

      .hero-buttons {
        justify-content: center;
      }

      .hero-image {
        margin-top: 4rem;
      }

      .features-grid,
      .guides-grid,
      .blog-grid,
      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .paths-grid {
        grid-template-columns: 1fr;
      }

      .footer-content {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      .hero p {
        font-size: 1.05rem;
      }

      .section-title {
        font-size: 2.5rem;
      }

      .features-grid,
      .guides-grid,
      .blog-grid,
      .testimonials-grid,
      .paths-grid {
        grid-template-columns: 1fr;
      }

      .footer-content {
        grid-template-columns: 1fr;
      }

      .cta h2 {
        font-size: 2.5rem;
      }

      .cta p {
        font-size: 1.1rem;
      }
    }
    @keyframes marqueeMove {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    .animate-marquee {
        animation: marqueeMove 22s linear infinite;
        width: max-content;
    }