 /* Modal overlay */
       




 .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.5);
    }

    .modal-content {
      background-color: #f3f3f3;
      margin: 5% auto;
      padding: 0;
      border: 1px solid #888;
      width: 80%;
      max-width: 80%;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .modal iframe {
      width: 100%;
      height: 70vh;
      border: none;
    }

    .close {
      color: #aaa;
      float: right;
      font-size: 28px;
      font-weight: bold;
      padding: 10px;
      cursor: pointer;
    }

    .close:hover {
      color: black;
    }

















        /* Close button */
        .close-btn {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 48px;
            font-weight: regular;
            background: none;
            border: none;
            cursor: pointer;
            color: #000;
        }
        
        /* Demo button to open modal */
        .open-modal-btn {
             padding: 15px 30px;
            font-family: 'unbounded', sans-serif;
            font-weight: 500;
            text-transform: uppercase;
            font-size: .85rem;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            background-color: #FFD600;

        }

        .open-modal-btn-r {
             padding: 15px 30px;
            font-family: 'unbounded', sans-serif;
            font-weight: 500;
            color: #fff;
            text-transform: uppercase;
            font-size: .85rem;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            background-color: #8E44AD;

        }
        
        .open-modal-btn:hover {
            background-color: #DDA200;
        }


.open-modal-btn-r:hover {
            background-color: #622F78;
        }



       

        button {
           
            transition: background-color 0.3s;
        }


 


        @media (max-width: 768px) {
            .form-container {
                background-image: none;
                width: 90%;
                padding: 20px;
            }
            .form-content {
                width: 100%;
                padding-right: 0;
            }
        }