 body {
     font-family: Arial, sans-serif;
     background: #f4f6fa;
     margin: 0;
 }

 container {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     padding: .5em;
     min-height: 100vh;
     max-width: 100%;
     margin: auto;
     background-color: #386255;
 }


 section {
     padding: .5em;
     max-width: 100%;
     width: 100%;
     display: flex;
     flex-direction: column;
     margin-bottom: 1em;
 }

 .link-list {
     max-width: 100%;
     margin: auto;
     width: 100%;
 }

 .link-item {
     display: block;
     background: white;
     padding: 14px 18px;
     margin-bottom: 10px;
     border-radius: 12px;
     text-decoration: none;
     color: #111827;
     font-weight: 500;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
     transition: all 0.2s ease;
 }

 .link-item:hover {
     background: #8BA49A;
     color: white;
     transform: translateY(-2px);
 }

 .bottom-bar {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background: transparent;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 10px 0;
     z-index: 999;
 }

 .bottom-bar a {
     display: flex;
     align-items: center;
     text-decoration: none;
     color: white;
     font-weight: bold;
     font-size: 16px;
     transition: all 0.2s ease;
     padding: 2px;
 }

 .bottom-bar img {
     height: auto;
     width: 40%;
     margin: auto;
 }

 .image-container {
     text-align: center;
     margin: 20px auto;
 }

 .image-container img {
     max-width: 130px;
     max-height: auto;
     border-radius: 12px;
 }

 @media (min-width: 1024px) {
     container {
         max-width: 414px;
         width: 100%;
         margin: auto;
     }

     section {

         max-width: 100%;
         width: 94%;
     }


 }

 @media (min-width: 768px) and (max-width: 1436px) {

     container {
         max-width: 100%;
         width: 100%;
         margin: auto;
     }
 }
