:root {
    --primary-blue: #007BFF;
    --dark-blue: #00234B;
    --light-bg: #F8F9FA;
    --silver-grey-bg: #e8ecf1;
    --text-primary: #343A40;
    --text-secondary: #6C757D;
    --white: #FFFFFF;
    --border-color: #DEE2E6;
    --hero-gradient: linear-gradient(135deg, #001a3d 0%, #00234B 40%, #003d7a 100%);
    --shadow-card: 0 4px 24px rgba(0, 35, 75, 0.08);
    --shadow-hover: 0 12px 40px rgba(0, 123, 255, 0.18);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
    background: var(--silver-grey-bg);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.7;
    overflow-x: hidden;
}
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), #00d4ff);
    z-index: 200;
    width: 0%;
}
.container { max-width: 960px; margin: 0 auto; padding: 0 20px; }
.nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s;
}
.nav.nav--solid {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 35, 75, 0.1);
}
.nav .container { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.nav-brand picture { display: block; line-height: 0; max-width: 100%; }
.nav-brand picture img,
.nav-brand img {
    display: block;
    max-height: 52px;
    width: auto !important;
    height: auto !important;
    max-width: 220px;
    object-fit: contain;
    object-position: left center;
    transition: filter 0.3s;
}
.nav:not(.nav--solid) .nav-brand img { filter: brightness(0) invert(1); }
.nav-links a { margin: 0 10px; text-decoration: none; font-weight: 500; font-size: 0.92rem; transition: color 0.25s; }
.nav:not(.nav--solid) .nav-links a { color: rgba(255,255,255,0.92); }
.nav:not(.nav--solid) .nav-links a:hover { color: #fff; }
.nav.nav--solid .nav-links a { color: var(--text-primary); }
.nav.nav--solid .nav-links a:hover { color: var(--primary-blue); }
.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.btn-primary { background: var(--primary-blue); color: var(--white); border: none; }
.btn-primary:hover { background: #0069D9; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,123,255,0.35); }
.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }
.hamburger { display: none; flex-direction: column; cursor: pointer; padding: 5px; z-index: 101; }
.hamburger span { width: 25px; height: 3px; margin: 3px 0; transition: 0.3s; border-radius: 2px; }
.nav:not(.nav--solid) .hamburger span { background: #fff; }
.nav.nav--solid .hamburger span { background: var(--text-primary); }
.hamburger.active span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 1000;
    padding: 16px 20px;
}
.mobile-menu.active { display: block; }
.mobile-menu a {
    display: block;
    padding: 14px 0;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}
.mobile-menu a:last-child { border-bottom: none; }
.page-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 100px;
    background: var(--hero-gradient);
    overflow: hidden;
    color: #fff;
    isolation: isolate;
}
/* Fond décoratif statique (évite le scintillement du canvas animé) */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.4;
}
#hero-canvas {
    display: none;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.32;
    transform: translateZ(0);
    will-change: auto;
    pointer-events: none;
}
.hero-blob--1 { width: 400px; height: 400px; background: var(--primary-blue); top: -10%; right: -5%; }
.hero-blob--2 { width: 300px; height: 300px; background: #00d4ff; bottom: 10%; left: -8%; }
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
    transform: translateZ(0);
}
.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    animation: fadeDown 0.8s ease both;
}
.page-hero h1 {
    font-size: clamp(1.75rem, 4.5vw, 2.65rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1rem;
    max-width: 720px;
    animation: fadeDown 0.8s 0.1s ease both;
}
.hero-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.88);
    max-width: 640px;
    margin: 0 0 1.75rem;
    animation: fadeDown 0.8s 0.2s ease both;
}
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2rem;
    animation: fadeDown 0.8s 0.3s ease both;
}
.hero-stat {
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    transition: background 0.25s ease;
}
.hero-stat:hover { background: rgba(255, 255, 255, 0.16); }
.hero-stat strong { display: block; font-size: 1.35rem; font-weight: 800; color: #fff; }
.hero-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.03em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; animation: fadeDown 0.8s 0.4s ease both; }
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
main {
    max-width: 960px;
    margin: 0 auto;
    padding: 28px 20px 60px;
    position: relative;
    z-index: 5;
}
main.service-page-main {
    max-width: 1140px;
}
/* Pages détail service (creation, modification, cessation) */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: stretch;
    margin: 40px auto;
    max-width: 1200px;
    width: 100%;
}
.service-detail-grid__media {
    text-align: center;
}
.service-detail-grid__media img {
    width: 100%;
    max-width: 400px;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.service-detail-content {
    text-align: left;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}
.service-includes-list {
    list-style-type: '✓ ';
    padding-left: 20px;
    line-height: 1.8;
    text-align: left;
    margin: 0;
    width: 100%;
}
.service-includes-list li {
    margin-bottom: 0.35rem;
}
.service-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
    margin-top: 0;
}
.service-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 35, 75, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 123, 255, 0.2);
}
.service-card__header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 28px 0;
}
.service-card__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.service-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
}
.service-card--create .service-card__icon {
    background: linear-gradient(145deg, #007BFF, #0056b3);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.35);
}
.service-card--modify .service-card__icon {
    background: linear-gradient(145deg, #00234B, #004080);
    box-shadow: 0 8px 20px rgba(0, 35, 75, 0.3);
}
.service-card--close .service-card__icon {
    background: linear-gradient(145deg, #475569, #334155);
    box-shadow: 0 8px 20px rgba(51, 65, 85, 0.35);
}
.service-card__heading { flex: 1; min-width: 0; }
.service-card__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-blue);
    background: rgba(0, 123, 255, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
}
.service-card--modify .service-card__tag {
    color: var(--dark-blue);
    background: rgba(0, 35, 75, 0.08);
}
.service-card--close .service-card__tag {
    color: #475569;
    background: rgba(71, 85, 105, 0.12);
}
.service-card h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.28rem);
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0;
    line-height: 1.35;
}
.service-card__body {
    padding: 20px 28px;
    flex: 1;
}
.service-card__body p {
    margin: 0 0 1rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.75;
}
.service-card__body p:last-child { margin-bottom: 0; }
.service-card__list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.service-card__list li {
    position: relative;
    padding: 12px 14px 12px 44px;
    background: var(--light-bg);
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-primary);
    border: 1px solid rgba(0, 35, 75, 0.06);
}
.service-card__list li::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23007BFF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}
.service-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 28px 28px;
    padding: 14px 24px;
    background: var(--primary-blue);
    color: var(--white) !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    border-radius: 10px;
    border: none;
    transition: background 0.25s ease, transform 0.25s ease;
}
.service-card__cta::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.25s ease;
}
.service-card__cta:hover {
    background: #0069D9;
    transform: translateY(-2px);
}
.service-card__cta:hover::after { transform: translateX(4px); }
.service-card--modify .service-card__cta { background: var(--dark-blue); }
.service-card--modify .service-card__cta:hover { background: #003566; }
.service-card--close .service-card__cta { background: #475569; }
.service-card--close .service-card__cta:hover { background: #334155; }
.content-block {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    margin-top: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,35,75,0.06);
}
.content-block h2 {
    font-size: 1.35rem;
    color: var(--dark-blue);
    margin: 0 0 1.25rem;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-bg);
}
/* Listes à puces bleues : pages département uniquement (pas les pages services) */
main ul:not(.service-card):not(.process-block):not(.timeline-block):not(.why-block):not(.service-card__list):not(.faq-checklist) {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}
main ul:not(.service-card):not(.process-block):not(.timeline-block):not(.why-block):not(.service-card__list):not(.faq-checklist) li {
    padding: 8px 0 8px 32px;
    position: relative;
    transition: transform 0.2s;
}
main ul:not(.service-card):not(.process-block):not(.timeline-block):not(.why-block):not(.service-card__list):not(.faq-checklist) li:hover {
    transform: translateX(4px);
}
main ul:not(.service-card):not(.process-block):not(.timeline-block):not(.why-block):not(.service-card__list):not(.faq-checklist) li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23007BFF'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    margin-top: 0.75rem;
    transition: gap 0.25s;
}
.card-link:hover { gap: 12px; }
.card-link::after { content: '→'; }
main a[href*=".html"]:not(.card-link):not(.btn) {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
main a[href*=".html"]:not(.card-link):not(.btn):hover { border-bottom-color: var(--primary-blue); }
.faq-list { margin-top: 0.5rem; }
.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--light-bg);
    transition: box-shadow 0.3s, border-color 0.3s;
}
.faq-item.is-open {
    border-color: rgba(0,123,255,0.35);
    box-shadow: 0 4px 16px rgba(0,123,255,0.1);
    background: var(--white);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 1.4;
}
.faq-question:hover { color: var(--primary-blue); }
.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0,123,255,0.1);
    position: relative;
    transition: transform 0.35s, background 0.35s;
}
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    margin: -1px 0 0 -6px;
    background: var(--primary-blue);
    border-radius: 1px;
}
.faq-icon::after { transform: rotate(90deg); }
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--primary-blue); }
.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after { background: #fff; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
    padding: 0 20px 18px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}
