body, html {
    font-family: 'Trebuchet MS', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    
}
.spact, .head, .iap {
    width: 25%;
}
.head {
    width: 50%;
}
img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.menu {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    background-color: black;
    padding: 10px 0;
}
.items {
    font-family: 'Trebuchet MS', sans-serif;
    color: white;
    font-size: 20px;
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
}
.items:hover {
    color: red;
    border-radius: 5px;
}

.names {
    font-family: 'Trebuchet MS', sans-serif;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
}
h4 {
    margin: 0px;
    padding: 0px;
}

.responsive-table {
    margin-top: 20px;
    list-style-type: none;
    padding: 0;
}
.responsive-table li {
    display: flex;
    justify-content: space-between;
    padding: 25px 30px;
    margin-bottom: 15px;
    background-color: rgb(217, 239, 251);
    border-radius: 10px;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
}
.col {
    font-size: 18px;
    text-align: center;
    flex-basis: 30%;
}

.table-header {
    color: rgb(119, 43, 234);
    background-color: rgb(174, 225, 244);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: bold;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
}
.table-row {
    font-size: 18px;
    background-color: rgb(217, 239, 251);
}

.col-1 {
    flex-basis: 20%;
}
.col-2 {
    flex-basis: 40%;
}
.col-3 {
    flex-basis: 40%;
}

.contactus {
    font-size: 20px;
    background-color: black;
    color: white;
    padding: 20px;
    text-align: left; 
    margin-top: 20px;
}

.contactus a {
    color: white;
    text-decoration: none;
}
.contactus a:visited {
    color: white;
}
.contactus a:hover {
    color: red;
}
.contactus a:active {
    color: white;
}

a {
    color: white;
    text-decoration: none;
}
a:visited {
    color: white;
}
a:hover {
    color: red;
}
a:active {
    color: white;
}

@media (max-width: 1200px) {
    .header {
        flex-direction: column;
        align-items: center;
    }

    .spact, .head, .iap {
        width: 100%;
    }

    .menu {
        flex-direction: column; 
    }

    .items {
        font-size: 18px;
        padding: 10px 20px;
    }

    .names {
        width: 90%; 
    }

    .col {
        font-size: 16px;
    }

    .contactus {
        font-size: 18px; 
        padding: 15px;
        text-align: left;
    }
}