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

.top-header {
    background-color: white;
    color: black;
    padding: 10px 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    font-weight: bold;
}

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

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

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

.header-banner {
    background-color: white;
    padding: 40px 20px;
    text-align: center;
    color: #333;
}

.header-banner h1 {
    margin: 0;
    font-size: 2.5rem;
    border-bottom: 3px solid #dd22a8;
    display: inline-block;
    padding-bottom: 5px;
}

.services-main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Creates the Table Look */
.chess-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #ddd;
    background-color: #fff5ec;
}

.grid-image,
.grid-text {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.grid-image {
    background-color: white;
    padding: 0;
    /* Lets image touch the edges fully */
}

.grid-text {
    background-color: #fff5ec;
    /* Restores the pale peach to the text blocks */
}

.grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.grid-text h3 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 1.5rem;
}

.grid-text p {
    line-height: 1.6;
    color: #555;
}

.learn-more {
    color: hotpink;
    text-decoration: none;
    font-weight: 700;
}

.service-footer {
    margin-top: 40px;
    text-align: center;
    font-style: italic;
    color: #666;
}

/* Stacks into a single column on mobile */
@media (max-width: 768px) {

    .chess-grid {
        grid-template-columns: 1fr;
    }

    .grid-image,
    .grid-text {
        padding: 20px;
    }
}

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

.site-footer p {
    margin: 0;
}