:root {
    --color-primary: #1a5f7a;
    --color-primary-dark: #0d3d4f;
    --color-secondary: #2d8a6e;
    --color-accent: #e8a54b;
    --color-text: #2c3e50;
    --color-text-light: #5a6c7d;
    --color-bg: #ffffff;
    --color-bg-alt: #f5f7f9;
    --color-bg-dark: #1a2a35;
    --color-border: #dde4ea;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --max-width: 1200px;
    --max-width-narrow: 800px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

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

a:hover {
    color: var(--color-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container.narrow {
    max-width: var(--max-width-narrow);
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    color: #fff;
}

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

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

.btn-cta {
    background-color: var(--color-accent);
    color: var(--color-text);
}

.btn-cta:hover {
    background-color: #d4942f;
    color: var(--color-text);
}

.btn-full {
    width: 100%;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-dark);
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 280px;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.site-header {
    background-color: var(--color-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--color-text-light);
    background-color: var(--color-bg-alt);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: all 0.2s ease;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--color-text);
    font-weight: 500;
}

.nav-list a:hover {
    color: var(--color-primary);
}

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

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,42,53,0.85) 0%, rgba(26,95,122,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 4rem 1.5rem;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    color: #fff;
    margin-bottom: 1.5rem;
}

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

.problem-section {
    padding: 5rem 0;
    background-color: var(--color-bg);
}

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

.insight-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

.insight-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.insight-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

.insight-text {
    flex: 1;
}

.story-section {
    padding: 5rem 0;
    background-color: var(--color-bg);
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-text-light);
    border-left: 4px solid var(--color-primary);
    padding-left: 2rem;
}

.testimonial-quote p {
    margin-bottom: 1rem;
}

.testimonial-quote cite {
    font-size: 1rem;
    font-style: normal;
    color: var(--color-text);
    font-weight: 600;
}

.benefits-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

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

.benefits-grid {
    display: flex;
    gap: 2rem;
}

.benefit-card {
    flex: 1;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.services-preview {
    padding: 5rem 0;
    background-color: var(--color-bg);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

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

.service-image {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    color: var(--color-primary);
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-top: auto;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.trust-section {
    padding: 5rem 0;
    background-color: var(--color-bg-dark);
    color: #fff;
}

.trust-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    color: #fff;
}

.trust-list {
    list-style: none;
    margin-top: 1.5rem;
}

.trust-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.trust-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.trust-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

.testimonials-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

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

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--color-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    gap: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--color-text);
}

.author-car {
    color: var(--color-text-light);
}

.form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-intro h2 {
    color: #fff;
}

.booking-form {
    background-color: var(--color-bg);
    padding: 2.5rem;
    border-radius: 12px;
    color: var(--color-text);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

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

.form-consent {
    margin-top: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-label span {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.disclaimer-section {
    padding: 3rem 0;
    background-color: var(--color-bg-alt);
}

.disclaimer-text {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 0;
}

.site-footer {
    background-color: var(--color-bg-dark);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
}

.footer-links,
.footer-legal,
.footer-contact {
    flex: 1;
    min-width: 150px;
}

.footer-grid h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 0.5rem;
}

.footer-grid ul a {
    color: rgba(255,255,255,0.7);
}

.footer-grid ul a:hover {
    color: #fff;
}

.footer-contact address {
    font-style: normal;
    color: rgba(255,255,255,0.7);
}

.footer-contact address p {
    margin-bottom: 0.25rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-header p {
    opacity: 0.9;
    margin-bottom: 0;
}

.page-content {
    padding: 4rem 0;
}

.page-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

.services-page-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
}

.service-card-image {
    flex: 0 0 300px;
}

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

.service-card-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    color: var(--color-primary);
}

.service-card-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-top: auto;
    margin-bottom: 1rem;
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 0 0 400px;
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
}

.values-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background-color: var(--color-bg-alt);
    border-radius: 12px;
}

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

.contact-layout {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.contact-info h3:first-child {
    margin-top: 0;
}

.contact-map {
    flex: 1;
    min-height: 400px;
    background-color: var(--color-bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
}

.thanks-section {
    padding: 6rem 0;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: #fff;
}

.thanks-section h1 {
    color: var(--color-secondary);
}

.legal-content {
    padding: 4rem 0;
}

.legal-content h1 {
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    font-size: 1.5rem;
}

.legal-content p,
.legal-content ul {
    color: var(--color-text-light);
}

@media (max-width: 992px) {
    .insight-grid,
    .trust-grid,
    .about-content {
        flex-direction: column;
    }

    .trust-grid {
        flex-direction: column-reverse;
    }

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

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

    .service-image {
        flex: 0 0 auto;
    }

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

    .contact-layout {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card-image {
        flex: 0 0 200px;
    }

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

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

    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-bg);
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0;
        display: none;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

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

    .nav-list li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--color-border);
    }

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

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

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-brand,
    .footer-links,
    .footer-legal,
    .footer-contact {
        flex: 0 0 100%;
    }

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

    .ad-disclosure {
        order: 3;
        width: 100%;
        text-align: center;
    }
}
