    * {
      margin: 0px;
      padding: 0px;
      box-sizing: border-box;
      font-family: 'Exo', sans-serif;
    }
    
    body {
      overflow-x: hidden;
      font-family: 'Montserrat', sans-serif;
    }
    
    /* Background Animation */
    .area {
      background: #4e54c8;
      background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);
      width: 100%;
      height: 100vh;
      position: fixed;
      z-index: -1;
    }
    
    .circles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }
    
    .circles li {
      position: absolute;
      display: block;
      list-style: none;
      width: 20px;
      height: 20px;
      background: rgba(255, 255, 255, 0.2);
      animation: animate 25s linear infinite;
      bottom: -150px;
    }
    
    .circles li:nth-child(1) {
      left: 25%;
      width: 80px;
      height: 80px;
      animation-delay: 0s;
    }
    
    .circles li:nth-child(2) {
      left: 10%;
      width: 20px;
      height: 20px;
      animation-delay: 2s;
      animation-duration: 12s;
    }
    
    .circles li:nth-child(3) {
      left: 70%;
      width: 20px;
      height: 20px;
      animation-delay: 4s;
    }
    
    .circles li:nth-child(4) {
      left: 40%;
      width: 60px;
      height: 60px;
      animation-delay: 0s;
      animation-duration: 18s;
    }
    
    .circles li:nth-child(5) {
      left: 65%;
      width: 20px;
      height: 20px;
      animation-delay: 0s;
    }
    
    .circles li:nth-child(6) {
      left: 75%;
      width: 110px;
      height: 110px;
      animation-delay: 3s;
    }
    
    .circles li:nth-child(7) {
      left: 35%;
      width: 150px;
      height: 150px;
      animation-delay: 7s;
    }
    
    .circles li:nth-child(8) {
      left: 50%;
      width: 25px;
      height: 25px;
      animation-delay: 15s;
      animation-duration: 45s;
    }
    
    .circles li:nth-child(9) {
      left: 20%;
      width: 15px;
      height: 15px;
      animation-delay: 2s;
      animation-duration: 35s;
    }
    
    .circles li:nth-child(10) {
      left: 85%;
      width: 150px;
      height: 150px;
      animation-delay: 0s;
      animation-duration: 11s;
    }
    
    @keyframes animate {
      0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
      }
      100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
      }
    }
    
    /* Sticky Header */
    .sticky-header {
      position: sticky;
      top: 0;
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      backdrop-filter: blur(10px);
      width: 100%;
    }

    .header-container {
      max-width: 1200px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 0 auto;
      padding: 15px 20px;
    }

    .logo-container img {
      height: 60px;
      width: auto;
      transition: all 0.3s ease;
    }

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

    .website-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: #012581;
      border-radius: 50px;
      color: #fff;
      font-weight: 600;
      transition: all 0.3s ease;
      text-decoration: none;
      border: 1px solid rgba(78, 84, 200, 0.2);
      white-space: nowrap; 
    }

    .website-link:hover {
      background: #fff;
      color: #012581;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(78, 84, 200, 0.1);
    }
    
    /* Hero Section */
    .hero-section {
      text-align: center;
      padding: 80px 20px 40px;
      color: white;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .hero-section h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      font-weight: 700;
    }
    
    .hero-section p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
    }
    
    /* Main Content */
    .main-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }
    
    /* Verification Form */
    .form-container {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 16px;
      width: 90%;
      max-width: 1120px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(5px);
      overflow: hidden;
      transform: translateY(0);
      transition: all 0.3s ease;
      margin: 70px auto;
    }
    
    .form-container:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }
    
    .form-flex-wrapper {
      display: flex;
      min-height: 400px;
      flex-wrap: wrap;
    }
    
    .form-logo-section {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border-right: 1px solid #2a35903d;
      padding: 30px;
      color: #2a3590;
      text-align: center;
    }
    
    .form-logo-section img {
      max-width: 100%;
      height: auto;
      max-height: 200px;
      filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    }
    
    .form-content-section {
      flex: 1.5;
      display: flex;
      flex-direction: column;
    }
    
    .form-content {
      padding: 10px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .form-group {

    }
    
    .input-container {
      display: flex;
      flex-direction: row;
      gap: 20px;
      margin-bottom: 15px;
    }
    
    .wrap-input100 {
      flex: 1;
    }
    
    .input100 {
      width: 100%;
      padding: 18px 20px;
      font-size: 18px;
      border: 1px solid #e3e8ee;
      border-radius: 8px;
      background: white;
      transition: all 0.3s ease;
    }
    
    .input100:focus {
      border-color: #4e54c8;
      box-shadow: 0 0 0 3px rgba(78, 84, 200, 0.1);
      outline: none;
    }
    
    .login100-form-btn {
      background: #4e54c8;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      height: 63px;
      padding: 0 20px;
      white-space: nowrap;
    }
    
    .login100-form-btn:hover {
      background: #3a40b0;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(78, 84, 200, 0.3);
    }
    
    .note-text {
      font-size: 14px;
      color: #666;
      text-align: start;
      margin-top: 20px;
      line-height: 1.6;
    }
    
    /* Verification Results */
    .result-container {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 16px;
      width: 100%;
      max-width: 1120px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(5px);
      overflow: hidden;
      margin: 20px auto;
      padding: 30px;
      display: none;
    }
    
    .success {

    }
    
    .failure {

    }
    
    .result-header {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
    
    .result-icon {
      margin-right: 15px;
      font-size: 30px;
    }
    
    .success .result-icon {
      color: #4CAF50;
    }
    
    .failure .result-icon {
      color: #F44336;
    }
    
    .result-title {
      font-size: 24px;
      font-weight: bold;
    }
    
    .result-message h3 {
      color: #4CAF50;
      margin-bottom: 15px;
      font-weight: normal;
    }
    
    .warning-box {
      background-color: #fff3cd;
      border-radius: 5px;
      padding: 15px;
      margin: 20px 0;
    }
    
    .warning-title {
      display: flex;
      align-items: center;
      font-weight: bold;
      color: #856404;
      margin-bottom: 10px;
    }
    
    .warning-title i {
      margin-right: 10px;
    }
    
    .product-details {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
    }
    
    .product-details th, .product-details td {
      padding: 12px 15px;
      text-align: left;
      border-bottom: 1px solid #e0e0e0;
    }
    
    .product-details th {
      font-weight: bold;
      width: 30%;
    }
    
    .product-image {
      text-align: center;
      margin: 20px 0;
    }
    
    .product-image img {
      max-width: 100%;
      max-height: 500px;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .reset-btn {
      background: #4e54c8;
      color: white;
      border: none;
      border-radius: 8px;
      padding: 12px 25px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 20px;
    }
    
    .reset-btn:hover {
      background: #3a40b0;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(78, 84, 200, 0.3);
    }
    
    .loading {
      display: none;
      text-align: center;
      padding: 20px;
    }
    
    .spinner {
      border: 4px solid rgba(0, 0, 0, 0.1);
      border-left-color: #4e54c8;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      animation: spin 1s linear infinite;
      margin: 0 auto 15px;
    }
    
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    
    /* Multilingual Instructions */
    .instructions-container {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }
    
    .instructions-container h1 {
      width: 100%;
      text-align: center;
      color: white;
      margin-bottom: 30px;
      font-size: 2rem;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .instruction-card {
      position: relative;
      min-width: 300px;
      height: 400px;
      box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
        inset -5px -5px 15px rgba(255, 255, 255, 0.1),
        5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      margin: 20px;
      transition: 0.5s;
      flex: 1 1 300px;
      max-width: 350px;
      background: #3a40b0;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .instruction-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    }
    
    .instruction-card .box {
      position: absolute;
      top: 20px;
      left: 20px;
      right: 20px;
      bottom: 20px;
      border-radius: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      transition: 0.5s;
    }
    
    .instruction-card .box:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 50%;
      height: 100%;
      background: rgba(255, 255, 255, 0.03);
      z-index: -1;
    }
    
    .instruction-card .box .content {
      padding: 20px;
      text-align: strat;
    }
    
    .instruction-card .box .content h2 {
      position: absolute;
      top: -10px;
      right: 30px;
      font-size: 6rem;
      color: rgba(255, 255, 255, 0.1);
      
    }
    
    .instruction-card .box .content h3 {
      font-size: 1.5rem;
      color: #fff;
      z-index: 1;
      transition: 0.5s;
      margin-bottom: 15px;
    }
    
    .instruction-card .box .content .des {
      font-size: 1rem;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.9);
      z-index: 1;
      transition: 0.5s;
      line-height: 1.6;
      
    }
    
    .instruction-card .box .content .des span {
      font-weight: bold;
    }
    
    .instruction-card .box .content a {
      color: #fff;
      padding: 2px 5px;
      border-radius: 3px;
      text-decoration: none;
      transition: 0.3s;
    }
    
    /* Verification Warning Styles */
    .verification-warning {
      width: 100%;
      max-width: 1160px;
      margin: 40px auto;
      padding: 0 20px;
    }
    
    .warning-container {
      background: #3a40b0;
      border-left: 5px solid #fff;
      border-radius: 8px;
      padding: 25px;
      color: white;
      box-shadow: 0 10px 30px rgb(78 78 78 / 20%);
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    
    .warning-container:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgb(64 64 64 / 30%);
    }
    
    .warning-container::before {
      content: "⚠️";
      position: absolute;
      font-size: 120px;
      right: 20px;
      top: 20%;
      transform: translateY(-50%);
      opacity: 0.15;
      z-index: 0;
    }
    
    .warning-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
    }
    
    .warning-icon {
      font-size: 28px;
      margin-right: 15px;
      color: #fff;
    }
    
    .warning-title {
      font-size: 1rem;
      font-weight: 700;
      margin: 0;
      color: white;
    }
    
    .warning-content {
      position: relative;
      z-index: 1;
    }
    
    .warning-text {
      font-size: 1.05rem;
      line-height: 1.6;
      margin-bottom: 15px;
    }
    
    .official-link {
      display: inline-block;
      background: #fff;
      color: #333;
      padding: 10px 20px;
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      margin: 10px 0;
      transition: all 0.3s;
      text-decoration: none !important; 
    }
    
    .official-link:hover {
      background: white;
      transform: translateY(-2px);
    }
    
    .warning-tip {
      background: rgba(0,0,0,0.2);
      border-left: 3px solid #fff;
      padding: 15px;
      border-radius: 0 5px 5px 0;
      margin: 20px 0;
    }
    
    .warning-tip-title {
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    
    .safety-message {
      font-style: italic;
      text-align: center;
      margin-top: 20px;
      padding-top: 15px;
      border-top: 1px dashed rgba(255,255,255,0.3);
    }
    
    /* Verify Section */
    .verify-section {
      padding: 30px 20px;
      position: relative;
      z-index: 1;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .section-title {
      text-align: center;
      color: #fff;
      font-size: 2.2rem;
      margin-bottom: 50px;
      position: relative;
    }
    
    .section-title:after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: #4e54c8;
      margin: 15px auto 0;
    }
    
    .verify-block {
      margin-bottom: 40px;
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      width: 1150px;
    }
    
    .verify-question {
      color: #4e54c8;
      font-size: 1.5rem;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
    }
    
    .verify-question:before {
      content: '?';
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      background: #4e54c8;
      color: white;
      border-radius: 50%;
      margin-right: 15px;
      font-size: 1.2rem;
      font-weight: bold;
    }
    
    .verify-answer {
      padding-left: 45px;
    }
    
    .verify-answer p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #555;
      margin-bottom: 15px;
    }
    
    .verify-answer ul {
      margin: 20px 0;
      padding-left: 20px;
    }
    
    .verify-answer ul li {
      margin-bottom: 10px;
      color: #555;
    }
    
    .full-width-img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin: 20px 0;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .ziska-link {
      display: inline-flex;
      align-items: center;
      padding: 12px 25px;
      background: #4e54c8;
      color: white;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      margin-top: 15px;
      transition: all 0.3s ease;
      text-decoration: none !important;
    }
    
    .ziska-link:hover {
      background: #3a40b0;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(78, 84, 200, 0.3);
      color: white;
    }
    
    .ziska-link i {
      margin-right: 10px;
    }
    
    /* Footer Styles */
    .footer {
      background: linear-gradient(135deg, #1a2a6c, #093c94);
      padding: 60px 0 30px;
      color: white;
      position: relative;
      z-index: 1;
    }

    .footer .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .footer .row {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -15px;
      justify-content: space-between;
    }

    .footer .col-lg-4,
    .footer .col-md-4,
    .footer .col-sm-4,
    .footer .col-xs-12 {
      padding: 0 15px;
      box-sizing: border-box;
    }

    .single_footer {
      margin-bottom: 30px;
    }

    .single_footer h4 {
      color: #fff;
      margin-top: 0;
      margin-bottom: 25px;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 18px;
      position: relative;
    }

    .single_footer h4::after {
      content: "";
      display: block;
      height: 2px;
      width: 40px;
      background: #ffcc00;
      margin-top: 15px;
    }

    .single_footer ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .single_footer ul li a {
      color: rgba(255, 255, 255, 0.8);
      transition: all 0.3s ease;
      line-height: 36px;
      font-size: 15px;
      display: block;
      text-decoration: none;
    }

    .single_footer ul li a:hover {
      color: #ffcc00;
      padding-left: 5px;
    }

    /* Newsletter Form */
    .signup_form {
      margin-top: 20px;
    }

    .subscribe {
      position: relative;
      display: flex;
    }

    .subscribe__input {
      flex: 1;
      padding: 15px 20px;
      font-size: 15px;
      border: none;
      border-radius: 5px 0 0 5px;
      background: rgba(255, 255, 255, 0.9);
    }

    .subscribe__btn {
      background: #ffcc00;
      color: #1a2a6c;
      border: none;
      border-radius: 0 5px 5px 0;
      padding: 0 20px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .subscribe__btn:hover {
      background: #fff;
    }

    /* Social Icons */
    .social_profile {
      margin-top: 30px;
    }

    .social_profile ul {
      display: flex;
      gap: 10px;
      margin-top: 15px;
    }

    .social_profile ul li a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: white;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .social_profile ul li a:hover {
      background: #ffcc00;
      color: #1a2a6c;
      transform: translateY(-3px);
    }

    /* Copyright */
    .copyright {
      margin-top: 50px;
      padding-top: 30px;
      text-align: center;
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      width: 100%;
    }

    .copy-right-col{
      width: 100%;
    }

    .copyright a {
      color: #ffcc00;
      transition: all 0.3s ease;
    }

    .copyright a:hover {
      color: white;
      text-decoration: underline;
    }

    .footer ul {
      list-style-type: none;
      padding-left: 0;
    }
    
    /* Go to Top Button */
    .go-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: #4e54c8;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      border: none;
    }

    .go-to-top.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .go-to-top:hover {
      background: #3a40b0;
      transform: translateY(-3px) !important;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    /* Responsive Adjustments */
    @media (max-width: 1200px) {
      .verify-block {
        width: 100%;
      }
    }
    
    @media (max-width: 992px) {
      .form-flex-wrapper {
        flex-direction: column;
      }

      .col-4, .col-8 {
        max-width: 100%;
      }
      
      .form-logo-section {
        border-right: none;
        border-bottom: 1px solid #2a35903d;
        padding: 30px 20px;
      }
      
      .input-container {
        flex-direction: column;
      }
      
      .wrap-input100 {
        width: 100% !important;
      }
      
      .footer .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
      }
    }

    @media (max-width: 768px) {
      .form-container {
        margin: 40px auto;
        width: 95%;
      }
      
      .hero-section {
        padding: 30px 20px 30px;
      }
      
      .hero-section h1 {
        font-size: 2rem;
      }
      
      .hero-section p {
        font-size: 1rem;
      }
      
      .logo-container img {
        height: 50px;
      }
      
      .website-link {
        padding: 8px 15px;
        font-size: 14px;
      }
      
      .website-link span {
        display: none;
      }
      
      .warning-container {
        padding: 20px;
      }
      
      .warning-container::before {
        font-size: 80px;
        right: 10px;
      }
      
      .warning-title {
        font-size: 1.3rem;font-size: 1.3rem;

    font-weight: normal;
      }
      
      .warning-text {
        font-size: 1rem;
      }
      
      .verification-warning {
        padding: 0px 0px;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      .verify-question {
        font-size: 1.3rem;
      }
      
      .verify-answer {
        padding-left: 0;
      }
      
      .verify-question:before {
        width: 25px;
        height: 25px;
        font-size: 1rem;
      }
      
      .footer {
        padding: 40px 0 20px;
      }
      
      .footer .col-sm-4 {
        flex: 0 0 100%;
        max-width: 100%;
      }
      
      .single_footer {
        margin-bottom: 40px;
      }
      
      .subscribe__input {
        padding: 12px 15px;
      }
      
      .go-to-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        right: 10px;
      }
      
      .instruction-card {
        min-width: 280px;
        height: 380px;
      }
      
      .instruction-card .box .content h2 {
        font-size: 5rem;
      }
      
      .instruction-card .box .content h3 {
        font-size: 1.3rem;
      }
      
      .instruction-card .box .content .des {
        font-size: 0.9rem;
      }
    }

    @media (max-width: 576px) {
      .form-container {
        margin: 20px auto;
        border-radius: 12px;
      }
      
      .form-logo-section img {
        max-height: 150px;
      }
      
      .form-logo-section h3 {
        font-size: 18px;
        margin-top: 15px;
      }
      
      .form-logo-section p {
        font-size: 14px;
      }
      
      .input100 {
        padding: 18px 15px;
        font-size: 16px;
      }
      
      .login100-form-btn {
        height: 55px;
        font-size: 15px;
      }
      
      .note-text {
        font-size: 13px;
      }
      
      .social_profile ul li a {
        width: 36px;
        height: 36px;
        font-size: 14px;
      }
      
      .copyright {
        font-size: 13px;
      }
    }

    @media (max-width: 400px) {
      .form-logo-section {
        padding: 20px 15px;
      }
      
      .form-logo-section img {
        max-height: 120px;
      }
      
      .login100-form-btn {
        height: 50px;
      }
    }
.result-message {
  line-height: 25px;
  background: #d4edda;
  border-radius: 5px;
  padding: 15px;
  color: #2f6416;
}

    @media (max-width: 768px) {

.instructions-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0px auto;
  padding: 0px;
}
.instructions-container h1 {
  width: 100%;
  text-align: center;
  color: white;
  margin: 20px 0px;
  font-size: 1.6em;
}
}


 .productimagetop{
font-weight: bold;
  background: #f7f7f7;
  padding: 15px;
  border-bottom: 1px solid #ccc;
}