       body {
           
            font-family: Arial, sans-serif;
        }
        html,body{
              height: 100%;
              margin: 0;
        }
        
        body{
            display:flex;
            flex-direction:column;
            min-height:100vh;
        }
        .navbar {
            background-color: #333;
        }
        main{
            flex:1;
            padding:20px;
        }
        
        .navbar-brand, .navbar-nav .nav-link  {
            color: #b6862c; /* G&S Legacy gold tone */
        }
        .side-menu {
            height: 100%;
            width: 0;
            position: fixed;
            z-index: 1021;
            top: 0;
            right: 0;
            background-color: #333;
            overflow-x: hidden;
            transition: 0.5s;
            padding-top: 60px;
        }
        .side-menu a {
            padding: 10px 15px;
            text-decoration: none;
            font-size: 25px;
            color: #b6862c; /* G&S Legacy gold tone */
            display: block;
            transition: 0.3s;
        }
        .side-menu a:hover {
            color: #f1f1f1;
        }
        .side-menu .close-btn {
            position: absolute;
            top: 10px;
            right: 25px;
            font-size: 36px;
        }
        @media screen and (max-height: 450px) {
            .side-menu {padding-top: 15px;}
            .side-menu a {font-size: 18px;}
        }
            .sticky-top {
            position: -webkit-sticky;
            position: sticky;
            top: 0;
            z-index: 1020;
        }
.footer {
  bottom: 0;
  width: 100%;
  background-color: #333;
            color: #b6862c; /* G&S Legacy gold tone */
  text-align: center;
  padding: 10px;
}

.grecaptcha-badge {
  visibility: hidden;
}




        