html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
p,
a,
img,
i,
ul,
li,
footer,
header,
nav,
section {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

footer,
header,
nav,
section {
	display: block;
}

ul {
	list-style: none;
}

html {
	height: 100%;
}

i {
	font-style: italic;
}

a,
a:visited,
a:focus {
	text-decoration: none;
	outline: 0;
}

a:hover {
	text-decoration: underline;
}

main img {
	max-width: 100%;
	height: auto;
}

@font-face {
	font-family: "mfn-icons";
	src: url(../fonts/mfn-icons.eot);
	src:
		url(../fonts/mfn-icons.eot) format("embedded-opentype"),
		url(../fonts/mfn-icons.woff) format("woff"),
		url(../fonts/mfn-icons.ttf) format("truetype"),
		url(../fonts/mfn-icons.svg) format("svg");
	font-weight: 400;
	font-style: normal;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
	font-family: "mfn-icons";
	font-style: normal;
	font-weight: 400;
	speak: none;
	display: inline-block;
	text-decoration: none !important;
	width: 1em;
	margin-right: 0.2em;
	text-align: center;
	font-variant: normal;
	text-transform: none;
	line-height: 1em;
	margin-left: 0.2em;
}

.icon-location:before {
	content: "\e8c6";
}

.icon-mail:before {
	content: "\e8d0";
}

.icon-mail-line:before {
	content: "\e8d1";
}

.icon-phone:before {
	content: "\e8f4";
}

.icon-menu-fine:before {
	content: "\e960";
}

.icon-clock:before {
	content: "\e844";
}

.container {
	max-width: 1220px;
	margin: 0 auto;
	position: relative;
}

.container:after {
	clear: both;
	content: " ";
	display: block;
	height: 0;
	visibility: hidden;
}

@media only screen and (max-width: 1239px) {
	a[href^=tel] {
		color: inherit;
		text-decoration: none;
	}
}

@media only screen and (min-width: 960px) and (max-width: 1239px) {
	.container {
		max-width: 940px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
	.container {
		max-width: 708px;
	}
}

@media only screen and (max-width: 767px) {
	.container {
		max-width: 700px !important;
		padding: 0 33px !important;
	}
}

h1, h2, h3, h4, h5 {
	color: #000000;
}

a {
	color: #238636;
}

a:hover {
	color: #1a6b2b;
}

html {
	background-color: #fcfcfc;
}

main {
	background-color: #ffffff;
}

.site-header {
	position: relative;
	overflow: visible;
}

.action-bar {
	background-color: #2c2c2c;
	line-height: 21px;
}

.action-bar .contact-details {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	padding: 12px 0;
	max-width: 1220px;
	margin: 0 auto;
	color: #b5b5b5;
}

.action-bar .contact-details li {
	display: inline-flex;
	align-items: center;
}

.action-bar .contact-details li > i {
	margin-right: 4px;
}

.action-bar .contact-details a {
	color: #58b5f8;
	transition: color 0.3s ease;
}

.action-bar .contact-details a:hover {
	color: #8ed0fc;
	text-decoration: none;
}

.top-bar {
	background-color: #fff;
	z-index: 30;
}

.top-bar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
}

.top-bar .logo {
	display: flex;
	align-items: center;
	height: 90px;
	padding: 0;
	flex-shrink: 0;
	box-sizing: border-box;
}

.top-bar .logo:hover {
	text-decoration: none;
}

.top-bar .logo img {
	max-height: 70px;
	width: auto;
	transition: max-height 0.3s ease;
}

.top-bar .menu-nav {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 90px;
}

.top-bar .menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.top-bar .menu > li {
	position: relative;
}

.top-bar .menu > li:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 50px;
	width: 1px;
	background-color: rgba(0, 0, 0, 0.08);
}

.top-bar .menu > li > a {
	display: block;
	padding: 0 18px;
	line-height: 90px;
	color: #595959;
	white-space: nowrap;
	position: relative;
	transition: color 0.3s ease;
}

