 body {

     background-color: #fffbe6;

 }

 .navbar {
     background-color: #a86201;
     color: white;
     display: flex;
     justify-content: space-evenly;
     align-items: center;
     padding: 20px;
     position: fixed;
     top: 0;
     width: 100%;
     flex-wrap: wrap;
 }

 .left-section {
     display: flex;
     align-items: center;
     margin-right: 20px;
 }

 .left-section img {
     margin-right: 15px;

 }

 .brand-section {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .brand-logo {
     width: 80px;
     height: 80px;
     border-radius: 10px;
     gap: 50px;
 }

 .brand-text {
     margin: 10;
     padding: 20;
     font-size: 28px;
     font-weight: bold;
     color: white;
 }

 .center-links {
     display: flex;
     gap: 50px;
     flex-wrap: wrap;
 }

 .center-links a {
     text-decoration: none;
     font-size: 20px;
     color: white;
     font-weight: 800;
     transition: 0.3s;
 }

 .center-links a:hover {
     color: darkorange;
 }

 .right-links {
     display: flex;
     gap: 20px;
     flex-wrap: wrap;
 }

 .right-links a {
     text-decoration: none;
     color: white;
     font-size: 20px;
     font-weight: 800;
     transition: 0.3s;
 }

 .right-links a:hover {
     color: gold;
 }

 .banner-logo {
     margin: 0;
     padding: 0;
     display: block;
 }







 .container {
     height: 1200px;
     max-width: 850px;
     margin: 50px auto;
     background: white;
     padding-top: 80px;
     border-radius: 20px;
     box-shadow: 5px 10px 3px #9c7135;
     border: 2.5px solid#9c7135;
     color: #03203A;
     font-size: 18px;
 }

 .container:hover {
     box-shadow: 5px 10px 10px 2px #6d6c6c;
     transition: 0.5s;
     background-color: #e1f5e2;
     border: solid 2.5px green;
 }

 .header {
     text-align: center;
     margin-bottom: 25px;
 }

 .header h1 {
     margin: 0;
     font-size: 38px;
     color: #a86201;
     text-shadow: 0 0 10px #ffddb6;
 }

 .header p {
     font-size: 15px;
     color: #201f1f;
 }

 .img {
     height: 330px;
     width: 600px;
     border-radius: 15px;

     display: block;
     margin: 0 auto;


 }



 .labels {

     font-weight: 600;
     color: #030303;
     display: block;
     margin-bottom: 6px;
     margin-top: 15px;
     font-size: 20px;
     margin: 10px 30px;
 }

 .selection {
     width: 70%;
     margin: 0 30px;
     padding: 8px 60px;
     border-radius: 5px;
     box-shadow: 4px 5px 2px #9c7135;
 }



 .checkbox-group {
     display: flex;
     flex-wrap: wrap;
     gap: 5px;
     margin-top: 10px;
     color: #030303;
     font-size: 20px;
     margin: 10px 30px;
 }

 .checkbox-label {
     background: #dda350;
     padding: 8px 14px;
     border-radius: 25px;
     border: 2.5px solid #ee9b49;
     cursor: pointer;
     transition: 0.2s;
     margin-top: 20px;
 }

 .checkbox-label:hover {
     background: #f19736;
     border-color: #ed9d1c;
     border: 2.5px solid #ef8922;
 }

 .btn-view {
     padding: 30px 30px;
     text-align: center;
 }

 .btn {
      background-color: #31443b;
    color: white;
    padding: 18px;
    margin: 50px;
    border: none;
    margin-right: 60px;
     text-align: center;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;

 }

 btn:hover {
     background-color: #192d1d;
     box-shadow: rgba(41, 72, 59, 0.4);
 }

 footer {
     background-color: #a86201;
     color: white;
     padding: 40px 50px 20px 50px;
 }

 .footer-container {
     display: flex;
     flex-wrap: nowrap;
     justify-content: space-between;
     gap: 30px;
 }

 .footer-container div {
     flex: 220px;
 }

 .footer-about h3 {
     margin-bottom: 10px;
     font-size: 24px;
 }

 .footer-links a,
 .footer-social a {
     display: block;
     text-decoration: none;
     color: white;
     margin-bottom: 6px;
     transition: 0.3s;
 }

 .footer-links a:hover,
 .footer-social a:hover {
     color: darkorange;
 }

 .footer-contact a {
     color: white;
     text-decoration: none;
 }

 .footer-contact a:hover {
     color: gold;
 }

 .social-icon {
     height: 22px;
     width: 22px;
     margin-right: 8px;
     vertical-align: middle;
     border-radius: 4px;
 }

 .footer-bottom {
     text-align: center;
     margin-top: 25px;
     border-top: 1px solid #ffffff80;
     padding-top: 10px;
     font-size: 14px;
 }

 @media (max-width: 1100px) {

     .navbar {
         flex-direction: column;
         justify-content: center;
         align-items: center;
         gap: 15px;
         padding: 20px;
         text-align: center;
     }

     .left-section,
     .center-links,
     .right-links {
         width: 100%;
         justify-content: center;
         flex-wrap: wrap;
     }

     .center-links {
         gap: 25px;
     }

     .right-links {
         gap: 20px;
     }
 }

 @media (max-width: 900px) {

     .brand-logo {
         width: 70px;
         height: 70px;
     }

     .brand-text {
         font-size: 24px;
     }

     .center-links a,
     .right-links a {
         font-size: 18px;
     }

     footer {
         text-align: center;
     }
 }

 @media (max-width: 600px) {

     .brand-logo {
         width: 60px;
         height: 60px;
     }

     .brand-text {
         font-size: 22px;
     }

     .center-links a,
     .right-links a {
         font-size: 18px;
     }

     footer {
         text-align: center;
     }
 }

 @media (max-width: 600px) {
     footer {
         padding: 25px 15px;
     }

     .footer-container {
         flex-direction: column;
         text-align: center;
     }

     .footer-container div {
         width: 100% !important;
         margin-bottom: 20px;
     }

     .footer-links a,
     .footer-social a {
         font-size: 14px;
         margin: 4px 0;
     }

     .footer-bottom {
         font-size: 12px;
     }
 }