body {
    background-color: #ffffff;
    color: #1f1f1f;
    margin: 20px;
    font-family: Arial, sans-serif;
    text-align: center;
}

h1 {
    color: rgb(10, 2, 2);
    font-size: 36px;
    margin-bottom: 10px;
}

h2 {
    color: rgb(13, 4, 16);
    font-size: 28px;
    margin-top: 20px;
}

h3 {
    color: rgb(57, 9, 57);
    font-size: 22px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.center-text {
    text-align: center;
}

ul {
    padding: 15px 25px;
    display: inline-block;
    text-align: left;
    background-color: #f4f4f4;
    border-radius: 10px;
    margin-top: 15px;
}

li {
    margin-bottom: 8px;
    transition: 0.2s ease;
}

li:hover {
    color: #38bdf8;
    transform: translateX(5px);
}

.image-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.image-row img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-row img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

img {
    display: block;
    margin: 20px auto;
}

table {
    margin: 20px auto;
    border-collapse: collapse;
    background-color: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #1f1f1f;
}

th, td {
    padding: 12px 16px;
    border-bottom: 1px solid #333;
    text-align: left;
}

th {
    background-color: #e0e0e0;
    color: #1f1f1f;
    font-weight: bold;
}

tr:hover {
    background-color: #2c3e50;
    transition: 0.2s ease;
}

a {
    color: #0066cc;
    text-decoration: underline;
}

a:hover {
    color: #ff9800;
    text-decoration: underline;
}