body {
    margin: 0;
    font-family: sans-serif;
    background: #1a1f16;
    color: white;
  }
  a {
    color: #ec632a;
    text-decoration: none;
  }
  .hero {
    background: url('../img/v2banner.png') center/cover no-repeat;
    text-align: center;
    padding: 3rem 1rem;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .logo {
    height: 80px;
    animation: pulse 2s infinite;
  }
  .cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: #654114;
    color: white;
    border-radius: 12px;
    font-size: 1rem;
  }
  .section {
    padding: 3rem 1rem;
  }
  .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
    text-decoration-color: #ffcc33;
  }
  .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  .pricing-grid .card {
    flex: 1 1 300px;
  }
  .grid div {
    background: #2c2f26;
    padding: 1rem;
    border-radius: 8px;
    max-width: 300px;
    width: 100%;
  }
  .card {
    background: #2c2f26;
    padding: 1rem;
    text-align: center;
    border-radius: 12px;
    width: 100%;
  }
  .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
  }
  .learning-box {
    background: #2c2f26;
    padding: 2rem;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    color: white;
    text-align: left;
  }
  .btn-premium {
    display: inline-block;
    background: #b8781f;
    padding: 0.6rem 1.2rem;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    margin-top: 1rem;
  }
  .btn-lifetime {
    display: inline-block;
    background: #197167;
    padding: 0.6rem 1.2rem;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    margin-top: 1rem;
  }
  .scroll-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    margin-top: 1.5rem;
  }
  .scroll-track {
    display: flex;
    gap: 1rem;
    animation: scroll-left 25s linear infinite;
  }
  .scroll-track:hover {
    animation-play-state: paused;
  }
  .scroll-track img {
    height: 200px;
    border-radius: 8px;
  }
  @keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .centered-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1rem;
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  footer {
    text-align: center;
    padding: 1rem;
    background: black;
    color: #ffcc33;
  }
  @keyframes pulse {
    0% { opacity: 1 }
    50% { opacity: 0.5 }
    100% { opacity: 1 }
  }
  
  /* Mobile Optimization */
  @media (max-width: 768px) {
    .section-title {
      font-size: 1.5rem;
    }
    .card img {
      height: 150px;
    }
    .scroll-track img {
      height: 150px;
    }
    .learning-box {
      padding: 1rem;
      font-size: 0.95rem;
    }
    .cta {
      font-size: 0.9rem;
      padding: 0.4rem 1rem;
    }
    .hero {
      min-height: 250px;
      padding: 2rem 0.5rem;
    }
    .policy-card {
      padding: 1.2rem 0.5rem;
      max-width: 98vw;
    }
    .news-banner {
      font-size: 1rem;
      padding: 0.7rem 0.2rem;
    }
    .teaser-grid img {
      height: 110px;
    }
    .teaser-grid {
      gap: 0.5rem;
    }
    .section {
      padding: 1.5rem 0.3rem;
    }
    .centered-description {
      font-size: 1rem;
      padding: 0 0.2rem;
    }
    .btn-home {
      font-size: 1rem;
      padding: 0.6rem 1.2rem;
      width: 90vw;
      max-width: 350px;
    }
    .scroll-wrapper {
      margin-top: 1rem;
    }
    .contact-form input,
    .contact-form textarea {
      font-size: 0.95rem;
      padding: 0.5rem 0.7rem;
    }
    .footer {
      font-size: 0.95rem;
      padding: 0.7rem 0.2rem;
    }
  }
  
  .news-banner {
    background: linear-gradient(90deg, #ffb347 0%, #ffcc33 100%);
    color: #222;
    text-align: center;
    font-weight: bold;
    padding: 1rem 0.5rem;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  }
  
  .teaser-grid {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0 1rem 0;
  }
  .teaser-grid img {
    height: 230px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    background: #222;
  }
  @media (max-width: 768px) {
    .teaser-grid img {
      height: 150px;
    }
  }
  
  .section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.2rem auto;
    font-size: 1.08rem;
    line-height: 1.5;
    color: #e6e6e6;
  }
  
  .zoom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
  }
  .zoom-modal-content {
    margin: auto;
    display: block;
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.4);
  }
  .zoom-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1010;
    text-shadow: 0 2px 8px #000;
  }
  
  .policy-card {
    background: #23261e;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    padding: 2.5rem 2rem;
    max-width: 700px;
    margin: 0 auto;
  }
  .policy-card ul {
    margin: 1.2rem 0 1.2rem 1.5rem;
    padding-left: 1.2rem;
  }
  .policy-card li {
    margin-bottom: 0.8rem;
    font-size: 1.08rem;
    line-height: 1.6;
  }
  .policy-card .section-title {
    margin-bottom: 1.2rem;
  }
  .policy-card .section-desc {
    margin-bottom: 1.5rem;
  }
  
  #backToTop {
    display: none;
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 100;
    background: #ffcc33;
    color: #222;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: background 0.2s;
  }
  #backToTop:hover {
    background: #ffd966;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .contact-form label {
    font-weight: bold;
    color: #ffcc33;
    margin-bottom: 0.2rem;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 0.7rem 1rem;
    border-radius: 8px;
    border: 1px solid #444;
    background: #181a14;
    color: #fff;
    font-size: 1rem;
    resize: vertical;
  }
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: 2px solid #ffcc33;
  }
  .contact-info {
    margin-top: 2rem;
    background: #23261e;
    border-radius: 10px;
    padding: 1.2rem 1rem;
    color: #fff;
  }
  .contact-info h3 {
    margin-top: 0;
    color: #ffcc33;
  }
  
  .section-break {
    border: none;
    border-top: 2px solid #ffcc33;
    margin: 3rem 0 2rem 0;
    width: 100%;
  }
  .btn-home {
    display: inline-block;
    background: #ffcc33;
    color: #222;
    font-weight: bold;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s;
    margin-top: 1rem;
  }
  .btn-home:hover {
    background: #ffd966;
    color: #111;
  }
  .pci-desc.centered {
    text-align: center;
    margin-top: 1.5rem;
    color: #ffcc33;
    font-weight: 500;
  }
  
  .about-box {
    background: #2c2f26;
    padding: 2rem;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    color: white;
    text-align: left;
    line-height: 1.6;
  }
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  .faq-item {
    background: #2c2f26;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    color: white;
  }
  .faq-item h3 {
    color: #ffcc33;
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
  }
  .faq-item p {
    margin: 0;
    line-height: 1.5;
  }
  @media (max-width: 768px) {
    .about-box {
      padding: 1rem;
      font-size: 0.95rem;
    }
    .faq-item {
      padding: 1rem;
    }
    .faq-item h3 {
      font-size: 1.1rem;
    }
  }
  