body {
    font-family: Arial, sans-serif, Tahoma;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #000000;
    font-size: 13px;
}
.container {
    width: 100%;
    max-width: 600px; /* Changed max width for the content */
    margin: 0 auto; /* Center the table */
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-collapse: collapse; /* Ensure no gaps between table cells */
}
.content {
    padding: 20px;
}
.logo {
    text-align: center;
    padding: 40px 0; /* Spacing around the logo */
}
.logo img {
    max-width: 150px; /* Set max width for logo */
}
.content-text {
    padding: 20px;
    text-align: left;
}
.buttons {
    text-align: center;
    padding: 40px 0; /* Spacing around the buttons */
}
.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 13px;
    border-radius: 20px; /* Semi-rounded corners */
    text-decoration: none;
    font-weight: bold;
}
.button-black {
    background-color: #000000;
    color: #ffffff;
}
.button-yellow {
    background-color: #ffcd07;
    color: #000000;
    transition: color 0.3s ease;
}
.button-yellow:hover {
    color: #ffffff;
}
.social-media {
    text-align: center;
    padding: 20px 0;
}
.social-media a {
    margin: 0 10px;
}
.social-media img {
    width: 24px;
    height: 24px;
}
.disclaimer {
    font-size: 10px;
    color: #c6c7c7;
    padding: 20px;
    line-height: 1.6;
    text-align: justify;
}
.disclaimer h4 {
    margin-top: 20px;
    font-size: 10px;
    color: #c6c7c7;
    font-weight: bold;
}
.disclaimer p {
    margin-bottom: 10px;
}