.faq-answer-inner p { margin: 0; }
.trust-grid { display: grid; gap: 16px; margin-top: 1rem; }
@media (min-width: 600px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-item {
    padding: 20px;
    background: linear-gradient(135deg, rgba(0,123,255,0.06), transparent);
    border-radius: 12px;
    border: 1px solid rgba(0,123,255,0.12);
    font-size: 0.92rem;
    font-weight: 500;
    text-align: center;
    transition: transform 0.3s;
}
.trust-item:hover { transform: scale(1.03); }
.info-box {
    background: linear-gradient(145deg, var(--dark-blue), #003566);
    color: rgba(255,255,255,0.9);
    padding: 32px;
    margin-top: 28px;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,35,75,0.25);
}
.info-box h3 { color: #fff; margin: 0 0 1rem; font-size: 1.2rem; }
.info-box a { color: #7dd3fc; font-weight: 600; }
.info-box a:hover { color: #fff; }
.page-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.footer {
    background: var(--dark-blue);
    color: rgba(255,255,255,0.85);
    padding: 48px 20px;
    text-align: center;
}
.footer p { margin: 6px 0; font-size: 0.9rem; }
.footer a { color: rgba(255,255,255,0.95); text-decoration: underline; }
.footer a:hover { color: white; }
.footer-siren { letter-spacing: 2px; }
/* Bouton WhatsApp flottant (même style que blog.css) */
a.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.2s ease;
}
a.whatsapp-float:hover {
    transform: scale(1.08);
}
a.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    pointer-events: none;
}
/* Pages département : <motion.div class="whatsapp-float"><a> */
.whatsapp-float:not(a) {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}
.whatsapp-float:not(a) a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.2s ease;
}
.whatsapp-float:not(a) a:hover {
    transform: scale(1.08);
}
.whatsapp-float:not(a) svg {
    width: 28px;
    height: 28px;
    fill: white;
    pointer-events: none;
}
/* Page mentions légales */
.legal-hero {
    position: relative;
    min-height: 220px;
    padding: 100px 20px 48px;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.legal-hero__inner {
    max-width: 800px;
    margin: 0 auto;
}
.legal-hero h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px;
}
.legal-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}
.legal-page-section {
    padding: 48px 0 80px;
}
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    padding: 48px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 35, 75, 0.08);
}
.legal-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-top: 2.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-blue);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p {
    margin: 0 0 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
}
.legal-content .legal-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.legal-content .legal-line {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
}
.legal-content .legal-line strong {
    font-weight: 600;
    color: var(--dark-blue);
    margin-right: 0.5rem;
}
.legal-content a {
    color: var(--primary-blue);
    text-decoration: none;
}
.legal-content a:hover { text-decoration: underline; }
.legal-content .btn-primary { margin-top: 2rem; color: var(--white) !important; }
@media (max-width: 768px) {
    .legal-hero { padding: 90px 16px 40px; }
    .legal-content { padding: 24px 20px; }
    .legal-content h2 { font-size: 1.1rem; }
    .legal-page-section { padding: 32px 0 60px; }
}
@media (max-width: 768px) {
    .nav-links { display: none !important; }
    .hamburger { display: flex !important; }
    .page-hero { min-height: auto; padding: 110px 20px 80px; }
    main { padding-top: 20px; }
    main.service-page-main {
        padding-left: 10px;
        padding-right: 10px;
    }
    .service-page-main .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }
    .service-page-main .section-subtitle {
        max-width: 94%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
        padding-left: 0;
        padding-right: 0;
        overflow-wrap: break-word;
        -webkit-hyphens: auto;
        hyphens: auto;
    }
    .service-page-main .section > p[style*="text-align: center"],
    .service-page-main .section-light > p[style*="text-align: center"] {
        max-width: 94%;
        margin-left: auto;
        margin-right: auto;
    }
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: none;
        margin: 0;
    }
    .service-detail-grid__media img {
        max-width: 100%;
        width: 100%;
        height: auto;
        min-height: 200px;
        max-height: 280px;
    }
    .service-detail-content {
        padding: 1.25rem;
        max-width: 100%;
        overflow-wrap: break-word;
        -webkit-hyphens: auto;
        hyphens: auto;
    }
    .service-page-main p,
    .service-page-main .service-includes-list {
        overflow-wrap: break-word;
        -webkit-hyphens: auto;
        hyphens: auto;
    }
    .service-page-main .process-block,
    .service-page-main .timeline-block,
    .service-page-main .why-block {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 1.25rem;
    }
}
