body {
    background-color: #fff5ec;
    font-family: 'Frank Ruhl Libre', serif;
    margin: 0;
    padding: 0;
}

.top-header {
    background-color: white;
    color: black;
    padding: 15px 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    font-size: 18px;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-header a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-header a:hover {
    color: #ffb4a2;
}

.top-header img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    margin-right: auto;
}

.header-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 4px;
}

h1 {
    color: #333;
    font-family: 'Frank Ruhl Libre', serif;
    margin: 0;
    font-size: 50px;
    display: inline-block;
    padding-bottom: 5px;
    position: relative;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background-color: #dd22a8;
}

.page-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 10px auto 40px;
    padding: 0 20px;
}

.image-block {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.scatter.emergency-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    border: 3px solid #dd22a8;
    transform: rotate(-2deg);
}

.text-column {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.service-container {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 40px;
    max-width: 800px;
    margin: 20px auto 40px;
}

.service-container h2 {
    color: #333;
    display: block;
    text-align: center;
    margin-top: 0;
    font-size: 24px;
}

.service-container p {
    font-size: 20px;
    color: #444;
    line-height: 1.6;
    margin: 15px 0;
}

.service-container ul {
    font-size: 20px;
    color: #444;
    line-height: 1.6;
}

/* Stacks into a single column on mobile screens */
@media (max-width: 900px) {
    .page-content {
        flex-direction: column;
    }

    .image-block {
        justify-content: center;
        margin-bottom: 20px;
    }

    .scatter.emergency-image {
        transform: none;
        max-width: 420px;
        width: 80%;
    }
}

.site-footer {
    text-align: center;
    padding: 20px;
    color: #666;
    margin-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.site-footer p {
    margin: 0;
}