/* 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.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

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

a:hover {
    color: #134557;
}

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

.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: 1rem;
}

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

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

/* NAVIGATION */
.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.97);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: #2c2c2c;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu li a {
    color: #2c2c2c;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #1a5f7a;
}

/* EDITORIAL CONTAINER */
.editorial-container {
    margin-top: 70px;
    max-width: 100%;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* EDITORIAL HERO */
.editorial-hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-text-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
}

.hero-text-overlay h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    font-family: 'Arial', sans-serif;
}

/* EDITORIAL SECTIONS */
.editorial-intro {
    padding: 5rem 0 3rem;
    background-color: #ffffff;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.editorial-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.editorial-image-break {
    padding: 3rem 0;
    background-color: #f5f5f5;
}

.editorial-image-break figure {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.editorial-image-break img {
    width: 100%;
    margin-bottom: 1rem;
}

.editorial-image-break figcaption {
    text-align: center;
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
}

.editorial-story {
    padding: 4rem 0;
    background-color: #ffffff;
}

.editorial-story h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
}

.editorial-story p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.btn-inline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5f7a;
    color: #ffffff;
    border-radius: 4px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-inline:hover {
    background-color: #134557;
    color: #ffffff;
}

.editorial-highlight {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.highlight-box {
    max-width: 720px;
    margin: 0 auto;
    padding: 2.5rem;
    background-color: #ffffff;
    border-left: 4px solid #1a5f7a;
}

.highlight-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.benefit-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: bold;
}

/* EDITORIAL SERVICES */
.editorial-services {
    padding: 5rem 0;
    background-color: #ffffff;
}

.editorial-services h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
}

.service-card-editorial {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e0e0e0;
}

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

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

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

.price-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: #1a5f7a;
    color: #ffffff;
    border-radius: 3px;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 0.5rem;
    font-family: 'Arial', sans-serif;
}

/* FORM SECTION */
.editorial-form-section {
    padding: 5rem 0;
    background-color: #f5f5f5;
}

.editorial-form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.editorial-form-section > .content-narrow > p {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.editorial-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5f7a;
}

.form-group textarea {
    resize: vertical;
}

/* BUTTONS */
.btn-primary {
    padding: 1rem 2rem;
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #2c2c2c;
}

/* EDITORIAL CLOSING */
.editorial-closing {
    padding: 4rem 0;
    background-color: #2c2c2c;
    color: #ffffff;
}

.closing-text {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

/* PAGE HEADER */
.page-header {
    padding: 6rem 0 3rem;
    background-color: #f9f9f9;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.subtitle {
    font-size: 1.3rem;
    color: #666;
    font-family: 'Arial', sans-serif;
}

/* EDITORIAL CONTENT */
.editorial-content {
    padding: 4rem 0;
    background-color: #ffffff;
}

.editorial-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.editorial-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.editorial-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.editorial-content ul,
.editorial-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.editorial-content li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

.inline-image {
    margin: 3rem 0;
}

.inline-image img {
    width: 100%;
    border-radius: 4px;
}

.content-list {
    list-style: none;
    padding-left: 0;
}

.content-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.content-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-size: 1.5rem;
}

/* SERVICES GRID */
.services-grid {
    padding: 4rem 0;
    background-color: #ffffff;
}

.service-detail {
    margin-bottom: 3.5rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0;
}

.service-price {
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 0.6rem 1.3rem;
    border-radius: 3px;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
}

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

.service-body h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-body ul {
    list-style: none;
    padding-left: 0;
}

.service-body li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.service-body li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: bold;
}

.service-note {
    font-style: italic;
    color: #666;
    margin-top: 1.5rem;
}

/* CONTACT INFO */
.contact-info {
    padding: 4rem 0;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-block a {
    color: #1a5f7a;
}

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

.contact-additional {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.contact-additional h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

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

.contact-map {
    margin-top: 3rem;
}

.contact-map h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

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

.transport-list {
    list-style: none;
    padding-left: 0;
}

.transport-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.transport-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5f7a;
}

/* THANKS PAGE */
.thanks-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

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

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.thanks-info {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.thanks-next h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.thanks-next ol {
    padding-left: 1.5rem;
}

.thanks-next li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

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

.thanks-actions .btn-secondary {
    border-color: #1a5f7a;
    color: #1a5f7a;
}

.thanks-actions .btn-secondary:hover {
    background-color: #1a5f7a;
    color: #ffffff;
}

.thanks-additional {
    margin-top: 3rem;
    text-align: left;
}

.thanks-additional p {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}

/* LEGAL PAGE */
.legal-page {
    padding-bottom: 4rem;
}

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

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

.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.legal-page th,
.legal-page td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.legal-page th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.legal-date {
    margin-top: 3rem;
    font-style: italic;
    color: #666;
}

/* FOOTER */
.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.95rem;
    color: #cccccc;
}

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

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #cccccc;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: #ffffff;
}

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: none;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.8rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .hero-text-overlay h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content-narrow {
        padding: 0 1.5rem;
    }

    .editorial-hero {
        height: 60vh;
    }

    .editorial-services h2 {
        font-size: 1.8rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}

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

    .nav-minimal {
        padding: 1rem 1.5rem;
    }

    .editorial-form {
        padding: 1.5rem;
    }
}