/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.75;
    color: #2c3e50;
    background-color: #fafafa;
    overflow-x: hidden;
}

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

a:hover {
    color: #1a5c7d;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Container */
.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.nav-links a {
    font-size: 0.95rem;
    color: #5a6c7d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-links a:hover {
    color: #2c3e50;
}

.ad-label {
    font-size: 0.75rem;
    color: #95a5a6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 4px 10px;
    background-color: #f8f9fa;
    border-radius: 3px;
    margin-left: 12px;
}

/* Article Header */
.article-header {
    padding: 72px 0 48px;
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #5a6c7d;
    margin: 0 auto;
    max-width: 640px;
}

/* Text Blocks */
.text-block {
    margin: 48px 0;
}

.text-block h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.3;
}

.text-block h3 {
    font-size: 1.35rem;
    margin: 32px 0 16px;
    color: #34495e;
    font-weight: 600;
}

.text-block h4 {
    font-size: 1.15rem;
    margin: 24px 0 12px;
    color: #34495e;
    font-weight: 600;
}

.text-block p {
    margin-bottom: 24px;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.text-block ul,
.text-block ol {
    margin: 24px 0 24px 32px;
}

.text-block li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.text-block strong {
    font-weight: 600;
    color: #2c3e50;
}

/* Article Images */
.article-image,
.article-image-small {
    margin: 56px 0;
    background-color: #e8e8e8;
}

.article-image img,
.article-image-small img {
    width: 100%;
    object-fit: cover;
}

.article-image img {
    height: 480px;
}

.article-image-small img {
    height: 360px;
}

/* Insight Box */
.insight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #2980b9;
    padding: 32px;
    margin: 48px 0;
}

.insight-box h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.insight-box p {
    font-size: 1.05rem;
    color: #3a3a3a;
    margin: 0;
}

/* Testimonials */
.testimonial-inline {
    margin: 56px 0;
    padding: 0 32px;
}

.testimonial-inline blockquote {
    border-left: 3px solid #bdc3c7;
    padding-left: 24px;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.2rem;
    line-height: 1.65;
    color: #5a6c7d;
    margin-bottom: 12px;
}

.testimonial-inline cite {
    font-size: 0.95rem;
    color: #95a5a6;
    font-style: normal;
    display: block;
    margin-top: 12px;
}

/* CTA Inline */
.cta-inline {
    background-color: #ecf5fb;
    padding: 48px;
    margin: 64px 0;
    text-align: center;
    border-radius: 8px;
}

.cta-inline h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-inline p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 28px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #1a5c7d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.3);
}

.btn-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    background-color: #d5dbdd;
    color: #2c3e50;
}

/* References */
.article-footer {
    margin-top: 72px;
    padding-top: 32px;
    border-top: 2px solid #e8e8e8;
}

.article-footer h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.references {
    margin-left: 20px;
}

.references li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #5a6c7d;
}

.ref-link {
    font-size: 0.9rem;
    color: #2980b9;
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 24px 0;
}

.service-item {
    margin-bottom: 72px;
    padding-bottom: 48px;
    border-bottom: 1px solid #e8e8e8;
}

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

.service-item h2 {
    font-size: 1.75rem;
    margin-bottom: 24px;
    color: #2c3e50;
}

.service-image {
    margin: 24px 0;
    background-color: #e8e8e8;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-item ul {
    margin: 20px 0 20px 32px;
}

.service-item li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 32px 0 24px;
    padding: 20px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-top: 6px;
}

.btn-select-service {
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1e8449;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

/* Form Section */
.form-section {
    margin: 72px 0;
    padding: 48px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.form-section h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.selected-service-info {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 32px;
    padding: 16px;
    background-color: #ecf5fb;
    border-radius: 4px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid #d5dbdd;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

/* Contact Section */
.contact-info-section {
    margin: 48px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact-item {
    padding-bottom: 32px;
    border-bottom: 1px solid #e8e8e8;
}

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

.contact-item h2 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-value {
    font-size: 1.15rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-top: 12px;
}

/* Thanks Page */
.thanks-message {
    padding: 72px 0;
    text-align: center;
}

.thanks-message h1 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-details {
    margin: 48px 0;
}

.order-info {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.order-info h2 {
    font-size: 1.35rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.order-info p {
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.next-steps {
    margin: 56px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 24px;
    color: #2c3e50;
    text-align: center;
}

.steps-list {
    margin-left: 32px;
}

.steps-list li {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: #3a3a3a;
}

.tips-section {
    margin: 56px 0;
    text-align: center;
}

.tips-section h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #2c3e50;
}

.tips-section p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 28px;
}

.contact-reminder {
    margin: 56px 0;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-reminder h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-reminder p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin: 0;
}

/* Legal Pages */
.legal-page .text-block {
    margin: 32px 0;
}

.legal-page h2 {
    margin-top: 48px;
}

.legal-page h3 {
    margin-top: 32px;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #f8f9fa;
    padding: 48px 0;
    margin-top: 72px;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
}

/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 56px 0 32px;
    margin-top: 72px;
}

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

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 600;
}

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

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    font-size: 0.95rem;
    color: #bdc3c7;
}

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

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    min-width: 250px;
}

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

.btn-cookie {
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.btn-cookie.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #7f8c8d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }

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

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

    .text-block h3 {
        font-size: 1.25rem;
    }

    .nav-links {
        gap: 16px;
    }

    .ad-label {
        width: 100%;
        margin: 12px 0 0 0;
        text-align: center;
    }

    .cta-inline {
        padding: 32px 24px;
    }

    .form-section {
        padding: 32px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

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

    .btn-cookie {
        width: 100%;
    }

    .article-image img,
    .service-image img {
        height: 300px;
    }

    .article-image-small img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .article-header {
        padding: 48px 0 36px;
    }

    .article-header h1 {
        font-size: 1.75rem;
    }

    .insight-box {
        padding: 24px;
    }

    .testimonial-inline {
        padding: 0 16px;
    }
}