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

:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #dee2e6;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
}

.nav-minimal {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-brand {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.editorial-container {
    max-width: 1400px;
    margin: 0 auto;
}

.editorial-hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.headline-large {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.subheadline {
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
}

.editorial-intro,
.editorial-content {
    padding: 80px 5%;
}

.text-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.editorial-intro p,
.editorial-content p {
    font-size: 18px;
    margin-bottom: 24px;
}

.inline-cta {
    margin: 40px 0;
    text-align: center;
}

.cta-link {
    display: inline-block;
    color: var(--accent-color);
    font-size: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-link:hover {
    transform: translateX(5px);
}

.editorial-image-break {
    padding: 60px 5%;
    background: var(--light-bg);
}

.image-with-caption {
    max-width: 900px;
    margin: 0 auto;
}

.image-with-caption img {
    width: 100%;
    height: auto;
    display: block;
}

figcaption {
    padding: 15px;
    font-style: italic;
    color: #666;
    font-size: 15px;
    text-align: center;
}

.section-heading {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.3;
}

.section-heading-center {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.editorial-quote {
    font-size: 24px;
    font-style: italic;
    padding: 40px 60px;
    margin: 50px 0;
    border-left: 4px solid var(--accent-color);
    background: var(--light-bg);
    color: var(--primary-color);
}

.content-highlight {
    background: var(--light-bg);
    padding: 40px;
    margin: 40px 0;
    border-radius: 8px;
}

.content-highlight h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.styled-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
}

.styled-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.editorial-image-pair {
    padding: 60px 5%;
}

.image-grid-two {
    display: flex;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.image-grid-two img {
    flex: 1;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.inline-cta-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px;
    margin: 50px 0;
    text-align: center;
    border-radius: 8px;
}

.inline-cta-box p {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 20px;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.editorial-testimonial {
    padding: 80px 5%;
    background: var(--light-bg);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-text {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
}

.services-editorial {
    margin-top: 50px;
}

.service-item {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

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

.service-item h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-item p {
    font-size: 18px;
    margin-bottom: 15px;
}

.service-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-color);
    margin: 20px 0;
}

.btn-service {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-service:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.editorial-callout {
    padding: 100px 5%;
    background: var(--accent-color);
    color: var(--white);
}

.callout-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.callout-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.callout-box p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--white);
}

.btn-large {
    display: inline-block;
    background: var(--white);
    color: var(--accent-color);
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-large:hover {
    transform: scale(1.05);
}

.benefit-list {
    list-style: none;
    margin: 30px 0;
}

.benefit-list li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 18px;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 24px;
}

.editorial-final-push {
    padding: 80px 5%;
    background: var(--light-bg);
}

.editorial-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.form-consent {
    margin: 25px 0;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.form-consent input[type="checkbox"] {
    margin-top: 4px;
}

.form-consent a {
    color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #c0392b;
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 5% 20px;
}

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

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.sticky-cta-btn {
    display: block;
    background: var(--accent-color);
    color: var(--white);
    padding: 16px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.page-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 5%;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 5%;
}

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.page-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.page-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-content ul,
.page-content ol {
    margin: 20px 0;
    padding-left: 40px;
}

.page-content li {
    margin-bottom: 10px;
    font-size: 18px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-card h3 {
    margin-top: 0;
}

.contact-info {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-info h2 {
    margin-top: 0;
}

.contact-info p {
    margin: 15px 0;
    font-size: 18px;
}

.contact-info strong {
    color: var(--primary-color);
}

.about-section {
    margin-bottom: 60px;
}

.about-section:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        border-top: 1px solid var(--border-color);
    }

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

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

    .subheadline {
        font-size: 18px;
    }

    .editorial-quote {
        font-size: 20px;
        padding: 30px 20px;
    }

    .image-grid-two {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }
}