/* ============================================
   Breakwater IT — custom scoped CSS
   Consolidated from inline <style> blocks across
   all 32 HTML pages for CSP compliance (no
   'unsafe-inline'). Each page references this
   file via <link rel="stylesheet" href="...">
   ============================================ */

/* ---- Service link hover (index + capability-statement) ---- */
.service-link {
    transition: all 0.2s ease-in-out;
}
.service-link:hover {
    color: #0051ff !important;
    padding-left: 6px;
}

/* ---- Page wrapper padding (service / guide / capability pages) ---- */
.service-page-wrapper,
.guide-page-wrapper,
.capability-page-wrapper {
    padding-top: 150px;
    padding-bottom: 100px;
}

/* ---- Pricing page wrapper ---- */
.pricing-page-wrapper {
    padding-top: 150px;
    padding-bottom: 100px;
    background-color: #f9f9fc;
}

/* ---- Booking page wrapper ---- */
.booking-page-wrapper {
    padding-top: 150px;
    padding-bottom: 100px;
    background-color: #f9f9fc;
    min-height: 100vh;
}

/* ---- Legal pages (privacy + terms) ---- */
.legal-page-wrapper {
    padding-top: 150px;
    padding-bottom: 100px;
}
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

/* ---- Pricing slider thumb colour ---- */
.form-range::-webkit-slider-thumb {
    background: #0051ff;
}