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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fafafa;
    font-size: 18px;
}

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

a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #666;
}

/* Navigation - Minimal Style */
.nav-minimal {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.2rem 0;
}

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

.logo {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: #666;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1a1a1a;
}

/* Editorial Content Layout - Article-like structure */
.editorial-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.story-header {
    margin-bottom: 3rem;
    text-align: left;
}

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

.intro-lead {
    font-size: 1.4rem;
    color: #555;
    line-height: 1.5;
    margin-top: 1rem;
}

/* Story Blocks - Narrow centered text */
.story-block {
    margin: 3rem 0;
}

.story-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.story-block h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem 0;
    font-weight: 600;
    color: #2c2c2c;
}

.story-block p {
    margin-bottom: 1.2rem;
    color: #2c2c2c;
    font-size: 1.05rem;
}

.story-block ul,
.story-block ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.story-block li {
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.story-block strong {
    font-weight: 600;
    color: #1a1a1a;
}

/* Images - Inline with content */
.story-image {
    margin: 3rem 0;
    overflow: hidden;
    border-radius: 4px;
}

.story-image img {
    width: 100%;
    object-fit: cover;
}

.story-image-small {
    margin: 2.5rem 0;
    overflow: hidden;
    border-radius: 4px;
}

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

/* Inline CTAs - Inside content flow */
.inline-cta {
    margin: 3rem 0;
    text-align: left;
}

.cta-link {
    font-size: 1.1rem;
    color: #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.cta-link:hover {
    opacity: 0.7;
}

.cta-button-primary {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cta-button-primary:hover {
    background: #333;
}

.cta-button-secondary {
    display: inline-block;
    background: #f5f5f5;
    color: #1a1a1a;
    padding: 0.9rem 1.8rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.3s ease;
    border: 1px solid #e0e0e0;
}

.cta-button-secondary:hover {
    background: #e8e8e8;
}

/* Testimonials - Inline quotes */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background: #f9f9f9;
    border-left: 4px solid #1a1a1a;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0.8rem;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 0.9rem;
    color: #666;
}

/* Service Cards - Within content flow */
.service-card {
    margin: 2rem 0;
    padding: 2rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

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

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

.service-detail {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 1.5rem;
}

/* Detailed Service Cards */
.services-list {
    margin: 3rem 0;
}

.service-card-detailed {
    margin: 2.5rem 0;
    padding: 2.5rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

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

.service-specs {
    margin: 1.5rem 0;
    padding: 1.2rem;
    background: #f9f9f9;
    border-radius: 4px;
}

.service-specs p {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    color: #555;
}

.price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.5rem 0;
}

.service-card-detailed .cta-button-secondary {
    margin-top: 1rem;
}

/* FAQ Items */
.faq-item {
    margin: 2rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1rem;
    color: #555;
}

/* Form Section */
.form-section {
    margin: 4rem 0;
    padding: 3rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-section > p {
    margin-bottom: 2rem;
    color: #555;
}

.order-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: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    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: #1a1a1a;
}

.cta-button-submit {
    background: #1a1a1a;
    color: #fff;
    padding: 1.1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-button-submit:hover {
    background: #333;
}

/* Contact Info */
.contact-info {
    margin: 2.5rem 0;
}

.contact-detail {
    font-size: 1.15rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 1rem 0;
    line-height: 1.8;
}

.contact-detail a {
    color: #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.contact-detail a:hover {
    opacity: 0.7;
}

/* Thanks Page */
.thanks-page {
    text-align: left;
}

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

.service-confirmation {
    margin: 1.5rem 0;
    padding: 1.2rem;
    background: #f0f8f0;
    border-left: 4px solid #4caf50;
    border-radius: 4px;
}

.service-selected {
    font-size: 1.05rem;
    color: #2c5f2d;
}

.thanks-links {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.thanks-links li {
    margin: 1rem 0;
}

.thanks-links a {
    font-size: 1.05rem;
    color: #1a1a1a;
    border-bottom: 1px solid #d0d0d0;
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

.thanks-links a:hover {
    border-color: #1a1a1a;
}

.final-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

/* Legal Pages */
.legal-page .story-block {
    margin: 2rem 0;
}

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

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1.5rem 0;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

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

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

.footer-column p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
}

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

.footer-column li {
    margin: 0.6rem 0;
}

.footer-column a {
    color: #aaa;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0 auto;
    padding: 1.5rem 2rem 0 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    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;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cookie-btn.accept {
    background: #fff;
    color: #1a1a1a;
}

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

.cookie-btn:hover {
    opacity: 0.8;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
    display: none;
}

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

.sticky-cta-button {
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.2rem;
    }

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

    .editorial-content {
        padding: 2rem 1.5rem;
    }

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

    .intro-lead {
        font-size: 1.2rem;
    }

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

    .story-block p {
        font-size: 1rem;
    }

    .form-section {
        padding: 2rem 1.5rem;
    }

    .service-card,
    .service-card-detailed {
        padding: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        padding: 0 1.5rem;
    }

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

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

    .cookie-btn {
        width: 100%;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .story-header h1 {
        font-size: 1.8rem;
    }

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

    .logo {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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