:root {
    --primary: #2c5f7c;
    --secondary: #4a8fa8;
    --accent: #d4a853;
    --dark: #1a3a4a;
    --light: #f5f9fa;
    --text: #2d3e4a;
    --muted: #6b8a99;
    --white: #ffffff;
    --border: #d1dde3;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
}

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

.container-narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 10px;
}

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

.ad-disclosure {
    background: var(--light);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--muted);
}

nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

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

.hero-editorial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
}

.hero-editorial-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-editorial-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
    max-width: 800px;
}

.hero-editorial-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--dark);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: #c49a47;
    transform: translateY(-2px);
}

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

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

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

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

.article-section {
    padding: 80px 20px;
}

.article-section:nth-child(even) {
    background: var(--light);
}

.article-lead {
    font-size: 1.3rem;
    color: var(--muted);
    margin-bottom: 30px;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
}

.article-content h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 25px;
}

.article-content h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 15px;
}

.article-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.article-image {
    margin: 40px 0;
    background-color: var(--border);
    border-radius: 12px;
    overflow: hidden;
}

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

.article-image-caption {
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--muted);
    background: var(--light);
}

.inline-cta {
    background: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: center;
}

.inline-cta h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.inline-cta p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-card-image {
    height: 200px;
    background-color: var(--border);
    overflow: hidden;
}

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

.service-card-content {
    padding: 25px;
}

.service-card-content h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-card-content p {
    color: var(--muted);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--muted);
}

.split-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1 1 400px;
}

.split-image {
    flex: 1 1 400px;
    background-color: var(--border);
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

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

.testimonial-block {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 60px 40px;
    border-radius: 16px;
    margin: 60px 0;
    position: relative;
}

.testimonial-block::before {
    content: '"';
    font-size: 8rem;
    position: absolute;
    top: -20px;
    left: 30px;
    opacity: 0.15;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-location {
    font-size: 0.9rem;
    opacity: 0.8;
}

.form-section {
    background: var(--dark);
    color: var(--white);
    padding: 80px 20px;
}

.form-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

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

.form-group select option {
    background: var(--dark);
    color: var(--white);
}

.contact-info-section {
    padding: 80px 20px;
    background: var(--light);
}

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

.contact-details {
    flex: 1 1 350px;
}

.contact-details h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 25px;
}

.contact-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 3px;
}

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

.map-placeholder {
    flex: 1 1 350px;
    min-height: 300px;
    background: var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--accent);
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--white);
}

.disclaimer {
    background: var(--light);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    font-size: 0.9rem;
    color: var(--muted);
    border-left: 4px solid var(--secondary);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
}

.cookie-text a {
    color: var(--accent);
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cookie-accept {
    background: var(--accent);
    color: var(--dark);
}

.cookie-accept:hover {
    background: #c49a47;
}

.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 100px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.legal-content {
    padding: 60px 20px;
}

.legal-content h2 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
    margin-bottom: 15px;
    color: var(--text);
}

.legal-content ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.15rem;
    color: var(--muted);
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.about-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    padding: 80px 0;
}

.about-hero-content {
    flex: 1 1 400px;
}

.about-hero-content h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 15px;
}

.about-hero-image {
    flex: 1 1 400px;
    min-height: 350px;
    background-color: var(--border);
    border-radius: 16px;
    overflow: hidden;
}

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

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    flex: 1 1 150px;
    max-width: 200px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--muted);
}

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

.team-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 40px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-card {
    text-align: center;
    flex: 1 1 250px;
    max-width: 300px;
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--border);
    margin: 0 auto 20px;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-role {
    color: var(--secondary);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.team-bio {
    color: var(--muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }

    nav.active {
        display: flex;
    }

    .header-inner {
        flex-wrap: wrap;
    }

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

    .hero-editorial-content p {
        font-size: 1rem;
    }

    .article-content h2 {
        font-size: 1.7rem;
    }

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

    .split-section {
        gap: 30px;
    }

    .split-image {
        min-height: 280px;
    }

    .page-header {
        padding: 80px 20px 50px;
    }

    .page-header h1 {
        font-size: 1.9rem;
    }

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