.sub-header-TPM{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient( 73.1deg, rgba(85, 107, 85, 0.7) 30%, rgba(99,162,17,0.7) 86.9% ), url("../images/TPM-banner.jpg");
    background-position: center;
    background-size: cover;
    text-align: center;
    color: white;
    overflow: hidden;
    position: relative;
}

.sub-header-TPM h1{
    font-size: 35px;
    margin-top: 100px;
}

.head{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.head h1, h2{
    margin-bottom: 10px;
}

.head h2{
    margin-bottom: 30px;
}

.TPM {
    margin-right: 20px;
    margin-left: 20px;
    margin-top: 20px;
}

.TPM .row{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.TPM .container{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 40px;
    margin-bottom: 20px;
    background: #425b2d;
    margin-right: 30px;
    color: #ffffff;
    border-radius: 6px;


}

.names{
    margin-bottom: 4px;
}

.representing{
    color: #d5d5d5;
}

.TPM h4{
    margin-bottom: 10px;
    align-items: center;
    font-size: medium;
}

.images-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.images-container img {
    display: block;
    max-width: 1000px;
    max-height: 100%;
    margin-bottom: 30px;
}

@media (max-width: 1000px) {
    .images-container img {
        max-width: 100%;
        height: auto;
    }
}

.TPM ul li{
    margin: 0 30px;
    list-style: square;
    font-style: italic;
    font-size: 18px;
    padding: 5px;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 20px;
}

.images-grid img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .images-grid {
        grid-template-columns: 1fr;
    }
}


