 * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      padding: 0;
      font-family: 'Roboto', sans-serif;
      background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
      color: #222;
      letter-spacing: 0.3px;
    }

    .container {
      margin: 50px auto;
      background: #fff;
      border-radius: 16px;
      padding: 40px 30px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .logo-container {
      text-align: center;
      margin-bottom: 30px;
    }

    .logo-container img {
      max-width: 300px;
      border-radius: 12px;
      transition: transform 0.3s ease;
    }

    .logo-container img:hover {
      transform: scale(1.05);
    }

    h1 {
      font-size: 38px;
      text-align: center;
      margin-bottom: 25px;
      color: #0d1a26;
      font-family: serif;
      font-weight: 600;
    }

    .subtext {
      text-align: center;
      color: #444;
      font-size: 18px;
      line-height: 1.6;
    }

    .construction-note {
      text-align: center;
      margin-top: 20px;
      color: #fb0606;
      font-weight: bold;
      font-size: 16px;
    }

    .disclaimer {
      padding: 25px;
      background: #fff8e1;
      border: 1px solid #ffe082;
      border-radius: 10px;
      color: #6c5700;
      font-size: 14px;
      line-height: 1.7;
    }

    h2 {
      text-align: center;
      margin-top: 40px;;
      font-size: 22px;
      font-weight: 600;
      text-shadow: #3c3c3c 0 0 2px;
      padding: 10px 20px;
      background: url(../img/bg.png) #f7b978 repeat;
      letter-spacing: 0.8px;
      color: white;
      margin-bottom: 0;
      border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
    }

    iframe {
      width: 100%;
      height: 1300px;
      border: 1px solid #f7b978;;
      border-radius: 0 0 5px 5px;
      /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15); */
    }

    @media (max-width: 768px) {
      .container {
        max-width: fit-content;
        padding: 25px 15px;
        margin: 20px;
      }

      h1 {
        font-size: 24px;
      }

      h2 {
        font-size: 18px;
      }

      .logo-container img {
        width: 140px;
      }

      iframe {
        height: 1300px;
      }
    }

    .card-header {
      font-size: 19px;
      font-weight: 600;
      text-shadow: #3c3c3c 0 0 2px;
      padding: 7px 20px;
      background: url(../img/bg.png) #f7b978 repeat;
      letter-spacing: 0.8px;
    }

    /* .header-bg {
      background: linear-gradient(-45deg, #f7b09a, #f7b09a, #f7b09a, #f7b09a);
      background-size: 400% 400%;
      animation: gradient 15s ease infinite;
    } */
    .border-cs {
      border-color: #f7b978;
      margin-bottom: 47px;
    }