    :root {
        --color-1: #d00;
        --color-2: #f8f9fa;
        --color-3: #333;
    }
    body {
      font-family: Arial, sans-serif;
      background-color: #e9e9e9;
      color: #333;
      font-size: 27px;
      line-height: 45px;
    }
    section{
      background-color: #fff;
      max-width: 768px !important;
    }

    .hero {
      /* background: url('https://source.unsplash.com/1200x800/?mecca,umrah') center/cover no-repeat; */
      color: rgb(8, 8, 8);
      padding: 80px 20px;
      text-align: center;

      position: relative;
      background: #fff;
    }

    .hero h1 {
      font-weight: bold;
    }

    .section {
      padding: 150px 20px;
    }

    .cta-btn {
      background-color: var(--color-1);
      color: white;
      font-weight: bold;
    }

    .cta-btn:hover {
      background-color: #b8902f;
      color: white;
    }

    .price-section {
      background-color: #111;
      color: white;
      padding: 50px 20px;
      text-align: center;
    }

    .bonus-section {
      background-color: #f8f9fa;
      padding: 50px 20px;
    }

    .faq-section {
      padding: 50px 20px;
    }

    .countdown {
      font-size: 1.5rem;
      font-weight: bold;
      color: red;
    }
    path{
      fill: var(--color-3)
    }
    .bg-1{
      background-color: var(--color-2);
      color: var(--color-1);
    }
    .bg-2{
      background-color: var(--color-1);
      color: var(--color-2);
    }
    .bg-3{
      background-color: var(--color-3);
      color: var(--color-2);
    }
    .bg-bottom{
      position: absolute;
      width: 100%;
      left: 0;
      bottom: 0;
    }
    .text-1{
      color: var(--color-1);
    }
    .bold{
      font-weight: bold;
    }
    .flip{
      transform: rotateY(180deg);
    }
    .logo{
      max-width: 250px;
      background: #333;
      padding: 20px;
      border-radius: 20px;
      margin-bottom: 50px;
    }

    /* kolapse */
     .accordion-button {
    background-color: #dc3545; /* merah bootstrap */
    color: #fff;
    font-weight: bold;
    font-size: 20px;
  }
  .accordion-button:not(.collapsed) {
    background-color: #c82333; /* merah lebih gelap saat terbuka */
    color: #fff;
  }
  .accordion-button:focus {
    box-shadow: none;
  }
  .accordion-button::after {
    filter: brightness(0) invert(1); /* icon arrow jadi putih */
  }
  .accordion-body{
    font-size: 18px;
    line-height: 28px;
  }

  .running-top{
    background-color: #dc3545;
    color: white;
    padding: 8px 0;
    font-weight: bold;
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
  .masalah{
    padding: 200px 20px 330px;
    position: relative;
  }
  .img-box{
    position: relative;
    margin: -20px;
  }
  .img-box img{
    width: 100%;
    position: absolute;
  }
  .anim-1 {
    animation: pulseAnim 1.5s infinite;
    transition: transform 0.2s ease-in-out;
  }

  .anim-1:hover {
    transform: scale(1.05);
  }

    .anim-float {
    animation: floatAnim 3s ease-in-out infinite;
  }

   .anim-blink {
    animation: blinkAnim 1s step-start infinite;
  }


  /* animasi */
   @keyframes blinkAnim {
    50% {
      opacity: 0;
    }
  }
    @keyframes floatAnim {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
    100% {
      transform: translateY(0px);
    }
  }
   /* Animasi tombol daftar */
  @keyframes pulseAnim {
    0% {
      box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(220, 53, 69, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
  }
   @keyframes marquee {
    0%   { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
  }

  /* respondsif */
  @media screen and (max-width: 425px) {
    body{
      font-size: 20px;
      line-height: 28px;
    }
    .section {
        padding: 50px 20px;
    }
    .hero p span{
      max-width: 310px;
    display: block;
    margin: auto;
    }
    .masalah {
    padding: 200px 20px 250px !important;
    }
  }