/* General Resets and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0056b3; /* A professional blue */
    --secondary-color: #28a745; /* A vibrant green for CTAs */
    --text-dark: #333;
    --text-light: #666;
    --background-light: #f8f9fa;
    --border-color: #e0e0e0;
    --white: #fff;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #003f7f;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 0.8em;
}

h1 {
    font-size: 2.8em;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.2em;
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 1em;
    text-align: center;
}

h3 {
    font-size: 1.6em;
    font-weight: 600;
    margin-top: 1.2em;
}

p {
    margin-bottom: 1em;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 0.5em;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    font-size: 1em;
}

.button-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.button-primary:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.button-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 26px; /* Adjust padding for border */
}

.button-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Forms */
.form-group {
    margin-bottom: 1.5em;
}

.form-group label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1em;
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.privacy-note {
    font-size: 0.9em;
    color: var(--text-light);
    margin-top: 1em;
}

/* Header */
header {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
    left: 0;
    background: var(--primary-color);
}

/* Minimal Header for HVCO Page */
.minimal-header {
    border-bottom: none;
    box-shadow: none;
    padding: 15px 0;
}

.minimal-header .header-content {
    justify-content: center; /* Center the logo */
}

.minimal-header nav,
.minimal-header .button-secondary {
    display: none; /* Hide navigation and secondary button */
}

/* Sections */
section {
    padding: 80px 0;
}

/* Hero Section Enhancements */

.service-hero-section {
    background-image: url('background_image.png'); /* Replace with the actual path to your image */
    background-size: cover; /* Optional: Adjust how the image covers the area */
    background-position: center; /* Optional: Center the image */
    background-repeat: no-repeat; /* Optional: Prevent the image from repeating */
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 90px);
}


.service-hero-section h1 {
    color: var(--white);
    font-size: 3.5em; /* Make the headline larger */
    margin-bottom: 0.5em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-hero-section .sub-headline {
    font-size: 1.3em; /* Slightly larger sub-headline */
    max-width: 800px;
    margin: 0 auto 40px auto; /* Add more space below sub-headline */
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex; /* Arrange buttons side-by-side */
    justify-content: center; /* Center the buttons */
    gap: 20px; /* Space between buttons */
    margin-top: 50px; /* Space above buttons */
}

.hero-buttons .button {
    padding: 16px 32px; /* Larger padding for buttons */
    font-size: 1.1em; /* Larger font size for buttons */
}

/* Ensure the secondary button contrasts well in the hero */
.hero-buttons .button-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white); /* White border for contrast */
}

.hero-buttons .button-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color); /* Text color changes on hover */
}


.hvco-cta {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: inline-block; /* To contain its own width */
    max-width: 600px;
    margin-top: 40px;
    position: relative;
    overflow: hidden; /* For pseudo-element */
}

.hvco-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--secondary-color);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}


.hvco-cta .button-primary {
    font-size: 1.2em;
    padding: 18px 35px;
    margin-bottom: 15px;
    width: auto;
}

.hvco-cta p {
    font-size: 1em;
    color: var(--text-light);
    margin-bottom: 15px;
}

.hvco-visual-placeholder {
    width: 150px;
    height: 150px;
    background-color: #e9ecef;
    border-radius: 5px;
    margin: 20px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9em;
    overflow: hidden;
    border: 1px dashed var(--border-color);
}

.hvco-visual-placeholder img {
    max-width: 100%;
    height: auto;
    display: block;
}


