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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #4a8b73;
    --accent-color: #7cb342;
    --text-color: #2a2a2a;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-accent: #e8f5e9;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 18px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 42, 42, 0.97);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #689f38;
}

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

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

.nav-minimal {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--accent-color);
}

.editorial-layout {
    min-height: calc(100vh - 70px);
}

.hero-story {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}

.story-intro {
    text-align: center;
    margin-bottom: 50px;
}

.story-intro h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--text-color);
    font-weight: 800;
    letter-spacing: -1px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-light);
    font-weight: 400;
}

.story-image {
    margin: 50px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-content {
    font-size: 19px;
    line-height: 1.8;
}

.story-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
}

.story-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.story-content p {
    margin-bottom: 25px;
}

.inline-cta {
    margin: 40px 0;
    text-align: center;
    padding: 30px;
    background: var(--bg-accent);
    border-radius: 8px;
}

.cta-link {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.story-quote {
    border-left: 4px solid var(--accent-color);
    padding: 25px 30px;
    margin: 40px 0;
    background: var(--bg-light);
    font-style: italic;
    font-size: 20px;
    color: var(--text-light);
    border-radius: 0 8px 8px 0;
}

.inline-image-small {
    margin: 40px auto;
    max-width: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.inline-image-small img,
.inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.inline-image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    padding: 35px;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.highlight-box h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 26px;
}

.highlight-box p {
    margin-bottom: 0;
    color: #ffffff;
    opacity: 0.95;
}

.inline-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin: 30px 0;
    transition: all 0.3s ease;
    font-size: 17px;
}

.inline-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.story-list {
    margin: 30px 0;
    padding-left: 25px;
}

.story-list li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.two-column-info {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.info-block {
    flex: 1;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.info-block h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.cta-section {
    margin: 60px 0;
    padding: 50px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.cta-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-light);
    font-size: 19px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.service-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 24px;
}

.service-card p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.service-card .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
}

.btn-select-service {
    width: 100%;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-select-service.selected {
    background-color: var(--accent-color);
}

.form-section {
    margin: 60px 0;
    padding: 50px;
    background: var(--bg-light);
    border-radius: 12px;
}

.form-section h2 {
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
}

.form-section > p {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #ffffff;
}

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

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

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #689f38;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.trust-section {
    margin: 60px 0;
}

.trust-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.trust-section > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-light);
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.testimonial {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    margin-bottom: 15px;
    font-style: italic;
    font-size: 18px;
}

.testimonial cite {
    color: var(--text-light);
    font-style: normal;
    font-size: 16px;
}

.final-cta {
    text-align: center;
    margin: 60px 0;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    color: #ffffff;
}

.final-cta h2 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 36px;
}

.final-cta p {
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 30px;
    font-size: 19px;
}

.btn-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: #ffffff;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.additional-info {
    margin: 50px 0;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

.additional-info h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.additional-info p {
    margin-bottom: 20px;
}

.additional-info p strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 5px;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.footer-col p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 15px;
}

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

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

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    color: #999999;
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(124, 179, 66, 0.4);
    transition: all 0.3s ease;
    font-size: 16px;
}

.sticky-btn:hover {
    background-color: #689f38;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(124, 179, 66, 0.5);
}

.page-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 800;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.service-detail {
    padding: 40px;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
}

.service-detail h2 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 28px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 15px 0 20px;
}

.service-detail ul {
    margin: 20px 0;
    padding-left: 25px;
}

.service-detail ul li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.booking-form-section {
    margin-top: 60px;
    padding: 50px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.booking-form-section h2 {
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
}

.booking-form-section > p {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
}

.contact-layout {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 22px;
}

.contact-block p {
    line-height: 1.7;
    color: var(--text-color);
}

.contact-block a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-block a:hover {
    text-decoration: underline;
}

.contact-block .note {
    font-size: 16px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.map-placeholder {
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.map-placeholder p {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--text-color);
}

.additional-contact-info {
    margin-top: 60px;
}

.additional-contact-info h2 {
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 20px;
}

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

.cta-box {
    margin-top: 50px;
    padding: 40px;
    background: var(--bg-accent);
    border-radius: 10px;
    text-align: center;
}

.cta-box h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 25px;
    color: var(--text-light);
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 17px;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 17px;
}

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

.thanks-page {
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-page h1 {
    margin-bottom: 20px;
}

.confirmation-details {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.confirmation-details h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
}

.confirmation-details p {
    margin-bottom: 12px;
    font-size: 17px;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
}

.next-steps h2 {
    margin-bottom: 20px;
}

.next-steps ol {
    padding-left: 25px;
    text-align: left;
}

.next-steps ol li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.additional-info-thanks {
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-accent);
    border-radius: 8px;
}

.additional-info-thanks h2 {
    margin-top: 0;
}

.additional-info-thanks a {
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-actions {
    margin: 40px 0;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-share {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.social-share h3 {
    margin-bottom: 10px;
}

.legal-page {
    font-size: 17px;
    line-height: 1.7;
}

.legal-page h1 {
    margin-bottom: 10px;
}

.legal-page .last-updated {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 28px;
    color: var(--primary-color);
}

.legal-page h3 {
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: 22px;
    color: var(--text-color);
}

.legal-page h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--text-color);
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page li {
    margin-bottom: 10px;
}

.legal-page p {
    margin-bottom: 20px;
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--primary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

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

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cta-inline {
    margin: 50px 0;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

.cta-inline h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.cta-inline p {
    margin-bottom: 25px;
    color: var(--text-light);
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }

    .nav-menu li a.active::after {
        display: none;
    }

    .two-column-info {
        flex-direction: column;
    }

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

    .story-intro h1 {
        font-size: 32px;
    }

    .lead-text {
        font-size: 19px;
    }

    .story-content {
        font-size: 18px;
    }

    .story-content h2 {
        font-size: 28px;
    }

    .final-cta h2 {
        font-size: 28px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-story,
    .page-content {
        padding: 40px 20px 60px;
    }

    .form-section,
    .booking-form-section {
        padding: 30px 20px;
    }

    .service-detail {
        padding: 25px;
    }

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

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

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .story-intro h1 {
        font-size: 26px;
    }

    .lead-text {
        font-size: 17px;
    }

    .story-content {
        font-size: 17px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    body {
        font-size: 17px;
    }
}
