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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #e8b960;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #707070;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.8em;
    color: var(--text-dark);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2rem;
    margin-top: 1.5em;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1.2em;
}

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

a:hover {
    color: var(--secondary-color);
}

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

button {
    cursor: pointer;
    font-family: inherit;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-menu a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

.editorial-container {
    width: 100%;
}

.hero-editorial {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.5);
    margin-bottom: 0.3em;
}

.hero-subtitle {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 300;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.story-section {
    margin: 3rem 0;
}

.story-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.inline-image {
    margin: 3rem 0;
}

.inline-image img {
    width: 100%;
    border-radius: 4px;
}

.inline-image figcaption {
    margin-top: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

blockquote.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
}

blockquote.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: normal;
    color: var(--text-light);
}

.inline-cta {
    margin: 3rem 0;
    text-align: center;
}

.cta-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: var(--secondary-color);
}

.problem-section,
.insight-section,
.trust-section {
    margin: 3rem 0;
}

.benefits-list {
    margin: 2rem 0;
}

.benefit-item {
    margin-bottom: 2.5rem;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.benefit-item p {
    color: var(--text-medium);
}

.services-reveal {
    margin: 4rem 0;
}

.services-reveal h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.6rem;
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--text-medium);
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
}

.price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
}

.btn-select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1f4a5f;
}

.urgency-section {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: #fff9e6;
    border-left: 4px solid var(--secondary-color);
}

.urgency-section h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.form-section {
    margin: 4rem 0;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-section > p {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

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

.selected-service-display {
    padding: 1rem;
    background-color: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.selected-service-display p {
    margin: 0;
    font-size: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

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

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1f4a5f;
}

.cta-block {
    margin: 4rem 0;
    padding: 3rem;
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
}

.cta-block h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.btn-primary,
.btn-primary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

.btn-primary:hover,
.btn-primary-large:hover {
    background-color: #d4a54a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.final-cta {
    margin: 5rem 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
    display: none;
}

.sticky-cta.visible {
    display: block;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.btn-sticky {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #d4a54a;
    transform: scale(1.05);
}

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

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: var(--success-color);
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #218838;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.footer {
    background-color: var(--text-dark);
    color: #ffffff;
    padding: 3rem 5% 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
}

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

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

.footer-column ul li a {
    color: #cccccc;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #999999;
}

.page-hero {
    padding: 5rem 2rem 3rem;
    text-align: center;
    background-color: var(--bg-light);
}

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

.values-section,
.value-item {
    margin: 2rem 0;
}

.value-item h3 {
    color: var(--primary-color);
}

.team-section {
    margin: 3rem 0;
}

.services-detailed {
    margin: 3rem 0;
}

.service-detailed {
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

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

.service-image-large {
    margin-bottom: 2rem;
}

.service-image-large img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.service-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.price-tag-large {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.price-tag-large .price {
    font-size: 2.5rem;
}

.service-description {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.service-features,
.service-location {
    margin: 2rem 0;
}

.service-features h3,
.service-location h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    margin-left: 0;
}

.service-features ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
}

.service-features ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.booking-reminder {
    margin: 4rem 0;
    padding: 3rem;
    background-color: var(--bg-light);
    text-align: center;
    border-radius: 8px;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    margin: 0 auto 1.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-section {
    margin: 4rem 0;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}

.contact-cta {
    margin: 4rem 0;
    text-align: center;
}

.legal-content {
    font-size: 1rem;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    margin-bottom: 0.7rem;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    margin: 2rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-reference {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.thanks-info {
    margin: 3rem 0;
    text-align: left;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.thanks-info h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.next-steps {
    margin-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.thanks-contact {
    margin: 2rem 0;
    font-size: 1.05rem;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .nav-menu li {
        padding: 1rem 5%;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .content-narrow {
        padding: 3rem 1.5rem;
    }

    .form-section {
        padding: 2rem 1.5rem;
    }

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (min-width: 769px) {
    .contact-grid {
        flex-direction: row;
        gap: 2rem;
    }

    .contact-card {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 1.25rem);
    }
}