:root {
--color-brand: #0d6b6e;
--color-cta: #f5a623;
--text-dark: #222;
--text-muted: #666;
--border: #ddd;
--bg-light: #f4f7f7;
--bg-white: #fff;
}

*, *::before, *::after {
box-sizing: border-box;
}

html, body {
overflow-x: hidden;
}

img, video, iframe, svg, canvas {
max-width: 100%;
height: auto;
}

.btn-cta {
display: inline-flex;
align-items: center;
gap: 8px;
background: var(--color-cta);
color: #fff;
font-weight: 700;
padding: 14px 28px;
border-radius: 6px;
text-decoration: none;
border: none;
cursor: pointer;
transition: background-color 0.2s;
}

.btn-cta:hover {
background: #d4891a;
}

.btn-secondary {
display: inline-flex;
align-items: center;
background: transparent;
color: #fff;
font-weight: 700;
padding: 13px 28px;
border-radius: 6px;
text-decoration: none;
border: 2px solid #fff;
transition: background-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
background: #fff;
color: var(--color-brand);
}

.btn-outline {
display: inline-flex;
align-items: center;
background: transparent;
color: var(--color-brand);
font-weight: 700;
padding: 13px 28px;
border-radius: 6px;
text-decoration: none;
border: 2px solid var(--color-brand);
transition: background-color 0.2s, color 0.2s;
}

.btn-outline:hover {
background: var(--color-brand);
color: #fff;
}

.services-hero {
background: var(--color-brand);
padding: 80px 24px 72px;
text-align: center;
}

.services-hero__inner {
max-width: 760px;
margin: 0 auto;
}

.services-hero__title {
font-size: 2.4rem;
font-weight: 700;
color: #fff;
margin: 0 0 20px;
line-height: 1.6;
}

.services-hero__subtitle {
font-size: 1.1rem;
color: #c8e8e9;
margin: 0 0 36px;
line-height: 1.6;
}

.services-hero__ctas {
display: flex;
flex-wrap: wrap;
gap: 16px;
justify-content: center;
margin-bottom: 16px;
}

.services-hero__mention {
font-size: 13px;
color: #a8d5d6;
line-height: 1.6;
}

.services-list {
background: var(--bg-light);
padding: 72px 24px;
}

.services-container {
max-width: 1200px;
margin: 0 auto;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 32px;
}

.service-card {
background: var(--bg-white);
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 12px rgba(0,0,0,0.08);
display: flex;
flex-direction: column;
transition: box-shadow 0.2s;
}

.service-card:hover {
box-shadow: 0 6px 20px rgba(0,0,0,0.13);
}

.service-card__image-wrap {
width: 100%;
height: 260px;
overflow: hidden;
}

.service-card__image-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.service-card__body {
padding: 28px 28px 32px;
display: flex;
flex-direction: column;
flex: 1;
}

.service-card__title {
font-size: 1.4rem;
font-weight: 700;
color: var(--text-dark);
margin: 0 0 14px;
line-height: 1.6;
}

.service-card__title a {
color: var(--color-brand);
text-decoration: none;
transition: color 0.2s;
}

.service-card__title a:hover {
color: #095255;
}

.service-card__desc {
font-size: 1rem;
color: var(--text-muted);
line-height: 1.6;
margin: 0 0 18px;
flex: 1;
}

.service-card__price {
font-size: 0.95rem;
font-weight: 700;
color: var(--color-brand);
margin: 0 0 22px;
line-height: 1.6;
}

.btn-cta--card {
align-self: flex-start;
padding: 12px 24px;
font-size: 0.95rem;
}

.services-cta-band {
background: var(--color-brand);
padding: 64px 24px;
}

.services-cta-band__inner {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 32px;
}

.services-cta-band__text {
flex: 1 1 400px;
}

.services-cta-band__title {
font-size: 1.7rem;
font-weight: 700;
color: #fff;
margin: 0 0 12px;
line-height: 1.6;
}

.services-cta-band__sub {
font-size: 1rem;
color: #c8e8e9;
margin: 0;
line-height: 1.6;
}

.services-cta-band__actions {
display: flex;
flex-wrap: wrap;
gap: 16px;
align-items: center;
flex-shrink: 0;
}

.services-cta-band__actions .btn-outline {
border-color: #fff;
color: #fff;
}

.services-cta-band__actions .btn-outline:hover {
background: #fff;
color: var(--color-brand);
}

.services-reassurance {
background: var(--bg-white);
padding: 72px 24px;
}

.services-reassurance__title {
font-size: 1.8rem;
font-weight: 700;
color: var(--text-dark);
text-align: center;
margin: 0 0 48px;
line-height: 1.6;
}

.services-reassurance__grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 24px;
}

.reassurance-item {
background: var(--bg-light);
border-radius: 8px;
padding: 32px 24px;
text-align: center;
}

.reassurance-item__icon {
color: var(--color-brand);
margin-bottom: 18px;
display: flex;
justify-content: center;
}

.reassurance-item__title {
font-size: 1.1rem;
font-weight: 700;
color: var(--text-dark);
margin: 0 0 10px;
line-height: 1.6;
}

.reassurance-item__text {
font-size: 0.95rem;
color: var(--text-muted);
line-height: 1.6;
margin: 0;
}

@media (max-width: 768px) {
.services-hero {
padding: 56px 20px 52px;
}

.services-hero__title {
font-size: 1.7rem;
}

.services-hero__subtitle {
font-size: 1rem;
}

.services-hero__ctas {
flex-direction: column;
align-items: center;
}

.btn-cta,
.btn-secondary,
.btn-outline {
width: 100%;
justify-content: center;
}

.services-list {
padding: 48px 20px;
}

.services-grid {
grid-template-columns: 1fr;
gap: 24px;
}

.service-card__image-wrap {
height: 200px;
}

.service-card__body {
padding: 20px 20px 24px;
}

.service-card__title {
font-size: 1.2rem;
}

.btn-cta--card {
align-self: stretch;
justify-content: center;
}

.services-cta-band {
padding: 48px 20px;
}

.services-cta-band__inner {
flex-direction: column;
text-align: center;
}

.services-cta-band__title {
font-size: 1.4rem;
}

.services-cta-band__actions {
flex-direction: column;
width: 100%;
}

.services-cta-band__actions .btn-cta,
.services-cta-band__actions .btn-outline {
width: 100%;
justify-content: center;
}

.services-reassurance {
padding: 48px 20px;
}

.services-reassurance__title {
font-size: 1.4rem;
margin-bottom: 32px;
}

.services-reassurance__grid {
grid-template-columns: 1fr;
gap: 16px;
}

.reassurance-item {
padding: 24px 20px;
}
}

@media (max-width: 480px) {
.services-hero__title {
font-size: 1.4rem;
}

.service-card__image-wrap {
height: 180px;
}

.service-card__title {
font-size: 1.1rem;
}

.services-cta-band__title {
font-size: 1.2rem;
}

.services-reassurance__title {
font-size: 1.2rem;
}
}