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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container-fluid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.container-medium {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1000px;
    width: 100%;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #357abd;
}

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

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

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-main {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    font-size: 15px;
    color: #333333;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #4a90e2;
}

.ad-notice {
    padding-left: 20px;
    border-left: 1px solid #e0e0e0;
}

.ad-label {
    font-size: 12px;
    color: #666666;
    font-style: italic;
}

.hero-magazine {
    padding: 60px 0 80px;
    background-color: #f8f8f8;
}

.hero-grid-asymmetric {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text-panel {
    flex: 0 0 45%;
}

.hero-image-panel {
    flex: 0 0 55%;
    background-color: #e8e8e8;
}

.headline-large {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.subheadline {
    font-size: 20px;
    line-height: 1.5;
    color: #555555;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #4a90e2;
}

.intro-editorial {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-text {
    font-size: 22px;
    line-height: 1.7;
    color: #333333;
}

.philosophy-section {
    padding: 100px 0;
    background-color: #fafafa;
}

.magazine-columns {
    display: flex;
    gap: 60px;
}

.column-primary {
    flex: 0 0 58%;
}

.column-secondary {
    flex: 0 0 42%;
    background-color: #e8e8e8;
}

.column-primary h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.column-primary p {
    font-size: 17px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 18px;
}

.services-editorial {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-heading-offset {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    padding-left: 40px;
    color: #1a1a1a;
}

.services-magazine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card-editorial {
    flex: 0 0 calc(33.333% - 27px);
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.service-card-editorial:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-visual {
    background-color: #e8e8e8;
    overflow: hidden;
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 12px;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-top: auto;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 24px;
    background-color: #f0f0f0;
    border: 1px solid #d0d0d0;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.testimonial-inline {
    padding: 80px 0;
    background-color: #2a2a2a;
    color: #ffffff;
}

.testimonial-quote {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
}

.testimonial-quote cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #cccccc;
}

.approach-section {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.split-content-reverse {
    display: flex;
    gap: 50px;
    align-items: center;
}

.content-block {
    flex: 0 0 52%;
}

.visual-block {
    flex: 0 0 48%;
    background-color: #e8e8e8;
}

.content-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.content-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 16px;
}

.booking-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.form-wrapper-editorial {
    background-color: #fafafa;
    padding: 60px;
    border: 1px solid #e0e0e0;
}

.form-wrapper-editorial h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 16px;
    color: #555555;
    margin-bottom: 40px;
}

.contact-form-styled {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
}

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

.form-group input[readonly] {
    background-color: #f0f0f0;
    color: #666666;
}

.btn-submit-form {
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-form:hover {
    background-color: #4a90e2;
}

.final-statement {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.closing-text {
    font-size: 20px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 30px;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.footer-main {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    font-size: 14px;
    color: #cccccc;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #444444;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999999;
}

.disclaimer-text {
    font-size: 12px;
    color: #888888;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #222222;
    text-align: left;
}

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    padding: 80px 0 60px;
    background-color: #f8f8f8;
    text-align: center;
}

.page-hero-about h1,
.page-hero-services h1,
.page-hero-contact h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.lead-text {
    font-size: 20px;
    color: #555555;
    line-height: 1.6;
}

.story-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.editorial-layout {
    display: flex;
    gap: 50px;
}

.text-column-main {
    flex: 0 0 60%;
}

.image-column-side {
    flex: 0 0 40%;
    background-color: #e8e8e8;
}

.text-column-main h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.text-column-main p {
    font-size: 17px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 18px;
}

.philosophy-block {
    padding: 80px 0;
    background-color: #fafafa;
}

.philosophy-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.philosophy-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 16px;
}

.approach-detail {
    padding: 100px 0;
    background-color: #ffffff;
}

.centered-heading {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.process-grid-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.process-item {
    flex: 0 0 calc(50% - 20px);
    padding: 30px;
    background-color: #f8f8f8;
    border-left: 4px solid #1a1a1a;
}

.process-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.process-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}

.values-statement {
    padding: 80px 0;
    background-color: #fafafa;
}

.values-statement h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.values-statement p {
    font-size: 18px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 16px;
}

.team-mention {
    padding: 80px 0;
    background-color: #ffffff;
}

.team-mention h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.team-mention p {
    font-size: 17px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 16px;
}

.cta-about {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.cta-box-centered {
    text-align: center;
}

.cta-box-centered h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-box-centered p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 30px;
}

.btn-cta-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4a90e2;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #357abd;
}

.services-detailed {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-magazine-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-full-width {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 60px;
}

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

.service-split {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

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

.service-image-large {
    flex: 0 0 40%;
    background-color: #e8e8e8;
}

.service-details {
    flex: 0 0 60%;
}

.service-details h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 16px;
}

.pricing-large {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-top: 24px;
    margin-bottom: 20px;
}

.booking-services {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.additional-info {
    padding: 60px 0;
    background-color: #fafafa;
}

.additional-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.additional-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 14px;
}

.contact-info-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-layout-asymmetric {
    display: flex;
    gap: 60px;
}

.contact-details-panel {
    flex: 0 0 55%;
}

.contact-visual-panel {
    flex: 0 0 45%;
    background-color: #e8e8e8;
}

.contact-details-panel h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.info-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}

.note-text {
    font-size: 14px;
    color: #888888;
    font-style: italic;
    margin-top: 8px;
}

.location-context {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.location-context h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.location-context p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 14px;
}

.inquiry-types {
    padding: 80px 0;
    background-color: #ffffff;
}

.inquiry-types h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.inquiry-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.inquiry-item {
    flex: 0 0 calc(50% - 15px);
    padding: 30px;
    background-color: #f8f8f8;
}

.inquiry-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.inquiry-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
}

.consultation-info {
    padding: 60px 0;
    background-color: #fafafa;
}

.consultation-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.consultation-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 14px;
}

.thanks-hero {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.thanks-content-centered {
    text-align: center;
}

.thanks-content-centered h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.confirmation-text {
    font-size: 20px;
    color: #555555;
    margin-bottom: 40px;
}

.service-confirmation {
    margin-bottom: 40px;
}

.selected-service-display {
    font-size: 18px;
    color: #1a1a1a;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    display: inline-block;
}

.next-steps {
    margin-bottom: 50px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.steps-list {
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
    padding-left: 20px;
}

.steps-list li {
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-return {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-return:hover {
    background-color: #4a90e2;
}

.additional-resources {
    padding: 60px 0;
    background-color: #ffffff;
}

.additional-resources h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.additional-resources p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 14px;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.last-updated {
    font-size: 14px;
    color: #888888;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #333333;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 16px;
    padding-left: 30px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 8px;
}

.legal-page a {
    color: #4a90e2;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #357abd;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f8f8f8;
    font-weight: 700;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 15px;
    color: #555555;
}

@media (max-width: 768px) {
    .header-layout {
        flex-direction: column;
        gap: 20px;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .ad-notice {
        border-left: none;
        padding-left: 0;
    }

    .hero-grid-asymmetric,
    .magazine-columns,
    .split-content-reverse,
    .editorial-layout,
    .contact-layout-asymmetric,
    .service-split {
        flex-direction: column;
    }

    .hero-text-panel,
    .hero-image-panel,
    .column-primary,
    .column-secondary,
    .content-block,
    .visual-block,
    .text-column-main,
    .image-column-side,
    .contact-details-panel,
    .contact-visual-panel,
    .service-image-large,
    .service-details {
        flex: 0 0 100%;
    }

    .headline-large {
        font-size: 36px;
    }

    .service-card-editorial {
        flex: 0 0 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .process-item,
    .inquiry-item {
        flex: 0 0 100%;
    }

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

    .cookie-content {
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
    }
}