* {
    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: #2c3e50;
    background-color: #fafafa;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 400;
    transition: color 0.2s;
}

.nav a:hover {
    color: #3498db;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie,
.btn-cookie-secondary {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

.btn-cookie {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.editorial-main {
    background-color: #ffffff;
}

.story-flow {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

.hero-editorial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 3rem 2rem;
}

.hero-overlay h1 {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.page-hero-editorial {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #34495e;
}

.page-hero-editorial.small {
    height: 400px;
}

.page-hero-editorial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.intro-narrative {
    margin-bottom: 4rem;
}

.intro-narrative h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.intro-narrative p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

.inline-image-block {
    margin: 4rem 0;
    background-color: #f8f9fa;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-caption {
    padding: 1.5rem;
    font-size: 0.95rem;
    font-style: italic;
    color: #7f8c8d;
    text-align: center;
}

.problem-insight {
    margin-bottom: 4rem;
}

.problem-insight h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.problem-insight p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.services-editorial {
    margin: 5rem 0;
}

.services-editorial > h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.service-story {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.service-story.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 0 0 45%;
    background-color: #ecf0f1;
}

.service-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-text {
    flex: 1;
    padding: 1rem 0;
}

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

.service-text p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #27ae60;
    margin: 1.5rem 0;
}

.select-service-btn {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.booking-editorial {
    margin: 5rem 0;
    padding: 3rem;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.booking-editorial.hidden {
    display: none;
}

.booking-editorial h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.selected-service-display {
    background-color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    border-left: 4px solid #3498db;
}

.selected-service-display p {
    margin-bottom: 0.5rem;
}

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

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

.form-group label {
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 1rem;
}

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

.trust-building {
    margin: 5rem 0;
}

.trust-building h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.testimonial {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #95a5a6;
}

.testimonial p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial cite {
    font-style: normal;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.final-context {
    margin-bottom: 4rem;
}

.final-context h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.final-context p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.services-detailed {
    margin: 4rem 0;
}

.service-detail-block {
    margin-bottom: 5rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

.service-image-large {
    flex: 0 0 45%;
    background-color: #ecf0f1;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-duration {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.service-price-large {
    font-size: 1.5rem;
    font-weight: 600;
    color: #27ae60;
    margin: 1.5rem 0;
}

.service-cta {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

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

.booking-info {
    margin: 5rem 0;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.booking-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.booking-info p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.team-philosophy,
.approach-explanation,
.values-section,
.operational-reality,
.growth-section {
    margin-bottom: 4rem;
}

.team-philosophy h2,
.approach-explanation h2,
.values-section h2,
.operational-reality h2,
.growth-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-philosophy p,
.approach-explanation p,
.values-section p,
.operational-reality p,
.growth-section p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.contact-intro {
    margin-bottom: 3rem;
}

.contact-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-intro p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.contact-details {
    margin: 4rem 0;
}

.contact-block {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.contact-block p {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.contact-email {
    color: #2c3e50;
    font-weight: 500;
}

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

.contact-guidance {
    margin-bottom: 4rem;
}

.contact-guidance h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-guidance p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.faq-section {
    margin: 4rem 0;
}

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

.faq-item {
    margin-bottom: 2.5rem;
}

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

.faq-item p {
    font-size: 1.05rem;
    color: #34495e;
}

.contact-alternative {
    margin-top: 4rem;
    padding: 2.5rem;
    background-color: #ecf0f1;
    border-radius: 8px;
    text-align: center;
}

.contact-alternative h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-alternative p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.inline-cta {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.inline-cta:hover {
    background-color: #2980b9;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.booking-summary {
    background-color: #ecf0f1;
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 8px;
}

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

.booked-service {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.booked-price {
    font-size: 1.1rem;
    color: #27ae60;
    font-weight: 600;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.next-steps p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
}

.btn-primary,
.btn-secondary {
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 1px solid #3498db;
}

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

.preparation-tips {
    margin-top: 3rem;
    text-align: left;
}

.preparation-tips h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.preparation-tips p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.legal-content {
    max-width: 900px;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: #34495e;
}

.legal-section p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-disclaimer {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #34495e;
}

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

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

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

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }

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

    .service-story,
    .service-story.reverse,
    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
    }

    .service-visual,
    .service-image-large {
        flex: 1;
        width: 100%;
    }

    .nav {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}