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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a9aba;
    --accent-color: #e8914b;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 1.5rem 1rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #27ae60;
}

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

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

.nav-minimal {
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-medium);
    transition: color 0.3s ease;
}

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

.editorial-layout {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.hero-story {
    margin-bottom: 3.5rem;
}

.story-header {
    margin-bottom: 2.5rem;
}

.story-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    font-weight: 800;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-medium);
    font-weight: 400;
}

.story-image {
    margin: 2.5rem 0;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
}

.story-content {
    margin-top: 3rem;
}

.text-block {
    margin-bottom: 2.5rem;
}

.text-block h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.text-block h3 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    margin-top: 1.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.text-block h4 {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 0.6rem;
    margin-top: 1.2rem;
    color: var(--text-medium);
    font-weight: 600;
}

.text-block p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.text-block ul,
.text-block ol {
    margin-bottom: 1.2rem;
    padding-left: 1.8rem;
}

.text-block li {
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

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

.link-cta {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    padding: 0.6rem 0;
    border-bottom: 2px solid var(--primary-color);
}

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

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

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

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

.highlight-box {
    background-color: var(--background-light);
    border-left: 4px solid var(--accent-color);
    padding: 1.8rem;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.highlight-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.highlight-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 0;
}

.highlight-box ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.highlight-box li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

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

.service-card {
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.service-details .duration {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.btn-select {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-select:active {
    transform: scale(0.98);
}

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

.form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-section p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    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(--primary-color);
}

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

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

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

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

.testimonial-block blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-medium);
    margin: 0;
}

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

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

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.site-footer {
    background-color: var(--text-dark);
    color: #ffffff;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

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

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

.footer-col ul li a:hover {
    color: #ffffff;
}

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

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

.page-header {
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

.legal-date {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2.5rem 0;
}

.contact-block {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-note {
    margin-top: 2rem;
    padding: 1.2rem;
    background-color: var(--background-white);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.contact-note p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 0;
}

.map-placeholder img {
    width: 100%;
    border-radius: 8px;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

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

.success-icon {
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.service-confirm {
    margin: 1.5rem 0;
}

.service-highlight {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 1rem 0;
}

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

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.additional-info {
    margin: 2rem 0;
}

.additional-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.additional-info p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.thanks-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-reminder {
    margin-top: 2rem;
    padding: 1.2rem;
    background-color: var(--background-light);
    border-radius: 6px;
    text-align: left;
}

.contact-reminder p {
    font-size: 0.95rem;
    margin: 0;
}

.return-home {
    margin-top: 2.5rem;
}

.legal-page .text-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.legal-page .text-block th,
.legal-page .text-block td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.legal-page .text-block th {
    background-color: var(--background-light);
    font-weight: 600;
    color: var(--text-dark);
}

.legal-page .text-block td {
    color: var(--text-medium);
}

.code-block {
    background-color: #f5f5f5;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    overflow-x: auto;
}

.code-block pre {
    font-family: "Courier New", monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark);
    white-space: pre-wrap;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2.5rem 0;
}

.service-detail-card {
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 2rem;
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-color);
}

.service-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-body {
    padding: 2rem;
}

.service-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.service-body h4 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.service-body ul {
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.service-body li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .contact-info-section {
        flex-direction: row;
        gap: 2rem;
    }

    .contact-block {
        flex: 1;
    }

    .map-placeholder {
        flex: 1;
    }
}

@media (min-width: 768px) {
    .story-header h1 {
        font-size: 3rem;
    }

    .lead-text {
        font-size: 1.4rem;
    }

    .text-block h2 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 2.5rem;
    }
}

@media (max-width: 639px) {
    .nav-links {
        gap: 1.2rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .story-header h1 {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.15rem;
    }

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

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