.body2 {
    background: #f7f9fc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    margin: 0;
    padding: 0
}

.content-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    border-radius: 10px
}

.heading-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    margin: 0 0 70px 0
}

.heading-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4e54c8, #8f94fb);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px
}

.flex-item {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    border-radius: 12px
}

.flex-item p {
    font-size: 1.3rem;
    font-family: Arial, Helvetica, sans-serif
}

.ul-list {
    padding-left: 20px;
    line-height: 1.6
}

.ul-list li::before {
    content: "\2022";
    color: #4e54c8;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1)
}

th,
td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd
}

th {
    background: linear-gradient(90deg, #4e54c8, #8f94fb);
    color: white;
    font-weight: bold
}

tr:nth-child(even) {
    background-color: #f9f9f9
}

caption {
    caption-side: top;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #4e54c8
}

p.contact {
    color: #4e54c8;
    font-size: 18px;
    font-weight: bold
}

p.note {
    color: red;
    padding: 20px 30px;
    font-size: 14px;
    font-style: italic
}

@media(max-width:768px) {
    .flex-container {
        flex-direction: column
    }
}