.top-bar .menu > li > a:hover {
	text-decoration: none;
	color: #238636;
}

.top-bar .menu > li.current-menu-item > a {
	color: #238636;
}

.top-bar .menu > li > a::after {
	content: "";
	position: absolute;
	bottom: 25px;
	left: 10%;
	width: 80%;
	height: 2px;
	background: #1e7e34;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.top-bar .menu > li > a:hover::after,
.top-bar .menu > li.current-menu-item > a::after {
	transform: scaleX(1);
}

.top-bar .responsive-menu-toggle {
	display: none;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 10px;
	color: #238636;
	z-index: 200;
}

.top-bar .responsive-menu-toggle i {
	font-size: 24px;
	line-height: 1;
}

@media only screen and (min-width: 1240px) {
	.top-bar.is-sticky {
		position: fixed !important;
		top: 0;
		left: 0;
		width: 100%;
		height: 60px;
		z-index: 701;
		background: #fff;
		opacity: 0.97;
		box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
		animation: slideDown 0.3s ease;
	}

	@keyframes slideDown {
		from {
			transform: translateY(-100%);
		}
		to {
			transform: translateY(0);
		}
	}

	.top-bar.is-sticky .logo {
		height: 60px;
		padding: 5px 0;
	}

	.top-bar.is-sticky .logo img {
		max-height: 45px;
	}

	.top-bar.is-sticky .menu > li > a {
		line-height: 60px;
	}

	.top-bar.is-sticky .menu > li > a::after {
		bottom: 10px;
	}

	.top-bar.is-sticky .menu > li:not(:last-child)::after {
		height: 30px;
	}

	.top-bar.is-sticky .menu-nav {
		align-items: center;
		height: 60px;
	}
}

@media only screen and (min-width: 1240px) {
	.top-bar.loading {
		visibility: hidden;
	}

	.top-bar:not(.loading) {
		visibility: visible;
	}

	.top-bar .menu-nav {
		display: flex !important;
	}
}

@media only screen and (max-width: 1239px) {
	.top-bar .container {
		flex-wrap: wrap;
		position: relative;
	}

	.top-bar .logo {
		height: 70px;
	}

	.top-bar .responsive-menu-toggle {
		display: block;
	}

	.top-bar .menu-nav {
		display: none;
		position: absolute;
		top: 100%;
		right: 0;
		width: 300px;
		background: #fff;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
		z-index: 205;
	}

	.top-bar .menu {
		flex-direction: column;
		width: 100%;
		background: #fff;
	}

	.top-bar .menu > li > a {
		line-height: 50px;
		padding: 0 25px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
		color: #333;
		background: #fff;
	}

	.top-bar .menu > li > a::after {
		display: none;
	}

	.top-bar .menu > li:not(:last-child)::after {
		display: none;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
	.top-bar.is-sticky {
		position: fixed !important;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 701;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	}

	.top-bar.is-sticky .logo {
		height: 60px;
	}

	.top-bar.is-sticky .logo img {
		max-height: 50px;
	}

	.top-bar .responsive-menu-toggle {
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%);
	}
}

@media only screen and (max-width: 767px) {
	.action-bar .contact-details {
		flex-direction: column;
		align-items: center;
		gap: 5px;
		padding: 10px 0;
		max-width: none;
		color: #fff;
	}

	.top-bar .logo {
		height: 60px;
		margin: 0 auto;
		padding-right: 50px;
	}

	.top-bar .logo img {
		max-height: 45px;
	}

	.top-bar .responsive-menu-toggle {
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%);
	}

	.top-bar .menu-nav {
		width: 100%;
		left: 0;
		right: 0;
		background: #fff;
	}

	.top-bar .menu,
	.top-bar .menu > li > a {
		background: #fff;
	}

	.top-bar.is-sticky {
		position: fixed !important;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 701;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	}

	.top-bar.is-sticky .logo {
		height: 50px;
	}

	.top-bar.is-sticky .logo img {
		max-height: 40px;
	}
}

