body {
    background: #FFF4C9 !important;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

.footer-info-box {
    background-color: rgba(255,255,255,0.85);
    border: none;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.footer-info-box strong {
    font-weight: 700;
    color: #000000;
    text-shadow: none;
}

/* Flex layout for side-by-side sections */
.info-flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Make both columns consistent */
.footer-opening-hours p,
.footer-contact-details p {
    margin: 5px 0;
    font-size: 16px;
    color: #250000;
}

/* Links underneath */
.info-links {
    margin-top: 20px;
    text-align: center;
}

.info-link {
    display: inline-block;
    margin: 5px 10px;
    padding: 8px 14px;
    background-color: #D97A2B;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.info-link:hover {
    background-color: #b96522;
}

/* Mobile-friendly stacking */
@media (max-width: 600px) {
    .info-flex {
        flex-direction: column;
        text-align: center;
    }
}
strong {
  color: #B44A3F; /* your terracotta red */
  text-shadow: none;
}


/* HEADINGS */
h1 {
    color: #ED9121;
    font-size: 50px;
    text-align: center;
    margin-top: 10px;
}

/* Page hero */
.service-hero {
    text-align: center;
    padding: 20px 20px;
    color: #FFFFFF;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(2px);
    border-radius: 12px;
    margin: 20px auto 20px;
    max-width: 900px;
}

/* Accordion container */
.accordion-box {
    background: rgba(0,0,0,0.25);
    border-radius: 12px;
    margin: 20px auto;
    padding: 0;
    max-width: 900px;
    backdrop-filter: blur(2px);
}

/* Accordion title button */
.accordion-title {
    width: 100%;
    background: transparent;
    color: #fff;
    padding: 18px 20px;
    font-size: 1.2rem;
    text-align: left;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    transition: background 0.3s;
}

    .accordion-title:hover {
        background: rgba(255,255,255,0.1);
    }

/* Hidden content */
.accordion-content {
    display: none;
    padding: 20px;
    color: #fff;
    line-height: 1.6;
}

/* When active */
.accordion-box.active .accordion-content {
    display: block;
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-icon {
    width: 10vw;
    height: 10vw;
    object-fit: contain;
    border-radius: 6px;
}

/* Modern navigation buttons */
.nav-btn {
    background: #ED9121;
    color: white;
    border: none;
    padding: 12px 22px;
    margin: 0 8px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

    /* Hover effect */
    .nav-btn:hover {
        background: #d87f1c;
        transform: translateY(-2px);
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }

/* Mobile-friendly */
.top-nav {
    margin-top: 10px;
}

/* Center the navigation buttons */
.top-nav {
    display: flex;
    justify-content: center;
    gap: 12px; /* space between buttons */
    margin-top: 15px;
}

@media (max-width: 600px) {
    nav {
        flex-direction: column;
        align-items: center;
    }
}

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #333;
    color: #fff;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

#backToTop.show {
    opacity: 1;
    pointer-events: auto;
}

.opening-strong {
    text-shadow: none !important;
    color: #250000; /* or whatever colour you want */
    font-weight: bold;
}