:root {
    --color-primary: #2d5a4a;
    --color-secondary: #8fb4a3;
    --color-accent: #d4a574;
    --color-bg-light: #f8f6f3;
    --color-bg-dark: #2d3b38;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --font-heading: 'Georgia', serif;
    --font-body: 'Helvetica Neue', Arial, sans-serif;
    --max-width-narrow: 720px;
    --max-width-medium: 960px;
    --max-width-wide: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
}

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

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

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-primary);
}

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

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

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

p {
    margin-bottom: 1.2rem;
}

.ad-disclosure {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.site-header {
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-primary);
    font-weight: 400;
}

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

.main-nav a {
    color: var(--color-text);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    margin: 5px 0;
    transition: transform 0.3s ease;
}

.hero-editorial {
    background-color: var(--color-bg-light);
    padding: 5rem 2rem;
}

.hero-content {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content .lead {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.hero-image-container {
    max-width: var(--max-width-medium);
    margin: 3rem auto 0;
    background-color: var(--color-secondary);
    border-radius: 8px;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 400px;
}

.editorial-section {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 4rem 2rem;
}

.editorial-section.wide {
    max-width: var(--max-width-medium);
}

.editorial-section.full-bg {
    max-width: 100%;
    background-color: var(--color-bg-light);
}

.editorial-section.full-bg .content-wrap {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.inline-image {
    margin: 2.5rem 0;
    background-color: var(--color-secondary);
    border-radius: 6px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: 320px;
}

.inline-image.float-left {
    float: left;
    width: 45%;
    margin: 0.5rem 2rem 1.5rem 0;
}

.inline-image.float-right {
    float: right;
    width: 45%;
    margin: 0.5rem 0 1.5rem 2rem;
}

.cta-inline {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1rem;
    margin: 1rem 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-inline:hover {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.9rem 2.3rem;
    border-radius: 4px;
    font-size: 1rem;
    margin: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 2rem;
    transition: box-shadow 0.3s ease;
}

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

.service-card h3 {
    margin-bottom: 0.8rem;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-accent);
    margin: 1rem 0;
}

.service-card .price span {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.service-card ul {
    list-style: none;
    margin: 1rem 0;
}

.service-card ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

.testimonial-block {
    background-color: var(--color-bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    position: relative;
}

.testimonial-block::before {
    content: "„";
    font-size: 4rem;
    color: var(--color-secondary);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-block p {
    font-style: italic;
    font-size: 1.1rem;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.testimonial-block .author {
    font-style: normal;
    color: var(--color-text-light);
    font-size: 0.9rem;
    padding-left: 2rem;
}

.form-section {
    background-color: var(--color-primary);
    padding: 4rem 2rem;
}

.form-section .content-wrap {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.form-section h2 {
    color: var(--color-white);
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text);
}

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

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

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

.form-submit {
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: var(--color-bg-dark);
}

.about-intro {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin: 2rem 0;
}

.about-intro .text-content {
    flex: 1;
}

.about-intro .image-content {
    flex: 0 0 40%;
    background-color: var(--color-secondary);
    border-radius: 8px;
    overflow: hidden;
}

.about-intro .image-content img {
    width: 100%;
    height: 350px;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-item {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 250px;
    padding: 1.5rem;
    background-color: var(--color-bg-light);
    border-radius: 6px;
}

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

.contact-info-section {
    background-color: var(--color-bg-light);
    padding: 4rem 2rem;
}

.contact-info-section .content-wrap {
    max-width: var(--max-width-medium);
    margin: 0 auto;
}

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

.contact-block {
    flex: 1;
    min-width: 250px;
}

.contact-block h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-block p {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

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

.footer-inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

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

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

.footer-col h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.disclaimer {
    background-color: var(--color-bg-light);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

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

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

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

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

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
}

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

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

.legal-page {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.legal-page h2 {
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem;
}

.legal-page h3 {
    font-size: 1.15rem;
    margin: 2rem 0 0.8rem;
}

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

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

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

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

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

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

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

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

    h2 {
        font-size: 1.6rem;
    }

    .header-inner {
        padding: 1rem;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        right: 0;
    }

    .nav-toggle {
        display: block;
        z-index: 101;
    }

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

    .hero-image-container img {
        height: 250px;
    }

    .inline-image.float-left,
    .inline-image.float-right {
        float: none;
        width: 100%;
        margin: 2rem 0;
    }

    .about-intro {
        flex-direction: column;
    }

    .about-intro .image-content {
        flex: none;
        width: 100%;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

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