
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #4a6154;
        }
/*div tag container for button*/
    .menu_section{
     background-color: #4a6154;   
    }
    .hmenu {
      position: relative;
      display: inline-block;
    }
.hmenu1 {
    position: relative;
    display: inline-block;
    color: #e8e7d3;
    padding: 16px;
}
.hmenu1 a{
    color: #e8e7d3;
    text-decoration: none;
    padding: 16px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
}
.hmenu1 a:hover{
    background-color: #e8e7d3;
    color: #4a6154;
}

    /*button tag*/
    .hmenubutton {
      background-color: #4a6154;
      color: #e8e7d3;
      padding: 16px;
      font-size: 16px;
      border: none;
      border-radius: 5px;
    }

    .hmenubutton a{
        color: #e8e7d3;
        text-decoration: none;
        border-radius: 5px;
    }

    /*list under button tag*/
    .hmenulist {
      display: none;
      position: absolute;
      background-color: #e8e7d3;
      min-width: 160px;
      box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
      z-index: 1;
      border-radius: 5px;
    }

    /*The four links states are:
    a:link - a normal, unvisited link
    a:visited - a link the user has visited
    a:hover - a link when the user mouses over it
    a:active - a link the moment it is clicked*/

    /*Selects all <a> elements inside <div> elements of class="hmenulist" */
    .hmenulist a {
      padding: 12px 16px;
        color: #4a6154;
      text-decoration: none;
      display: block;
    }

    .hmenulist a:hover {
        background-color: #4a6154;
        color: #e8e7d3;
    }

    .hmenu:hover .hmenulist {display: block;}

    .hmenu:hover .hmenubutton {background-color: #4a6154;;}


    /* end of main_list css */


    /* Header and Navigation */
    header {
        background-color: #4a6154;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 100;
    }
/* pull-down mainmenu css */



/* end of mainmenu css */


    .logo{
        font-weight: bold;
        font-size: 1.5em;
    }
        .container {
            max-width: 800px;
            margin: 50px auto;
            padding: 20px;
            background: #e8e7d3;
            color: #4a6154;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }
        h1 {
            text-align: center;
            color: #4a6154;
        }
        .contact-form {
            display: flex;
            flex-direction: column;
        }
        .contact-form label {
            margin-bottom: 5px;
            font-weight: bold;
        }
        .contact-form input, .contact-form textarea {
            margin-bottom: 15px;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .contact-form button {
            background-color: #007BFF;
            color: #fff;
            border: none;
            padding: 15px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .contact-form button:hover {
            background-color: #0056b3;
        }
        .contact-info {
            text-align: center;
            margin-top: 20px;
        }
        .contact-info p {
            margin: 5px 0;
        }
        .contact-form input:focus, .contact-form textarea:focus {
            border-color: #007BFF;
            outline: none;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
        }
        .success-message {
            display: none;
            text-align: center;
            color: green;
            font-weight: bold;
            margin-top: 10px;
        }
