body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    flex: 1;
}

header, footer {
    color: white;
    text-align: center;
    padding: 10px;
}



    footer {
            position: sticky;
            bottom: 0;
        }

        .footer-menu {
            display: flex;
            justify-content: center;
            align-items: center;
            /*padding: 10px;*/
        }

        .footer-menu a {
            text-decoration: none;
            color: white;
            margin: 0 200px; /* Add some space between menu items */
        }

        .footer-menu i {
            margin-right: 5px;
        }






nav {
    background-color: rgb(0, 200, 220);
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

nav li {
    float: left;
}

nav a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav a:hover {
    background-color: #ddd;
    color: black;
}

main {
    padding: 20px;
}

/* Media Query for Mobile View */
@media only screen and (max-width: 600px) {
    .desktop-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }

    .mobile-nav {
        background-color: rgb(0, 200, 220);
        position: fixed;
        width: 100%;
        z-index: 1000;
    }

    .mobile-nav ul {
        text-align: center;
        padding: 10px;
    }

    .mobile-nav li {
        display: block;
        margin-bottom: 5px;
    }

    .mobile-nav a {
        display: block;
        color: white;
        text-align: center;
        padding: 10px;
        text-decoration: none;
    }
}

   /* Add these styles to your existing stylesheet or create a new one */

        html, body {
            height: 100%;
        }

        body {
            display: flex;
            flex-direction: column;
        }

        .wrapper {
            flex: 1;
        }

        .launcher-btn {
            position: fixed;
            bottom: 50px;
            right: 20px;
            background-color: rgb(0, 200, 220); /* Use the color of your website's header */
            border: none;
            color: #fff;
            padding: 10px;
            /*border-radius: 3%;*/
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
        }

        .launcher-btn:hover {
            background-color: #128C7E;
        }

        .launcher-btn .icon {
            width: 24px;
            height: 24px;
            margin-right: 8px;
        }

        .launcher-btn .label {
            font-size: 18px;
        }

        footer {
            background-color: rgb(0, 200, 220);
            text-align: center;
            padding: 2px;
            color: #fff;
        }
        
          #qrcode-container {
            margin-top: -50px;
            text-align: center;
        }

        #qrcode {
            display: inline-block;
            padding: 10px;
            background-color: #fff; /* Set the background color */
            border: 2px solid rgb(0, 200, 220); /* Set the border color */
        }

        #qrcode img {
            max-width: 100%;
        }
        
        
        @media (max-width: 768px) {
            h2 {
                font-size: 40px;
            }

            .text-muted {
                font-size: 20px;
                margin-left:50px;
            }

            p {
                font-size: 16px;
            }
            .two-btn{
               margin-top: -50px;
            }
        }
        
        
        
        
        
        
        
        #shareButton {
      /*padding: 15px 30px;*/
      /*font-size: 18px;*/
      /*cursor: pointer;*/
      /*background-color: #4caf50;*/
      /*color: #fff;*/
      /*border: none;*/
      /*border-radius: 8px;*/
      /*transition: background-color 0.3s;*/
    }

    #shareButton:hover {
      /*background-color: #45a049;*/
    }

    #sharePopup {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: #fff;
      padding: 30px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
      border-radius: 10px;
      z-index: 999;
    }

    .socialIcon {
      margin-right: 15px;
      font-size: 36px;
      color: #4caf50;
      text-decoration: none;
      transition: color 0.3s;
    }

    .socialIcon:hover {
      color: #45a049;
    }

    .closeIcon {
      font-size: 24px;
      color: #aaa;
      cursor: pointer;
      float: right;
      transition: color 0.3s;
    }

    .closeIcon:hover {
      color: #666;
    }
    
    
    .container {
           /* background-color: #fff;*/
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            /*padding: 20px;*/
            border-radius: 10px;
        }
        .header-menu{
            max-width: 500px;
            margin-top:-15px;
        }

        .modal-header {
            color: #fff;
            border-bottom: 1px solid #e5e5e5;
            padding: 15px;
            /*border-radius: 10px 10px 0 0;*/
        }

        label {
            font-weight: bold;
        }

        #contactForm {
            margin-top: 20px;
        }

        textarea {
            resize: vertical;
        }

        button {
            background-color: rgb(0, 200, 220);
            color: #fff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
        }

        button:hover {
            background-color: #007b8e;
        }