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

:root {
    --color-primary: #2c3e50;
    --color-secondary: #34495e;
    --color-accent: #3498db;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg: #fff;
    --color-bg-alt: #f8f9fa;
    --color-border: #e0e0e0;
    --spacing-unit: 1rem;
    --max-width-narrow: 720px;
    --max-width-wide: 1200px;
}

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

.header-minimal {
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.nav-inline {
    display: flex;
    gap: 1.5rem;
}

.nav-inline a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.hero-story {
    padding: 4rem 0 2rem;
}

.hero-content-narrow {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem 3rem;
}

.hero-story h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

.hero-image-full {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

.hero-image-full img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: var(--color-bg-alt);
}

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

.content-story h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    color: var(--color-primary);
}

.content-story h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    color: var(--color-secondary);
}

.content-story h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--color-secondary);
}

.content-story p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.content-story ul {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style-type: disc;
}

.content-story li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.inline-image {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: var(--color-bg-alt);
}

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

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

.info-box {
    background-color: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.info-box h4 {
    margin-top: 0;
}

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

.cta-inline h3 {
    color: #fff;
    margin-top: 0;
}

.cta-inline p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--color-accent);
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s, transform 0.1s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-primary);
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
    border: 2px solid var(--color-primary);
    cursor: pointer;
    font-size: 1rem;
}

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

.service-cards-stacked {
    margin: 3rem 0;
}

.service-card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    transition: box-shadow 0.2s;
}

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

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--color-bg-alt);
}

.service-content {
    padding: 2rem;
}

.service-content h4 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 1.5rem 0;
}

.btn-service {
    width: 100%;
    background-color: var(--color-primary);
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.trust-section {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 2px solid var(--color-border);
    border-bottom: 2px solid var(--color-border);
}

.trust-section h3 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.testimonial-block {
    background-color: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.testimonial-block p {
    font-style: italic;
    margin-bottom: 1rem;
}

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

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

.benefits-reveal h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.benefit-item h4 {
    margin-top: 0;
}

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

.form-section h2 {
    margin-top: 0;
}

.selected-service {
    background-color: var(--color-accent);
    color: #fff;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-weight: 600;
}

.order-form {
    max-width: 500px;
}

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

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

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

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

.btn-submit {
    background-color: var(--color-accent);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #2980b9;
}

.disclaimer {
    margin: 3rem 0 2rem;
    padding: 1.5rem;
    background-color: #fff8e1;
    border-left: 4px solid #ffa726;
    border-radius: 4px;
}

.disclaimer small {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

.footer {
    background-color: var(--color-primary);
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-cookie:first-child {
    background-color: var(--color-accent);
    color: #fff;
}

.btn-cookie:first-child:hover {
    background-color: #2980b9;
}

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

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

.page-content {
    padding: 3rem 0;
    min-height: 60vh;
}

.page-intro {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.about-intro {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.about-image {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: var(--color-bg-alt);
}

.about-features {
    margin: 2rem 0;
}

.feature-block {
    background-color: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.feature-block h3 {
    margin-top: 0;
}

.about-cta {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

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

.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--color-border);
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-header h2 {
    margin: 0;
}

.price-badge {
    background-color: var(--color-accent);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-image-box {
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.service-image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: var(--color-bg-alt);
}

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

.services-cta h2 {
    color: #fff;
    margin-top: 0;
}

.services-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.contact-layout {
    margin: 2rem 0;
}

.contact-info-main {
    margin-bottom: 3rem;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h3 {
    margin-bottom: 0.5rem;
}

.contact-note {
    background-color: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.contact-additional {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--color-border);
}

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

.faq-item h4 {
    margin-bottom: 0.5rem;
}

.thanks-page {
    padding: 4rem 0;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-message {
    margin: 2rem 0;
}

.order-summary {
    background-color: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.order-detail h3 {
    margin-top: 0;
    color: var(--color-primary);
}

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

.thanks-next ol {
    margin-top: 1rem;
}

.thanks-next li {
    margin-bottom: 0.75rem;
}

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

.legal-page {
    padding: 3rem 0;
}

.legal-intro {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

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

.legal-page h2 {
    margin: 2.5rem 0 1rem;
    color: var(--color-primary);
}

.legal-page h3 {
    margin: 2rem 0 0.75rem;
    color: var(--color-secondary);
}

.legal-page p {
    margin-bottom: 1rem;
}

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

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

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

.legal-date {
    margin-top: 3rem;
    font-style: italic;
    color: var(--color-text-light);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid var(--color-border);
}

.cookies-table th {
    background-color: var(--color-bg-alt);
    font-weight: 600;
}

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

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

    .content-story h2 {
        font-size: 1.75rem;
    }

    .content-story h3 {
        font-size: 1.35rem;
    }

    .nav-inline {
        order: 4;
        width: 100%;
        justify-content: center;
    }

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

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}