html, body {
    direction: rtl;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
body {
    padding: 20px;
    box-sizing: border-box;
    background-color: white;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}
.client {
    margin-bottom: 5px;
}
.logo-client {
    width: 150px;
    border-radius: 10px;
    align-self: center;
}
img {
    max-width: 100%;
    height: auto;
}
.logo-tracer {
    padding-top: 20px;
    width: 150px;
    align-self: center;
    margin-top: auto;
}
.content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.text, .notice {
    width: 100%;
    text-align: center;
    border: none;
    padding-bottom: 20px;
    background-color: #ffcccc; /* Light red background */
    color: #cc0000; /* Darker red text color */
    padding: 10px 20px;
    border-radius: 10px; /* Rounded borders */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Slight shadow for depth */
    margin: 20px 0;
}
.map {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    width: calc(100% - 60px);
    margin: 0 auto;
}
.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}