.page-template img{
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.page-template p img{
    margin-left: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.service-faqs {
    width: 100%;
    padding: 60px 20px;
    max-width: 700px;
    margin: auto;
}

.service-faqs__inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.service-faqs__title {
    margin: 0 0 30px;
    font-size: 36px;
    line-height: 1.2;
}

.service-faqs__list {
    border-top: 1px solid #dcdcdc;
}

.service-faq {
    margin: 0;
    border-bottom: 1px solid #dcdcdc;
}

.service-faq__question {
    position: relative;
    padding: 22px 50px 22px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
}

.service-faq__question::-webkit-details-marker {
    display: none;
}

.service-faq__question::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 5px;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-50%);
}

.service-faq[open] .service-faq__question::after {
    content: "−";
}

.service-faq__answer {
    padding: 0 50px 22px 0;
}

.service-faq__answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

.service-faq__question:hover {
    opacity: 0.7;
}

.service-faq__question:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}



:root{
  --navy:#0f2a4f;
  --navy-deep:#0b2140;
  --blue:#1c5aa0;
  --blue-tint:#eaf1f9;
  --cream:#faf7f1;
  --border:#e2ddd0;
  --text:#2b2b2b;
  --text-muted:#6b6f76;
}
*{box-sizing:border-box}
body{margin:0;font-family:'Public Sans',system-ui,sans-serif;color:var(--text);background:var(--cream)}
h1,h2,h3{color:var(--navy);font-weight:800;margin:0 0 16px}
p{line-height:1.7;font-size:15.5px;color:#3a3a3a;margin:0 0 14px}
a{color:var(--blue);text-decoration:none}
a:hover{color:var(--navy);text-decoration:underline}
img{max-width:100%;display:block}
.center{text-align:center;padding-top:1rem;padding-bottom:1rem}
.lead{max-width:640px;margin:0 auto 40px;color:var(--text-muted)}
.note{margin-top:20px;color:#4a4a4a;font-size:14.5px}
.narrow{max-width:760px;margin:0 auto}

/* buttons */
.button{
    border-radius:6px!important;
    -webkit-border-radius:6px!important;
    -moz-border-radius:6px!important;
    -ms-border-radius:6px!important;
    -o-border-radius:6px!important;
}
.btn{ display:inline-block; font-weight:700; font-size:15px; padding:13px 24px; border-radius:6px; border:none; cursor:pointer; -webkit-border-radius:6px; -moz-border-radius:6px; -ms-border-radius:6px; -o-border-radius:6px; }
.btn-primary, .button.primary{background:var(--blue)!important;color:#fff}
.btn-primary:hover, .button.primary:hover{background:#00467F!important;color:#fff!important}

.btn-small{font-size:14px;padding:10px 18px}
.btn-white{background:#fff;color:var(--navy)}
.btn-outline-white{border:2px solid #fff;color:#fff;background:transparent;padding:11px 22px}
.btn:hover{text-decoration:none;}
.btn-white-to-green:hover{
    border: 2px solid #A3C071!important;
    color: #A3C071!important;
}
.btn-bg-white-to-blue:hover{
    background:#00467F!important;
    color: #fff!important;
}

/* header */
.site-header{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 64px;background:#fff;border-bottom:1px solid var(--border);position:sticky;top:0;z-index:40;flex-wrap:wrap}
.brand{display:flex;align-items:center;gap:10px}
.brand-mark{width:38px;height:38px;border-radius:8px;background:var(--navy);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;font-size:15px}
.brand-name{font-weight:800;font-size:17px;color:var(--navy)}
.header-actions{display:flex;align-items:center;gap:18px;flex-wrap:wrap}
.tel-link{font-weight:700;color:var(--navy);font-size:15px}
.breadcrumb{padding:10px 64px 0;font-size:13px;color:var(--text-muted)}
.breadcrumb span{margin:0 6px}

/* hero */
.hero{position:relative;margin:16px 64px 0;border-radius:14px;overflow:hidden;min-height:420px;display:flex;align-items:flex-end}
.hero-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(15,42,79,.15) 0%,rgba(15,42,79,.85) 85%)}
.hero-content{position:relative;padding:56px;max-width:720px;color:#fff;display:flex;flex-direction:column;gap:14px}
.hero-content h1{color:#fff;font-size:44px;line-height:1.1}
.hero-content p{color:#e9edf3;font-size:17px}
.hero-ctas{display:flex;gap:12px;flex-wrap:wrap;margin-top:6px}
.trust-strip{display:flex;gap:22px;flex-wrap:wrap;margin:10px 0 0;padding:0;list-style:none;font-size:13.5px;color:#e9edf3}

/* split sections */
.split{display:flex;gap:56px;align-items:center;padding:88px 64px;flex-wrap:wrap}
.split-reverse{flex-wrap:wrap-reverse}
.split-white{background:#fff}
.split-text{flex:1 1 380px;min-width:280px}
.split-img{flex:1 1 380px;min-width:280px;width:100%;max-width:460px;height:340px;object-fit:cover;border-radius:12px}
.process-img{height:420px;max-width:400px}
.link-row{display:flex;gap:18px;flex-wrap:wrap;margin-top:8px;font-size:13.5px;font-weight:600}

/* generic section */
.section-page{ padding:88px 64px; border-radius:20px; -webkit-border-radius:20px; -moz-border-radius:20px; -ms-border-radius:20px; -o-border-radius:20px; }
.section-white{background:#fff}
.section-tint{background:var(--blue-tint)}
.section-navy{background:var(--navy);color:#fff}
.section-navy h2,.section-navy h3{color:#fff}
.section-navy p{color:#d6e0ec}

/* cards */
.card-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:22px}
.card{border:1px solid var(--border);border-radius:12px;overflow:hidden;display:flex;flex-direction:column;background:#fff}
.card img,.card .image-placeholder{width:100%;height:170px;object-fit:cover}
.card-body{padding:18px;display:flex;flex-direction:column;gap:8px;}
.card-body h3{font-size:17px;margin:0}
.card-body p{font-size:14px;color:#4a4a4a;margin:0}
.card-link{font-size:13.5px;font-weight:600}
.tag{font-size:12px;font-weight:700;color:var(--blue);text-transform:uppercase;letter-spacing:.03em}
.before-after{display:grid;grid-template-columns:1fr 1fr}
.before-after img{height:150px}

/* placeholder */
.image-placeholder{background:repeating-linear-gradient(45deg,#f0ece0,#f0ece0 10px,#e6e0d2 10px,#e6e0d2 20px);border:2px dashed #b9b09a;color:#8a8064;display:flex;align-items:center;justify-content:center;text-align:center;font-size:13px;font-weight:600;min-height:170px}

/* table */
.table-wrap{overflow-x:auto;border:1px solid var(--border);border-radius:12px}
table{width:100%;border-collapse:collapse;font-size:14px;min-width:640px}
thead tr{background:var(--navy);color:#fff}
th{text-align:left;padding:14px 16px;font-weight:700}
td{padding:12px 16px!important;border-bottom:1px solid var(--border)}
tbody tr:nth-child(even){background:var(--cream)}
.row-label{font-weight:700;color:var(--navy)}

/* why bluestone */
.col-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:4rem;max-width:1100px;margin:0 auto}
.icon{font-size:26px;margin-bottom:10px}
.testimonial{max-width:560px;margin:40px auto 0;border-left:3px solid #4d84c4;padding-left:18px;font-style:italic;color:#e5ebf2;font-size:14.5px}

/* process */
.steps{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:20px;counter-reset:step}
.steps li{position:relative;padding-left:46px;font-size:15px;line-height:1.6;color:#3a3a3a;counter-increment:step}
.steps li::before{content:counter(step);position:absolute;left:0;top:0;width:32px;height:32px;border-radius:50%;background:var(--blue);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700}

/* faq (native <details> accordion, pure CSS, no JS) */
.faq-list{max-width:820px;margin:0 auto;display:flex;flex-direction:column;gap:10px}
.faq-item{border:1px solid var(--border);border-radius:10px;overflow:hidden;background:#fff}
.faq-question{list-style:none;text-align:left;padding:16px 20px;display:flex;justify-content:space-between;align-items:center;gap:12px;cursor:pointer;font:inherit;font-weight:700;font-size:15px;color:var(--navy)}
.faq-question::-webkit-details-marker{display:none}
.faq-question::marker{content:""}
.faq-question:focus-visible{outline:2px solid var(--blue);outline-offset:-2px}
.faq-icon{font-size:20px;line-height:1;color:var(--blue);flex:none}
.faq-icon::before{content:"+"}
.faq-item[open] .faq-icon::before{content:"\2212"}
.faq-answer{padding:0 20px 18px;font-size:14.5px;line-height:1.65;color:#4a4a4a}
.faq-answer p{margin:0}

/* form */
.contact-line{font-size:14.5px;color:#d6e0ec}
.quote-form{background:#fff;border-radius:12px;padding:32px;color:var(--text)}
.quote-form h3{font-size:18px;margin-bottom:18px}
.form-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:14px}
label{display:flex;flex-direction:column;gap:5px;font-size:13px;font-weight:600;color:var(--navy)}
.full-width{margin-top:14px}
input,select,textarea{padding:10px 12px;border:1px solid #d5cfc0;border-radius:6px;font-size:14px;font-family:inherit}
textarea{resize:vertical}
.quote-form .btn{margin-top:18px}
.form-note{margin:12px 0 0;font-size:12.5px;color:var(--text-muted)}

/* footer */
.site-footer{padding:32px 64px 90px;background:var(--navy-deep);color:#aebbcb;font-size:13px;text-align:center;line-height:1.8}

/* sticky mobile bar */
.mobile-bar{position:fixed;bottom:0;left:0;right:0;display:none;gap:1px;background:var(--navy);z-index:50}
.mobile-bar a{flex:1;text-align:center;padding:14px;color:#fff;font-weight:700;font-size:14px}
.mobile-bar-quote{background:var(--blue)}

@media (max-width: 720px){
  .site-header,.breadcrumb,.hero,.split,.section-page{padding-left:20px;padding-right:20px}
  .hero{margin-left:20px;margin-right:20px}
  .hero-content{padding:28px}
  .hero-content h1{font-size:28px}
  .mobile-bar{display:flex}
  .site-footer{padding-bottom:90px}
}
.hide-element{display:none;}




@media screen and (max-width: 767px) {
    .page-template p img{
        width: 100%;
    }
    .service-faqs {
        padding: 40px 20px;
    }

    .service-faqs__title {
        margin-bottom: 20px;
        font-size: 28px;
    }

    .service-faq__question {
        padding: 18px 40px 18px 0;
        font-size: 17px;
    }

    .service-faq__answer {
        padding: 0 40px 18px 0;
    }

    .service-faq__answer p {
        font-size: 15px;
    }
}

/* ---- Concrete sleeper page additions (merged) ---- */
.two-col-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:22px}
.info-card{border:1px solid var(--border);border-radius:12px;padding:24px;display:flex;flex-direction:column;gap:10px;background:#fff}
.info-card h3{font-size:18px;margin:0}
.info-card p{font-size:14.5px;color:#4a4a4a;margin:0}

.three-col{grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.finish-card{border-radius:12px;overflow:hidden;border:1px solid var(--border);background:#fff}
.finish-card img,.finish-card .image-placeholder{width:100%;height:160px;object-fit:cover}
.finish-body{padding:14px}
.finish-body h3{margin:0 0 4px;font-size:15px}
.finish-body p{margin:0;font-size:13.5px;color:var(--text-muted)}

/* ---- Sloping / difficult blocks page additions (merged) ---- */
.split-tint{background:var(--blue-tint)}
.light-link{color:#fff;font-weight:700}
.four-col-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:22px}
.hero-img.image-placeholder{border:none;border-radius:0}
.split-img.image-placeholder{min-height:340px}
.contact-line-dark{font-size:14.5px;color:#4a4a4a}

/* ---- Cost guide page additions (merged) ---- */
.tbd{color:#8a8064;font-style:italic}
.hero-navy{background:var(--navy)}
.five-col-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px}
.checklist{margin:0;padding-left:22px;display:flex;flex-direction:column;gap:8px;color:#3a3a3a;font-size:15px;line-height:1.6}