body { font-family: Arial, sans-serif; margin: 0; padding: 0; }
.container { width: 80%; margin: auto; padding: 20px; }
h1 { color: #C0392B; }
h2 { color: #000000; }
.header { display: flex; align-items: center; justify-content: space-between; }
.header img { width: 225px; }
.content { margin-top: 20px; display: flex; gap: 20px; }
.content-left { width: 70%; padding: 10px; font-size: clamp(1rem, 2.5vw, 1.5rem); }
.content-right { width: 30%; padding-top: 30px; }
.image-placeholder { width: 100%; aspect-ratio: 1; background-color: #f0f0f0; border: 0px; display: flex; align-items: center; justify-content: center; color: #666; overflow: hidden; }
.image-placeholder img { width: 125%; height: auto; }
.splitter { text-align: center; margin: 0; }
.splitter img { width: 100%; }
.services { margin-top: 0; font-size: clamp(1rem, 2.5vw, 1.5rem); background-color: #ebebeb; padding: 20px; }
.services-grid { display: flex; flex-direction: column; gap: 20px; }
.service-item { display: flex; align-items: flex-start; gap: 15px; }
.service-item img { width: 80px; height: 80px; object-fit: cover; flex-shrink: 0; }
.service-text { flex: 1; }
.footer { margin-top: 0; text-align: center; }
.footer img { width: 100%; height: auto; }
.radio-link-box {
    position: fixed;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #742a00;
    color: white;
    font-weight: bold;
    font-size: 16px;
    padding: 12px 24px 40px 24px ;
    text-decoration: none;
    border-radius: 8px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.radio-link-box:hover {
    background-color: #1e40af;
}

@media (max-width: 768px) {
    .content { flex-direction: column; }
    .content-left, .content-right { width: 100%; }
}