body {
    background-color: lightgray;
    height: 2000px;
    margin: 190px auto;
    font-family: Arial, Helvetica, sans-serif;
}

.head-container {
    background-color: #004634;
    height: 150px;
    width: 90%;
    max-width: 1300px;
    padding: 20px;
    z-index: 5;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    align-items: center;
}

.head-side {
    padding: 5px;
    width: 250px;
    font-size: 25px;
    color: white;
    text-shadow: 1px 1px rgb(0, 0, 0, 0.3);
}

.head-center {
    flex: 1;
    text-align: center;
}

.head-img {
    max-height: 60px;
    display: block;
    margin: 0 0 10px;
}

.nav-list ul {
    list-style: none;
    margin: 15px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.nav-list ul li a{
    text-decoration: none;
    background-color: #10ac80;
    color: white;
    text-shadow: 1px 1px rgb(0, 0, 0, 0.3);
    font-size: 15px;
    padding: 5px;
    margin: 5px;
    height: 20px;
    transition: all 0.2s ease;
    display: inline-block;
    justify-content: center;
    min-width: max-content;
}

.nav-list ul li a:hover {
    background-color: #247460;
    font-weight: bold;
}





.main-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    background-color: darkseagreen;
    height: auto;
}

.table-container {
    width: 90%;
    max-width: 1000px;
    margin: 50px auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid black;
    text-align: center;
}

.price-table th,
.price-table td {
    border: 1px solid black;
    padding: 10px;
}

.price-table th {
    background-color: #10ac80;
    color: white;
}

.price-table td img {
    width: auto;        
    height: auto;
    max-width: 320px;
    max-height: 160px;
    
    transition: transform 0.3s ease;
}

.price-table td img:hover {
    transform: scale(1.2); 
    z-index: 2;
}




.footer-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    background-color: #222;
    color: white;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.footer-section p {
    color: #60b6ef;
}














