body {
    font-family: 'Courier New', Courier, monospace;
    color: #000000;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    text-align: center;
}
img {
    max-width: 100%;
    height: auto;
}
.content {
    background-color: #fff;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 600px;
}
.content-page {
    max-width: 600px;
}
@media (min-width: 768px) {
    .content-page {
        max-width: 800px;
    }
}
footer {
    font-size: 0.8em;
    margin-top: 20px;
}
a {
    color: #000000;
    text-decoration: underline;
    text-decoration-color: #000000;
}
a:hover {
    text-decoration: none;
}
.contact-button {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    padding: 10px 20px;
    margin: 10px 5px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.contact-button:hover {
    background-color: #333333;
}
.discreet-note {
    font-size: 0.8em;
    color: #666;
    margin-top: 40px;
    font-style: italic;
    opacity: 0.5;
}
.copyright {
    font-size: 0.75em;
    margin-top: 15px;
    color: #666;
}

.service-list {
    text-align: left;
    margin-top: 20px;
}
@media (min-width: 768px) {
    .service-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}
.service-item {
    background-color: #f5f5f5;
    padding: 3px 15px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}
.service-item h4 {
    text-align: center;
    margin-bottom: 5px;
}

.left-centered {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}