.p1 {
    padding: 40px 0;
    width: 100%;
}

.p1 .container {
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
}

.p1 .mesh-photo {
    height: 100%;
    width: 55vw;
    object-fit: cover;
}

.p1 .serve-info {
    width: 30vw;
}

.p1 .serve-name {
    font-size: 30px;
    font-weight: bolder;
    color: #1f3961;
}

.p1 .serve-detail {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p1 .serve-detail p {
    letter-spacing: 2px;
    line-height: 1.2;
}

.p2 {
    padding-bottom: 40px;
    width: 100%;
}

.p2 .container {
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p2 .table-name {
    font-size: 30px;
    font-weight: bolder;
    color: #1f3961;
}

.p2 .gap-line {
    background-color: #1f3961;
    height: 5px;
    width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}

th, td {
    border: 1px solid #ccc;
    padding: 12px 0;
    text-align: center;
}

thead th {
    background-color: #eeeeee;
    color: #000000;
    font-weight: bold;
}

tbody tr:nth-child(even) {
    background-color: #eeeeee;
}

tfoot td {
    padding: 12px 0;
}

@media (max-width: 768px) {
    .p1 {
        padding: 0;
        width: 100%;
    }

    .p1 .container {
        flex-direction: column;
        padding: 0;
    }

    .p1 .mesh-photo {
        height: 40vh;
        width: 100%;
        object-fit: cover;
    }

    .p1 .serve-info {
        padding: 20px 12px;
        width: 100%;
    }

    .p1 .serve-detail {
        padding-top: 20px;
    }

    .p1 .serve-detail p {
        line-height: 1.5;
    }

    .p2 {
        padding-bottom: 20px;
    }

    .p2 .container {
        padding: 0 12px;
        gap: 20px;
    }
}