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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.main-nav {
    display: flex;
    gap: 32px;
}

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

.editorial-layout {
    background: white;
}

.hero-article {
    margin-bottom: 60px;
}

.article-header {
    padding: 80px 0 40px;
    background: var(--light-gray);
}

.article-header h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

.lead {
    font-size: 22px;
    line-height: 1.5;
    color: #555;
    font-weight: 400;
}

.hero-image {
    margin-top: 40px;
}

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

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 36px;
    line-height: 1.3;
    margin: 48px 0 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.content-section h3 {
    font-size: 24px;
    line-height: 1.4;
    margin: 32px 0 16px;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.8;
}

.intro-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #444;
}

.image-inline {
    margin: 48px 0;
}

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

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

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

.inline-cta {
    margin: 48px 0;
    text-align: center;
}

.inline-cta-alt {
    background: var(--light-gray);
    padding: 32px;
    margin: 48px 0;
    border-left: 4px solid var(--secondary-color);
}

.inline-cta-alt p {
    margin-bottom: 16px;
}

.inline-link-cta {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 19px;
    text-decoration: none;
    border-bottom: 2px solid var(--secondary-color);
    transition: color 0.2s;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.testimonial-inline {
    background: var(--light-gray);
    padding: 32px;
    margin: 48px 0;
    border-left: 4px solid var(--accent-color);
}

.testimonial-inline blockquote {
    font-style: italic;
}

.testimonial-inline p {
    margin-bottom: 16px;
    font-size: 20px;
}

.testimonial-inline cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #666;
    font-size: 16px;
}

.services-preview {
    background: var(--light-gray);
    padding: 80px 0;
}

.services-preview h2 {
    font-size: 42px;
    margin-bottom: 48px;
    text-align: center;
}

.service-card {
    background: white;
    padding: 40px;
    margin-bottom: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 24px;
    color: #555;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 24px 0;
}

.service-price .price {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
}

.service-price .price-note {
    font-size: 14px;
    color: #777;
}

.service-select {
    width: 100%;
    padding: 14px 24px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.service-select:hover {
    background: #2980b9;
}

.form-section {
    background: white;
    padding: 80px 0;
}

.form-section h2 {
    margin-bottom: 16px;
    text-align: center;
}

.form-section > .container-narrow > p {
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--secondary-color);
}

.final-section {
    background: var(--light-gray);
}

.final-cta {
    text-align: center;
    margin-top: 48px;
}

.site-footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 16px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    text-align: center;
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-content a {
    color: #3498db;
}

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

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.page-header {
    padding: 80px 0 40px;
    background: var(--light-gray);
}

.page-header h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--primary-color);
}

.services-detailed {
    padding: 60px 0;
}

.service-full {
    margin-bottom: 60px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 60px;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h2 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.service-price-main {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.service-price-main .price {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
}

.service-price-main .price-note {
    font-size: 14px;
    color: #777;
}

.service-body ul {
    margin: 24px 0 24px 24px;
    list-style: disc;
}

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

.service-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 24px 0;
}

.service-note p {
    margin: 0;
}

.highlighted-service {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
    border: 2px solid var(--secondary-color);
}

.contact-info-block {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
    margin: 48px 0;
}

.contact-item {
    margin-bottom: 32px;
}

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

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

.contact-item p {
    margin-bottom: 8px;
}

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

.contact-note {
    font-size: 14px;
    color: #666;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

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

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

.map-placeholder {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
    margin: 32px 0;
    text-align: center;
}

.thanks-page {
    min-height: 60vh;
}

.thanks-content {
    padding: 80px 0;
}

.thanks-header {
    text-align: center;
    margin-bottom: 48px;
}

.success-icon {
    margin-bottom: 24px;
}

.thanks-header h1 {
    font-size: 42px;
    color: var(--success-color);
    margin-bottom: 16px;
}

.thanks-message {
    max-width: 680px;
    margin: 0 auto;
}

.service-confirmation {
    background: var(--light-gray);
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
    border-left: 4px solid var(--success-color);
}

.next-steps {
    margin: 48px 0;
}

.step {
    margin-bottom: 32px;
}

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

.important-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 24px;
    margin: 32px 0;
}

.action-list {
    list-style: none;
    margin: 24px 0;
}

.action-list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.action-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.cta-block {
    text-align: center;
    margin: 48px 0;
}

.reassurance {
    background: var(--light-gray);
    padding: 24px;
    border-radius: 8px;
    margin-top: 48px;
}

.reassurance p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.additional-info {
    background: var(--light-gray);
}

.additional-info ul {
    margin: 24px 0 24px 24px;
    list-style: disc;
}

.additional-info ul li {
    margin-bottom: 12px;
}

.back-home {
    text-align: center;
    margin-top: 40px;
}

.legal-page ul {
    margin: 16px 0 24px 24px;
    list-style: disc;
}

.legal-page ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

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

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

    .main-nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .article-header h1 {
        font-size: 36px;
    }

    .lead {
        font-size: 18px;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        gap: 16px;
    }

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

    .cookie-buttons button {
        width: 100%;
    }

    body {
        font-size: 16px;
    }

    .intro-text {
        font-size: 18px;
    }

    .testimonial-inline p {
        font-size: 18px;
    }
}
