    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: #fdfae5;
      color: #1c1c1c;
      padding-bottom: 90px;
      overflow-x: hidden;
    }

    .navbar {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      padding: 15px 20px;
      z-index: 10;
      display: flex;
      justify-content: flex-start;
    }

    .logo img {
      height: 35px;
      width: auto;
    }

    .hero {
      text-align: center;
      background-color: #fdfae5;
      background-image: url('./gibli_art.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding: 100px 15px 60px;
      position: relative;
      min-height: 85vh;
      display: flex;
      flex-direction: column;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: auto;
      padding: 0 15px;
      display: flex;
      flex-direction: column;
      gap: 30px;
      align-items: center;
      width: 100%;
    }

    .hero-text {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .hero h1 {
      font-size: clamp(2rem, 7vw, 3.5rem);
      font-weight: 800;
      line-height: 1.1;
      margin: 0;
      color: #2a3439;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
    }

    .hero h1 span {
      color: #8a6a3b;
      font-weight: 700;
      display: inline-block;
    }

    .hero h2 {
      font-size: clamp(1.5rem, 5vw, 2.4rem);
      font-weight: 600;
      margin: 0;
      color: #4a4a4a;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
    }

    .hero h2 strong {
      color: #b85c40;
      font-weight: 700;
    }

    .subtext {
      font-size: clamp(1rem, 3vw, 1.4rem);
      color: #555;
      margin: 12px 0 0;
      font-weight: 500;
    }

    .offer-card {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 16px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      width: 100%;
      max-width: 450px;
      margin: 0 auto;
      border: 1px solid rgba(0, 0, 0, 0.08);
      backdrop-filter: blur(4px);
    }

    .offer-header {
      padding: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(138, 106, 59, 0.12);
      border-bottom: 1px solid rgba(138, 106, 59, 0.1);
      flex-wrap: wrap;
      justify-content: center;
    }

    .offer-title {
      font-weight: 700;
      font-size: clamp(0.9rem, 2.5vw, 1.1rem);
      flex-grow: 1;
      text-align: center;
      color: #5a4a30;
      letter-spacing: 0.5px;
    }

    .offer-badge {
      font-size: 1.2rem;
      color: #8a6a3b;
    }

    .offer-details {
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .detail {
      display: flex;
      align-items: center;
      font-size: clamp(0.85rem, 2vw, 1rem);
      flex-wrap: wrap;
      gap: 8px;
    }

    .icon {
      margin-right: 8px;
      width: 24px;
      text-align: center;
      color: #8a6a3b;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .label {
      color: #555;
      min-width: 110px;
      text-align: left;
      font-weight: 500;
      flex-shrink: 0;
    }

    .highlight {
      font-weight: 600;
      margin-left: auto;
      padding: 4px 8px;
      border-radius: 6px;
    }

    .highlight.date {
      color: #7c6f50;
      background: rgba(124, 111, 80, 0.1);
    }

    .highlight.feature {
      color: #8a6a3b;
      background: rgba(138, 106, 59, 0.1);
    }

    .highlight.warning {
      color: #b85c40;
      background: rgba(184, 92, 64, 0.1);
    }

    .program-section {
      max-width: 1000px;
      margin: 40px auto;
      padding: 0 15px;
      text-align: center;
    }

    .section-title {
      font-size: clamp(1.5rem, 4vw, 2.2rem);
      font-weight: 700;
      color: #8a6a3b;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background: rgba(42, 52, 57, 0.2);
      margin: 15px auto 0;
      border-radius: 2px;
    }

    .daily-discipline {
      padding: 1.5rem 1rem;
      border-radius: 1.5rem;
      width: 100%;
      margin: 2rem auto;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .blue-box {
      background-color: #e8f3ff;
    }

    .peach-box {
      background-color: #fff1e5;
    }

    .purple-box {
      background-color: #f2ebff;
    }

    .daily-discipline .container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
    }

    .daily-discipline .left {
      width: 100%;
      max-width: 350px;
      display: flex;
      justify-content: center;
    }

    .daily-discipline .left img {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 1rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .daily-discipline .right {
      flex: 1;
      min-width: 280px;
      width: 100%;
    }

    .daily-discipline h2 {
      font-size: clamp(1.4rem, 4vw, 2rem);
      font-weight: 700;
      color: #000000c6;
      margin-bottom: 1.5rem;
    }

    .daily-discipline .card {
      display: flex;
      align-items: center;
      background-color: #fff;
      border-radius: 1rem;
      padding: 1rem 1.2rem;
      margin-bottom: 1rem;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.07);
      transition: transform 0.2s ease;
    }

    .daily-discipline .card:hover {
      transform: translateY(-3px);
    }

    .daily-discipline .icon {
      font-size: 1.5rem;
      margin-right: 0.8rem;
      flex-shrink: 0;
    }

    .daily-discipline .card p {
      margin: 0;
      font-size: clamp(0.9rem, 2.5vw, 1.05rem);
      font-weight: 500;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px;
    }

    .live-badge {
      background-color: red;
      color: white;
      font-size: 0.7rem;
      font-weight: bold;
      padding: 0.2rem 0.5rem;
      border-radius: 0.4rem;
    }

    .bonus {
      background-color: #ffcc00;
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 0.7rem;
    }

    .pricing-container {
      display: flex;
      justify-content: center;
      width: 100%;
      padding: 0 15px;
    }

    .pricing-card {
      background: linear-gradient(145deg, #ffffff 0%, #fefefe 100%);
      border: 2px solid rgba(138, 106, 59, 0.2);
      border-radius: 20px;
      padding: 30px 20px;
      position: relative;
      box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 5px 20px rgba(138, 106, 59, 0.05);
      overflow: hidden;
      backdrop-filter: blur(10px);
      display: flex;
      flex-direction: column;
      gap: 30px;
      max-width: 920px;
      width: 100%;
    }

    .pricing-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg, #8a6a3b 0%, #b85c40 50%, #8a6a3b 100%);
      background-size: 200% 100%;
      animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
      0%, 100% { background-position: 200% 0; }
      50% { background-position: -200% 0; }
    }

    .left-section {
      text-align: center;
      width: 100%;
    }

    .divider {
      display: none;
    }

    .right-section {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .header-section {
      margin-bottom: 24px;
    }

    .title {
      font-size: clamp(1.5rem, 5vw, 2.2rem);
      font-weight: 800;
      background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .subtitle {
      color: #718096;
      font-size: clamp(0.85rem, 2vw, 1rem);
      font-weight: 400;
      line-height: 1.5;
      margin: 0 auto;
    }

    .price-showcase {
      background: linear-gradient(135deg, rgba(138, 106, 59, 0.04) 0%, rgba(184, 92, 64, 0.06) 100%);
      border-radius: 20px;
      padding: 24px 20px;
      margin-bottom: 24px;
      position: relative;
      border: 1px solid rgba(138, 106, 59, 0.1);
    }

    .price-display {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 6px;
      margin-bottom: 14px;
    }

    .currency {
      font-size: clamp(1.8rem, 5vw, 2.5rem);
      font-weight: 700;
      color: #8a6a3b;
      opacity: 0.9;
    }

    .amount {
      font-size: clamp(2.5rem, 8vw, 4rem);
      font-weight: 800;
      background: linear-gradient(135deg, #8a6a3b 0%, #b85c40 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1;
    }

    .price-details {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .original-price {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      color: #a0aec0;
      text-decoration: line-through;
      font-weight: 500;
    }

    .savings-badge {
      background: linear-gradient(45deg, #ff6b6b, #feca57);
      color: white;
      padding: 6px 12px;
      border-radius: 16px;
      font-size: clamp(0.8rem, 2vw, 0.9rem);
      font-weight: 700;
      box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    }

    .curriculum-section {
      width: 100%;
    }

    .section-titles {
      font-size: clamp(1rem, 3vw, 1.2rem);
      font-weight: 700;
      color: #2d3748;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .phases-container {
      margin-bottom: 24px;
    }

    .phases-grid {
      display: grid;
      gap: 14px;
      margin-bottom: 20px;
    }

    .phase-card {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
      border: 1px solid rgba(138, 106, 59, 0.1);
      border-radius: 14px;
      padding: 14px 16px;
      text-align: left;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .phase-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(to bottom, #8a6a3b, #b85c40);
      border-radius: 0 2px 2px 0;
    }

    .phase-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
      flex-wrap: wrap;
      gap: 8px;
    }

    .phase-title {
      font-size: clamp(0.85rem, 2vw, 0.95rem);
      font-weight: 700;
      color: #8a6a3b;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .phase-icon {
      font-size: 1rem;
    }

    .duration-badge {
      background: rgba(138, 106, 59, 0.1);
      color: #8a6a3b;
      padding: 4px 10px;
      border-radius: 12px;
      font-size: 0.75rem;
      font-weight: 600;
    }

    .phase-content {
      font-size: clamp(0.8rem, 2vw, 0.9rem);
      color: #4a5568;
      line-height: 1.4;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    .check-icon {
      color: #48bb78;
      font-size: 0.85rem;
      font-weight: bold;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .premium-features {
      background: linear-gradient(135deg, rgba(138, 106, 59, 0.06) 0%, rgba(184, 92, 64, 0.04) 100%);
      border: 1px solid rgba(138, 106, 59, 0.15);
      border-radius: 16px;
      padding: 18px;
    }

    .premium-title {
      font-size: clamp(0.95rem, 2.5vw, 1.1rem);
      font-weight: 700;
      color: #2d3748;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 10px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: clamp(0.8rem, 2vw, 0.9rem);
      color: #4a5568;
      line-height: 1.3;
    }

    .feature-highlight {
      color: #8a6a3b;
      font-weight: 600;
    }

    .container {
      max-width: 1000px;
      margin: 40px auto;
      padding: 0 15px;
      text-align: center;
    }

    .header {
      font-size: clamp(1.5rem, 4vw, 2.2rem);
      font-weight: 700;
      color: #8a6a3b;
      text-align: center;
      margin-bottom: 30px;
    }

    .mentors {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      justify-items: center;
    }

    .mentor-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 300px;
      text-align: center;
      padding-bottom: 15px;
    }

    .mentor-image {
      width: 100%;
      height: 180px;
      background-size: cover;
      background-position: center;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      background-color: #ddd;
    }

    .mentor-role {
      color: #ff6200;
      font-size: 12px;
      font-weight: bold;
      margin: 10px 0 5px;
      letter-spacing: 1px;
    }

    .mentor-name {
      font-size: 16px;
      font-weight: 700;
      color: #333;
      margin-bottom: 10px;
    }

    .mentor-description {
      font-size: 12px;
      color: #666;
      line-height: 1.6;
      padding: 0 15px;
      text-align: left;
    }

    .mentor-description li {
      margin-left: 15px;
      margin-bottom: 6px;
    }

    .testimonials-section {
      background-color: #fef9e7;
      padding: 40px 15px;
      text-align: center;
    }

    .testimonials-section h2 {
      font-size: clamp(1.5rem, 4vw, 2.2rem);
      font-weight: 700;
      color: #8a6a3b;
      margin-bottom: 30px;
    }

    .testimonials-section .highlight {
      color: #ff6b00;
      font-weight: bold;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .testimonial-card {
      background: white;
      border-radius: 10px;
      padding: 18px;
      text-align: left;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    }

    .stars {
      color: #f39c12;
      font-size: 16px;
      margin-bottom: 10px;
    }

    .testimonial-card p {
      margin: 0 0 16px;
      color: #333;
      font-size: clamp(0.85rem, 2vw, 0.95rem);
      line-height: 1.6;
    }

    .highlight-text {
      color: #e74c3c;
      font-weight: 600;
    }

    .user-info {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .user-info img, .user-info .avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .user-info .avatar {
      background-color: #ff9f43;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
    }

    .user-info div {
      font-size: 13px;
      color: #666;
    }

    .faq-section {
      max-width: 800px;
      margin: 0 auto;
      padding: 2rem 15px;
    }

    .faq-section h2 {
      text-align: center;
      font-size: clamp(1.5rem, 5vw, 2.5rem);
      margin-bottom: 2rem;
      font-weight: 700;
      color: #8a6a3b;
    }

    .faq-item {
      background-color: #f1f7ff;
      border-radius: 12px;
      margin-bottom: 1rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 1rem 1.2rem;
      font-size: clamp(0.9rem, 2.5vw, 1.05rem);
      font-weight: 500;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      text-align: left;
      gap: 10px;
    }

    .faq-question span:first-child {
      flex: 1;
    }

    .arrow {
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .faq-item.open .arrow {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      background-color: #fff;
      padding: 0 1.2rem;
      font-size: clamp(0.85rem, 2vw, 0.95rem);
      line-height: 1.6;
    }

    .faq-item.open .faq-answer {
      padding: 1rem 1.2rem;
      max-height: 500px;
    }

    .bottom-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: white;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
      padding: 14px 15px;
      z-index: 999;
    }

    .banner-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
      gap: 12px;
    }

    .course-info h3 {
      margin: 0;
      font-size: clamp(1rem, 3vw, 1.25rem);
      font-weight: 700;
      color: #111;
    }

    .pricing {
      margin-top: 4px;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .price {
      font-size: clamp(1rem, 3vw, 1.125rem);
      font-weight: 600;
      color: #111;
    }

    .original-price {
      font-size: clamp(0.9rem, 2.5vw, 1rem);
      text-decoration: line-through;
      color: #888;
    }

    .discount {
      background-color: #a5d6a7;
      color: #1b5e20;
      font-size: clamp(0.75rem, 2vw, 0.875rem);
      padding: 3px 8px;
      border-radius: 6px;
      font-weight: 600;
    }

    .button-wrapper {
      position: relative;
    }

    .join-btn {
      background: linear-gradient(to right, #ff6a00, #ff8c00);
      border: none;
      color: white;
      padding: 12px 24px;
      font-size: clamp(0.9rem, 2.5vw, 1rem);
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s;
      white-space: nowrap;
    }

    .join-btn:hover {
      background: linear-gradient(to right, #e65c00, #ff8c00);
      transform: translateY(-2px);
    }

    @media (min-width: 768px) {
      .navbar {
        padding: 20px 40px;
      }

      .logo img {
        height: 40px;
      }

      .hero {
        padding: 120px 20px 80px;
        min-height: 100vh;
      }

      .hero-content {
        gap: 40px;
      }

      .daily-discipline {
        padding: 1.5rem 2rem;
      }

      .daily-discipline .container {
        gap: 2rem;
      }

      .daily-discipline .left {
        width: auto;
      }

      .pricing-card {
        padding: 40px;
      }

      .bottom-banner {
        padding: 16px 24px;
      }
    }

    @media (min-width: 1024px) {
      .pricing-card {
        grid-template-columns: 1fr 1px 1fr;
        flex-direction: row;
      }

      .divider {
        display: block;
        width: 1px;
        height: 300px;
        background: linear-gradient(to bottom, 
          transparent 0%, 
          rgba(138, 106, 59, 0.2) 20%, 
          rgba(138, 106, 59, 0.4) 50%, 
          rgba(138, 106, 59, 0.2) 80%, 
          transparent 100%);
      }

      .left-section, .right-section {
        width: auto;
      }

      .features-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      body {
        padding-bottom: 120px;
      }

      .banner-content {
        flex-direction: column;
        align-items: stretch;
      }

      .button-wrapper, .join-btn {
        width: 100%;
      }

      .course-info {
        text-align: center;
      }

      .pricing {
        justify-content: center;
      }
    }