body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: white;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

header {
    background: #fff;
    color: #333;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #dddddd;
}

header img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid #333;
    object-fit: cover;
}

header h1 {
    margin: 0;
    font-size: 28px;
}

header p {
    margin: 0;
    font-size: 18px;
}

section {
    padding: 20px 40px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #dddddd;
}

section h2 {
    color: #333;
    font-size: 22px;
    margin-bottom: 10px;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.styled-table th, .styled-table td {
    padding: 12px;
    border: 1px solid #dddddd;
    text-align: left;
}

.styled-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.styled-table tr td:first-child {
	width: 140px;
}

.styled-list {
    list-style-type: decimal;
    padding-left: 20px;
}

.styled-list li {
    margin-bottom: 8px;
}

footer {
    text-align: center;
    padding: 20px 0;
    background: #fff;
    color: #333;
}

@media screen and (max-width: 768px) {
    header, section, footer {
        padding: 20px;
    }
}

.whatsapp-button, .telegram-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}

.whatsapp-button {
    background-color: #25D366;
}

.telegram-button {
    background-color: #0088cc;
}

