:root {
    --color-primary: #1a5f7a;
    --color-primary-dark: #134a5f;
    --color-secondary: #57837b;
    --color-accent: #c38e70;
    --color-dark: #1e2a38;
    --color-light: #f8f9fa;
    --color-text: #2d3748;
    --color-text-light: #6b7280;
    --color-white: #ffffff;
    --color-border: #e2e8f0;
    --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.header-top {
    background-color: var(--color-dark);
    padding: 8px 24px;
    text-align: center;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--color-light);
    opacity: 0.9;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--color-text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--color-primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    transition: var(--transition);
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-outline:hover,
.btn-outline:focus {
    background-color: var(--color-light);
    color: var(--color-text);
}

.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 42, 56, 0.85) 0%, rgba(26, 95, 122, 0.75) 100%);
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px 24px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-white);
}

.hero-content h1 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.page-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero .hero-background::after {
    background: linear-gradient(135deg, rgba(30, 42, 56, 0.9) 0%, rgba(26, 95, 122, 0.8) 100%);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 60px 24px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-white);
}

.hero-overlay h1 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.hero-overlay p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.page-hero-compact {
    min-height: auto;
    background-color: var(--color-dark);
    padding: 80px 0;
}

.page-hero-compact h1 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.page-hero-compact p {
    color: var(--color-light);
    opacity: 0.85;
    font-size: 1.125rem;
}

.intro-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    margin-bottom: 1.5rem;
}

.intro-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.services-preview {
    padding: 100px 0;
    background-color: var(--color-light);
}

.services-preview h2 {
    text-align: center;
}

.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--color-text-light);
}

.services-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    margin-bottom: 0.75rem;
}

.card-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.price {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
}

.services-cta {
    text-align: center;
}

.stats-section {
    padding: 80px 0;
    background-color: var(--color-dark);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
}

.stat-label {
    font-size: 1rem;
    color: var(--color-light);
    opacity: 0.8;
}

.approach-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.approach-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-steps {
    display: flex;
    gap: 40px;
}

.step {
    flex: 1;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--color-primary);
}

.step-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.testimonials-section {
    padding: 100px 0;
    background-color: var(--color-light);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-primary);
}

.testimonial p {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--color-white);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-content .btn-primary {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.cta-content .btn-primary:hover {
    background-color: var(--color-light);
}

.about-intro {
    padding: 100px 0;
}

.about-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-intro-content h2 {
    margin-bottom: 1.5rem;
}

.values-section {
    padding: 100px 0;
    background-color: var(--color-light);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.value-item h3 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.value-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.team-section {
    padding: 100px 0;
}

.team-section h2 {
    margin-bottom: 2rem;
}

.team-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.team-image {
    flex: 0 0 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-text {
    flex: 1;
}

.history-section {
    padding: 100px 0;
    background-color: var(--color-light);
}

.history-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.year {
    flex: 0 0 80px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.services-detailed {
    padding: 80px 0;
}

.service-block {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding: 60px 0;
    border-bottom: 1px solid var(--color-border);
}

.service-block:first-child {
    padding-top: 0;
}

.service-block:last-child {
    border-bottom: none;
}

.service-block-reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    margin-bottom: 1rem;
}

.service-content h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 1rem;
}

.service-content li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.service-image {
    flex: 0 0 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-pricing {
    margin-top: 2rem;
    padding: 20px;
    background-color: var(--color-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.price-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.price-note {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.enquiry-section {
    padding: 100px 0;
    background-color: var(--color-light);
}

.enquiry-content {
    max-width: 600px;
    margin: 0 auto;
}

.enquiry-content h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.enquiry-content > p {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.enquiry-form {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition);
    font-family: var(--font-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.enquiry-form .btn {
    width: 100%;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin-bottom: 0;
    color: var(--color-text-light);
}

.response-note {
    margin-top: 2rem;
    padding: 16px;
    background-color: var(--color-light);
    border-radius: var(--radius-md);
}

.response-note p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.contact-location {
    flex: 1;
}

.contact-location h2 {
    margin-bottom: 1rem;
}

.map-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1rem;
}

.map-placeholder img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.location-note {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.areas-section {
    padding: 80px 0;
    background-color: var(--color-light);
}

.areas-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 3rem;
}

.area-region {
    flex: 1 1 calc(33.333% - 16px);
    background-color: var(--color-white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.area-region h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.area-region p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.thanks-icon svg {
    width: 80px;
    height: 80px;
}

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: var(--color-light);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.service-confirmation p {
    margin-bottom: 0;
}

.next-steps {
    text-align: left;
    background-color: var(--color-light);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.next-steps h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style: disc;
    margin-left: 20px;
}

.next-steps li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.legal-page {
    padding: 60px 0 100px;
}

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-content {
    max-width: 800px;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.legal-section:first-child h2 {
    padding-top: 0;
    border-top: none;
}

.legal-section h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.cookie-table th {
    background-color: var(--color-light);
    font-weight: 600;
}

.site-footer {
    background-color: var(--color-dark);
    padding: 60px 0 0;
    color: var(--color-light);
}

.footer-grid {
    display: flex;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 1.5;
}

.footer-brand h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--color-light);
    opacity: 0.8;
}

.footer-links,
.footer-legal,
.footer-contact {
    flex: 1;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a {
    color: var(--color-light);
    opacity: 0.8;
    transition: opacity var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    opacity: 1;
}

.footer-contact p {
    color: var(--color-light);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    padding: 30px 0;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--color-light);
    opacity: 0.6;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.copyright {
    font-size: 0.875rem;
    color: var(--color-light);
    opacity: 0.8;
    margin-bottom: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 20px 24px;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.cookie-content p {
    flex: 1;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-link {
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .intro-grid,
    .team-content,
    .contact-grid {
        flex-direction: column;
    }

    .intro-image,
    .team-image {
        flex: auto;
        width: 100%;
    }

    .services-cards {
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .approach-steps {
        flex-wrap: wrap;
    }

    .step {
        flex: 1 1 calc(50% - 20px);
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .service-block,
    .service-block-reverse {
        flex-direction: column;
    }

    .service-image {
        flex: auto;
        width: 100%;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 1 1 100%;
    }

    .area-region {
        flex: 1 1 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--color-white);
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 12px 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-section {
        min-height: 60vh;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 40px;
    }

    .stat-item {
        flex: 1 1 40%;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .step {
        flex: 1 1 100%;
    }

    .value-item {
        flex: 1 1 100%;
    }

    .area-region {
        flex: 1 1 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content,
    .hero-overlay {
        padding: 40px 16px;
    }

    .enquiry-form {
        padding: 24px;
    }

    .page-hero-compact {
        padding: 60px 0;
    }
}