.problem-solution-section {
    background-color: var(--white);
    padding: 80px 0;
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.ps-item {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 3px solid var(--primary-color);
}

.ps-item .icon-placeholder {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.ps-item h3 {
    font-size: 1.3em;
    margin-bottom: 0.5em;
    color: var(--text-dark);
}

.ps-item p {
    font-size: 0.95em;
    color: var(--text-light);
}

.why-choose-us-section {
    background-color: var(--background-light);
    padding: 80px 0;
    text-align: center;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.usp-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 3px solid var(--secondary-color);
}

.usp-item h3 {
    font-size: 1.4em;
    color: var(--primary-color);
}

.usp-item p {
    color: var(--text-light);
}

.social-proof-section {
    background-color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.testimonial-carousel {
    display: flex;
    overflow-x: auto; /* Enable scrolling for small screens */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding-bottom: 20px; /* Space for scrollbar */
    margin-top: 40px;
}

.testimonial-item {
    flex: 0 0 450px; /* Fixed width for each testimonial */
    scroll-snap-align: start;
    background-color: var(--background-light);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
    min-width: 300px; /* Ensures minimum size on smaller screens */
}

.testimonial-item blockquote {
    font-size: 1.1em;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.5;
}

.testimonial-item .client-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95em;
}

.secondary-services-section {
    background-color: var(--background-light);
    padding: 80px 0;
    text-align: center;
}

.service-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-link-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid var(--primary-color);
}

.service-link-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-link-item .icon-placeholder {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-link-item h3 {
    font-size: 1.4em;
    margin-bottom: 0.5em;
    color: var(--primary-color);
}

.service-link-item p {
    font-size: 0.95em;
    color: var(--text-light);
}


/* HVCO Landing Page Specifics */
.hvco-page {
    background-color: var(--background-light);
}

.hvco-landing-section {
    padding: 80px 0;
    text-align: center;
}

.hvco-landing-content h1 {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 0.5em;
}

.hvco-landing-content .sub-headline {
    font-size: 1.2em;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3em auto;
}

.hvco-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.hvco-benefits ul {
    list-style: none;
    padding-left: 0;
}

.hvco-benefits ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%2328a745" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 1 1-5.93-8.93"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>') no-repeat left center;
    background-size: 18px;
    padding-left: 28px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--text-dark);
}

.hvco-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 5px solid var(--secondary-color);
}

.hvco-visual-large {
    text-align: center;
    margin-bottom: 30px;
}

.hvco-visual-large img {
    max-width: 250px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hvco-form .button-primary {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1em;
}

/* Service Pages General Styles */
.service-hero-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.service-hero-section h1 {
    color: var(--white);
    font-size: 3em;
    margin-bottom: 0.4em;
}

.service-hero-section .sub-headline {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255,255,255,0.9);
}

.service-benefits-section {
    background-color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--secondary-color);
    text-align: left;
}

.benefit-item .icon-placeholder {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.benefit-item p {
    font-size: 1em;
    color: var(--text-dark);
}

.service-included-section {
    background-color: var(--background-light);
    padding: 80px 0;
    text-align: center;
}

.included-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.included-list li {
    background-color: var(--white);
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-size: 1.05em;
    color: var(--text-dark);
    flex-basis: calc(33.333% - 20px); /* For 3 columns */
    min-width: 280px; /* Minimum width for flex items */
    text-align: left;
    border-left: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
}

.service-usp-section {
    background-color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.service-usp-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5em;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.cta-section .button-primary {
    font-size: 1.3em;
    padding: 18px 40px;
    background-color: var(--secondary-color);
}

.cta-section .button-primary:hover {
    background-color: #218838;
}

/* About Page Specifics */
.about-hero-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.about-hero-section h1 {
    color: var(--white);
    font-size: 3.2em;
    margin-bottom: 0.4em;
}

.about-content-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.about-text h2 {
    text-align: left;
    color: var(--primary-color);
    font-size: 2em;
    margin-top: 0; /* Override default margin-top */
}

.about-text ul {
    list-style: inside disc;
    margin-bottom: 1em;
    color: var(--text-light);
    padding-left: 20px;
}

.about-text ul li {
    margin-bottom: 0.5em;
}

.about-image-sidebar {
    text-align: center;
    padding-top: 20px;
}

.about-image-sidebar img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.about-image-sidebar .image-caption {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9em;
}

/* Contact Page Specifics */
.contact-hero-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.contact-hero-section h1 {
    color: var(--white);
    font-size: 3.2em;
    margin-bottom: 0.4em;
}

.contact-details-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary-color);
}

.contact-form-wrapper h2, .direct-contact-info h2 {
    text-align: left;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1.5em;
}

.direct-contact-info {
    padding: 40px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid var(--secondary-color);
}

.contact-info-item {
    margin-bottom: 2em;
}

.contact-info-item h3 {
    font-size: 1.2em;
    color: var(--text-dark);
    margin-bottom: 0.5em;
}

.contact-info-item p {
    margin: 0;
    font-size: 1.05em;
    color: var(--text-light);
}

.contact-info-item a {
    color: var(--primary-color);
}

