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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fefefe;
}

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5a7d;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

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

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

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

.btn-cookie-accept:hover {
    background-color: #229954;
}

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

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

.nav-minimal {
    padding: 2rem 1.5rem;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
}

.nav-links a {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

.nav-links a:hover {
    color: #2980b9;
}

.editorial-container {
    padding: 0 1.5rem;
    margin: 0 auto;
}

.story-flow {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 0 5rem;
}

.article-header {
    margin-bottom: 3rem;
    text-align: center;
}

.article-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.article-subtitle {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
    font-style: italic;
}

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

.inline-visual img {
    width: 100%;
}

.inline-visual-small {
    margin: 2.5rem 0;
    border-radius: 6px;
    overflow: hidden;
}

.inline-visual-small img {
    width: 100%;
}

.story-section {
    margin-bottom: 3rem;
}

.story-section p {
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
}

.story-section.alternate {
    background-color: #f9f9f9;
    padding: 2.5rem 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 8px;
}

.story-section.highlight-section {
    background-color: #ecf7fd;
    padding: 2.5rem 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 8px;
    border-left: 4px solid #2980b9;
}

.insight-box {
    background-color: #fff;
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid #e67e22;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.insight-text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1rem;
}

.insight-author {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #777;
    font-style: normal;
}

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

.link-arrow {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.1rem;
    color: #2980b9;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

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

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 1rem;
    color: #555;
}

.service-card .price {
    display: block;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.6rem;
    color: #555;
    font-size: 0.95rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.btn-select-service {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: #2980b9;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.btn-select-service:hover {
    background-color: #1a5a7d;
}

.testimonial-inline {
    background-color: #f4f9fc;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.testimonial-inline p {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
}

.testimonial-inline span {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #777;
    font-style: normal;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 6px;
    border-left: 3px solid #2980b9;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2980b9;
}

.step p {
    margin-bottom: 0;
    color: #555;
}

.cta-section-full {
    background-color: #2c3e50;
    color: #fff;
    padding: 3rem 2rem;
    margin: 4rem -2rem;
    text-align: center;
    border-radius: 8px;
}

.cta-section-full h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-section-full p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #27ae60;
    color: #fff;
    border-radius: 6px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.contact-form-inline {
    background-color: #f9f9f9;
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

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

.form-field label {
    display: block;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #2980b9;
}

.form-field input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.article-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    color: #777;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 6px;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2980b9;
}

.value-item p {
    margin-bottom: 0;
    color: #555;
}

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

.contact-block {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 6px;
    border-left: 3px solid #2980b9;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-block p {
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-block a {
    color: #2980b9;
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-top: 1rem;
}

.link-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.link-list li {
    margin-bottom: 1rem;
}

.link-list a {
    font-size: 1.1rem;
    color: #2980b9;
    font-weight: 500;
}

.link-list a:hover {
    text-decoration: underline;
}

.legal-page h2 {
    margin-top: 3rem;
}

.legal-page h3 {
    margin-top: 2rem;
}

.legal-page strong {
    color: #1a1a1a;
}

.legal-page ul,
.legal-page ol {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.site-footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 3rem 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.footer-links a {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

.footer-copy {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.85rem;
    color: #95a5a6;
    text-align: center;
}

@media (min-width: 768px) {
    .article-title {
        font-size: 3.5rem;
    }

    .article-subtitle {
        font-size: 1.5rem;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .story-section.alternate,
    .story-section.highlight-section {
        margin-left: -3rem;
        margin-right: -3rem;
        padding: 3rem 3rem;
    }

    .cta-section-full {
        margin-left: -3rem;
        margin-right: -3rem;
        padding: 4rem 3rem;
    }

    .contact-info-section {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-block {
        flex: 1 1 calc(50% - 1.25rem);
    }

    .values-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

@media (min-width: 1024px) {
    .services-showcase {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .process-steps {
        flex-direction: row;
    }

    .step {
        flex: 1;
    }
}