.site-footer {
	background-color: #434647;
	color: #b5b5b5;
	padding: 30px 20px;
	text-align: center;
}

.site-footer .copyright {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}

.site-footer a {
	color: #c5d4dc;
	transition: color 0.3s ease;
}

.site-footer a:hover {
	color: #e0eaf0;
}

.footer-social {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 15px;
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
	background-color: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
	text-decoration: none;
}

.footer-social svg {
	width: 20px;
	height: 20px;
}

@media (max-width: 767px) {
	.site-footer {
		padding: 25px 15px;
	}

	.site-footer .copyright {
		font-size: 15px;
	}
}

.dark {
	color: #fff !important;
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5 {
	color: #fff;
}

.section-single-column {
	width: 100%;
	padding: 40px 20px 30px;
	text-align: center;
	box-sizing: border-box;
}

.section-single-column .service-intro {
	max-width: 1100px;
	margin: 0 auto 40px;
}

.section-single-column .service-intro p {
	font-size: 18px;
	font-weight: 300;
	color: #ffffff;
	font-family: var(--font-primary, "Open Sans", sans-serif);
	line-height: 1.6;
	margin-bottom: 1.5em;
}

.section-single-column .service-intro p:last-child {
	margin-bottom: 0;
}

.section-gallery {
	width: 100%;
	padding: 0 20px 30px;
	box-sizing: border-box;
}

.section-single-column .section-subtitle {
	max-width: 1100px;
	margin: 5px auto 0;
	font-size: 14px;
	font-weight: 400;
	color: #767676;
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.section-single-column.section-light {
	padding: 60px 20px 40px;
}

@media (max-width: 959px) {
	.section-single-column {
		padding: 30px 15px 20px;
	}

	.section-single-column .service-intro p {
		font-size: 17px;
	}

	.section-single-column .section-subtitle {
		font-size: 13px;
	}

	.section-single-column.section-light {
		padding: 40px 15px 30px;
	}
}

.section-contact {
	padding: 60px 20px 30px;
	text-align: center;
	box-sizing: border-box;
}

.section-contact .section-header {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 30px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	max-width: 1100px;
	margin: 0 auto;
	text-align: left;
}

.contact-info {
	padding: 20px;
}

.contact-title {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 15px;
}

.contact-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-item {
	position: relative;
	padding: 13px 0 13px 50px;
	color: #fff;
}

.contact-item p {
	margin: 0;
	line-height: 1.7;
}

.contact-item a {
	color: #fff;
}

.contact-icon {
	position: absolute;
	left: 0;
	top: 10px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 23px;
	text-align: center;
	color: #fff;
}

.contact-map {
	padding: 10px;
}

@media (max-width: 767px) {
	.section-contact {
		padding: 40px 15px 30px;
	}

	.section-contact .section-header {
		font-size: 26px;
		margin-bottom: 20px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.contact-info {
		padding: 10px;
	}

	.contact-map {
		padding: 0;
	}
}

.section-documents {
	padding: 40px 20px 50px;
	text-align: center;
}

.section-documents .section-header {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.documents-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.documents-list a {
	color: #fff;
	text-decoration: underline;
	font-size: 18px;
	transition: opacity 0.3s ease;
}

.documents-list a:hover {
	opacity: 0.8;
}

@media (max-width: 767px) {
	.section-documents {
		padding: 30px 15px 40px;
	}

	.section-documents .section-header {
		font-size: 26px;
	}

	.documents-list a {
		font-size: 17px;
	}
}

:root {
    --font-primary: "Open Sans", Arial, sans-serif;
    --font-secondary: "Roboto", Arial, sans-serif;
    --text-base: 16px;
    --text-sm: 14px;
    --text-lg: 18px;
    --heading-1: 36px;
    --heading-2: 34px;
    --heading-3: 24px;
    --heading-4: 20px;
    --heading-5: 18px;
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.7;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

html {
    scroll-padding-top: 85px;
}

::selection {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.4);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

body {
    font-family: var(--font-secondary);
    font-size: var(--text-base);
    line-height: var(--line-height-relaxed);
    font-weight: var(--font-weight-normal);
    color: #626262;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    min-width: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-primary);
    line-height: var(--line-height-tight);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.5em;
}

h1 {
    font-size: var(--heading-1);
}

h2 {
    font-size: var(--heading-2);
}

h3 {
    font-size: var(--heading-3);
}

h4 {
    font-size: var(--heading-4);
}

h5 {
    font-size: var(--heading-5);
}

p {
    font-size: var(--text-base);
    line-height: var(--line-height-relaxed);
    margin-bottom: 1em;
}

a {
    font-weight: inherit;
}

.top-bar.is-sticky {
    top: 0 !important;
    transition: top 0.3s ease-out;
}

.top-bar:not(.is-sticky) .logo {
    margin: 0 15px 0 10px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: heroFade 9s infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 3s; }
.hero-slide:nth-child(3) { animation-delay: 6s; }

@keyframes heroFade {
    0% { opacity: 0; }
    5% { opacity: 1; }
    33% { opacity: 1; }
    38% { opacity: 0; }
    100% { opacity: 0; }
}

.hero-slider .hero-cta {
    display: inline-block;
    padding: 12px 35px;
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--font-primary);
    transition: transform 0.2s ease, filter 0.2s ease;
    margin-top: 100px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-slider .hero-cta:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.hero-slide--1 { background-image: url('../photos/hero/1-1000.webp'); }
.hero-slide--2 { background-image: url('../photos/hero/2-1000.webp'); }
.hero-slide--3 { background-image: url('../photos/hero/3-1000.webp'); }

/* Slide 1: Lime → Green */
.hero-slide--1 .hero-cta {
    background: linear-gradient(135deg, #B8D732 0%, #4CBB6C 100%);
}

/* Slide 2: Green → Teal */
.hero-slide--2 .hero-cta {
    background: linear-gradient(135deg, #4CBB6C 0%, #33AFA4 100%);
}

/* Slide 3: Teal → Blue */
.hero-slide--3 .hero-cta {
    background: linear-gradient(135deg, #33AFA4 0%, #3464DE 100%);
}

@media (min-width: 960px) {
    .hero-slide--1 { background-image: url('../photos/hero/1-1600.webp'); }
    .hero-slide--2 { background-image: url('../photos/hero/2-1600.webp'); }
    .hero-slide--3 { background-image: url('../photos/hero/3-1600.webp'); }
}

@media (min-width: 1600px) {
    .hero-slide--1 { background-image: url('../photos/hero/1-2600.webp'); }
    .hero-slide--2 { background-image: url('../photos/hero/2-2600.webp'); }
    .hero-slide--3 { background-image: url('../photos/hero/3-2600.webp'); }
}

@media (min-width: 2600px) {
    .hero-slide--1 { background-image: url('../photos/hero/1-3200.webp'); }
    .hero-slide--2 { background-image: url('../photos/hero/2-3200.webp'); }
    .hero-slide--3 { background-image: url('../photos/hero/3-3200.webp'); }
}

@media only screen and (max-width: 1239px) {
    .top-bar .menu-nav {
        background-color: #ffffff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .top-bar .menu-nav ul li a {
        color: #333333;
        font-size: 15px;
        font-family: var(--font-secondary);
        font-weight: var(--font-weight-normal);
    }

    .top-bar .menu-nav ul li a:hover {
        background-color: rgba(35, 134, 54, 0.1);
    }

    .top-bar .menu-nav ul li.current-menu-item > a {
        background-color: rgba(35, 134, 54, 0.15);
        color: #238636;
    }
}

.section-light {
    background-color: #f8f8f8;
}

main {
    background: linear-gradient(to bottom, #b5d333 0%, #5ec7be 25%, #1a8fa8 100%);
}

.section-services {
    background-color: #fff;
    padding: 60px 20px 40px;
    text-align: center;
}

.section-services h2 {
    font-size: 32px;
    font-weight: var(--font-weight-normal);
    margin-bottom: 0;
    padding-bottom: 20px;
}

.section-single-column.section-light h2 {
    color: #000;
    font-size: 38px;
    font-weight: var(--font-weight-light);
    font-family: var(--font-primary);
    text-align: center;
    margin: 0 0 15px 0;
    line-height: 1.2;
    letter-spacing: 0;
}

.section-single-column.section-light .section-subtitle {
    color: #626262;
    font-size: 18px;
    font-weight: var(--font-weight-normal);
    font-family: var(--font-secondary);
    text-align: center;
    margin: 0 auto;
    max-width: 900px;
    padding: 0 20px;
    line-height: var(--line-height-relaxed);
}

.section-single-column.section-light p {
    font-size: 18px;
    line-height: var(--line-height-relaxed);
}

@media only screen and (max-width: 767px) {
    .section-single-column.section-light h2 {
        font-size: 30px;
    }

    .section-single-column.section-light .section-subtitle {
        font-size: 17px;
    }

    .section-single-column.section-light p {
        font-size: 17px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: block;
    background: #fff;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
}

.service-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    max-width: 80px;
    min-height: 80px;
    max-height: 80px;
    margin: 0 auto 15px;
    display: block;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 22px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 10px;
    color: #333;
}

.service-card p {
    color: #666666;
    font-size: 17px;
    line-height: var(--line-height-normal);
    margin: 0;
}

.section-single-column.dark .section-header {
    color: #fff;
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-primary);
    text-align: center;
    margin: 0 0 10px 0;
    padding-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: var(--line-height-tight);
}

.section-single-column.dark .section-subtitle {
    color: #ffffff;
    font-size: 16px;
    font-weight: var(--font-weight-normal);
    font-family: var(--font-secondary);
    text-align: center;
    margin: 5px auto 30px auto;
    max-width: 700px;
    padding: 0 20px;
    line-height: var(--line-height-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-single-column.dark .service-intro p {
    font-size: 18px;
    line-height: var(--line-height-relaxed);
}

@media only screen and (max-width: 959px) {
    .section-single-column.dark .section-header {
        font-size: 28px;
        padding-top: 15px;
    }

    .section-single-column.dark .section-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .section-single-column.dark .service-intro p {
        font-size: 17px;
    }
}

.map-image-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.map-image-link img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.map-image-link:hover img {
    transform: scale(1.02);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 12px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-image-link:hover .map-overlay {
    opacity: 1;
}

.section-gallery {
    padding-left: 0;
    padding-right: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
}

@media only screen and (max-width: 959px) {
    .hero-slider {
        height: 50vh;
        min-height: 350px;
    }

    .hero-slider .hero-cta {
        padding: 10px 25px;
        margin-top: 50px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid picture:nth-child(n+3) {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    body {
        font-size: 17px;
    }

    p {
        font-size: 17px;
    }

    h1 { font-size: 30px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }
    h4 { font-size: 20px; }
    h5 { font-size: 18px; }

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

    .section-services {
        padding: 40px 15px 30px;
    }

    .top-bar .menu-nav ul li a {
        font-size: 17px;
        padding: 14px 20px;
        min-height: 44px;
    }

    .hero-slider .hero-cta {
        font-size: 22px;
        padding: 12px 28px;
    }

    .section-single-column.dark .section-header {
        font-size: 28px;
    }

    .section-single-column.dark .section-subtitle {
        font-size: 15px;
    }

    .section-single-column .service-intro p {
        font-size: 17px;
    }

    .service-card h3 {
        font-size: 21px;
    }

    .service-card p {
        font-size: 17px;
    }

    .section-services h2 {
        font-size: 28px;
    }
}