.google-map-placeholder {
    width: 100%;
    height: 300px; /* Fixed height for the map */
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden; /* Ensures map is within border-radius */
    border: 1px solid var(--border-color);
}

.google-map-placeholder iframe {
    border-radius: 8px; /* Apply border-radius to iframe as well */
}


/* Legal Pages */
.legal-section {
    padding: 80px 0;
    background-color: var(--white);
    line-height: 1.8;
    color: var(--text-light);
}

.legal-section h1 {
    font-size: 2.8em;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5em;
}

.legal-section h2 {
    text-align: left;
    font-size: 1.8em;
    margin-top: 2em;
    color: var(--text-dark);
}

.legal-section h3 {
    text-align: left;
    font-size: 1.3em;
    margin-top: 1.5em;
}

.legal-section p, .legal-section ul li {
    font-size: 1.05em;
    margin-bottom: 1em;
}

.legal-section ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 1em;
}

.legal-section ol {
    list-style: decimal;
    padding-left: 25px;
    margin-bottom: 1em;
}


/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px 0;
    font-size: 0.9em;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.2em;
    margin-bottom: 1em;
    font-weight: 600;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5em;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    color: rgba(255,255,255,0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 0.9em;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0;
    flex-grow: 1;
    text-align: center;
}

.cookie-banner a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-banner .button {
    white-space: nowrap;
    padding: 8px 20px;
    font-size: 0.9em;
    background-color: var(--secondary-color);
    color: var(--white);
}

.cookie-banner .button:hover {
    background-color: #218838;
}

/* Placeholders for images (you would replace these with actual images) */
.hvco-visual-placeholder,
.hvco-visual-large,
.about-image-sidebar img {
    /* Styles for visual placeholders - real images will replace these */
    border: 1px dashed var(--border-color); /* To show where image should be */
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    font-size: 0.9em;
}
.hvco-visual-placeholder img,
.hvco-visual-large img,
.about-image-sidebar img {
    border: none; /* Remove dashed border for actual images */
    background-color: transparent;
}


/* Mobile Responsiveness */
@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .service-hero-section {
        min-height: auto; /* Remove min-height on smaller screens if it causes issues */
        padding: 100px 0; /* Adjust padding for mobile */
    }

    .service-hero-section h1 {
        font-size: 2.5em;
    }

    .service-hero-section .sub-headline {
        font-size: 1.1em;
    }

    .hero-buttons {
        flex-direction: column; /* Stack buttons vertically on small screens */
        gap: 15px;
    }

    .hero-buttons .button {
        width: 80%; /* Make buttons take up more width */
        margin: 0 auto; /* Center individual buttons when stacked */
    }


    .button-secondary {
        margin-top: 20px;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content .sub-headline {
        font-size: 1.1em;
    }

    .hvco-cta {
        padding: 30px;
    }

    .problem-solution-grid,
    .usp-grid,
    .service-links-grid,
    .benefits-grid,
    .hvco-details-grid,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hvco-details-grid .hvco-form-wrapper {
        order: -1; /* Move form above benefits on mobile */
    }

    .testimonial-carousel {
        flex-wrap: nowrap; /* Keep it as a carousel */
        overflow-x: scroll; /* Ensure it's scrollable */
        padding-bottom: 10px; /* Space for scrollbar */
        justify-content: flex-start; /* Align items to start */
    }

    .testimonial-item {
        flex: 0 0 85%; /* Make items take up more width on small screens */
        max-width: 400px;
        min-width: 280px;
    }

    .included-list li {
        flex-basis: 100%; /* Full width for list items */
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        text-align: center;
    }

    .footer-col h3 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.8em;
    }

    .hero-section {
        padding: 80px 0 50px 0;
    }

    .hvco-cta {
        padding: 25px;
    }

    section {
        padding: 60px 0;
    }

    .contact-form-wrapper, .direct-contact-info {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo a {
        font-size: 1.5em;
    }

    nav ul {
        gap: 10px;
        font-size: 0.9em;
    }

    .button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .service-hero-section h1 {
        font-size: 2em;
    }

    .hvco-cta .button-primary {
        font-size: 1em;
        padding: 15px 25px;
    }

    .cookie-banner {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
        text-align: center;
    }

    .cookie-banner p {
        width: 100%;
    }

    .cookie-banner .button {
        width: 80%;
    }
}