/* Reset and Base Styles */
* {
    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.7;
    color: #2c3e50;
    background-color: #fafafa;
}

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Navigation - Editorial Style */
.nav-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    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.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    background-color: #f8f9fa;
}

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

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Editorial Content Layout */
.editorial-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

/* Hero Section - Editorial */
.hero-editorial {
    padding: 4rem 0;
    background-color: #ffffff;
}

.hero-text-center {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.hero-text-center h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-large {
    font-size: 1.35rem;
    color: #555;
    line-height: 1.6;
}

.hero-image {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-image img {
    border-radius: 8px;
    width: 100%;
    background-color: #e8e8e8;
}

/* Text Sections */
.text-section {
    padding: 3.5rem 0;
}

.text-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.text-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2c3e50;
    font-weight: 600;
}

.text-section p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #444;
}

.intro-text {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Inline Images */
.inline-image-section {
    padding: 2.5rem 0;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.content-image {
    margin: 0;
    border-radius: 6px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.content-image img {
    width: 100%;
}

.content-image figcaption {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #7f8c8d;
    text-align: center;
    font-style: italic;
}

/* Service Cards - Editorial Style */
.services-preview {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.service-cards-editorial {
    max-width: 1100px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    background-color: #e8e8e8;
}

.card-content {
    padding: 2rem;
}

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

.card-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

/* Services Detailed Page */
.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

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

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

.service-image-container {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.service-image-container img {
    width: 100%;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Buttons */
.select-service,
.btn-submit {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
}

.select-service:hover,
.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.select-service:active,
.btn-submit:active {
    transform: translateY(0);
}

/* Forms */
.form-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.editorial-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    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: #3498db;
}

/* Testimonials */
.testimonial-inline {
    padding: 4rem 0;
    background-color: #ecf0f1;
}

.testimonial-inline blockquote {
    border-left: 4px solid #3498db;
    padding-left: 2rem;
    font-size: 1.3rem;
    font-style: italic;
    color: #34495e;
    line-height: 1.7;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
    font-size: 1rem;
}

/* Split Content */
.split-content {
    padding: 4rem 0;
}

.content-columns {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.column-text {
    flex: 1.2;
}

.column-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.column-text p {
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.column-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.column-image img {
    width: 100%;
}

/* Page Header */
.page-header {
    padding: 4rem 0 2rem;
    background-color: #ffffff;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* Contact Page */
.contact-info-section {
    padding: 3rem 0;
}

.contact-layout {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-block {
    flex: 1;
    min-width: 280px;
}

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

.contact-detail {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

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

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

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

/* CTA Sections */
.cta-section-about,
.cta-section-contact {
    padding: 3rem 0;
    background-color: #f0f4f8;
}

.inline-link {
    color: #3498db;
    font-weight: 600;
    text-decoration: underline;
}

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

/* Thanks Page */
.thanks-page {
    min-height: 60vh;
}

.thanks-content {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
}

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

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

.service-confirmation {
    margin: 2rem 0;
}

.selected-service {
    font-size: 1.1rem;
    color: #27ae60;
    padding: 1rem;
    background-color: #eafaf1;
    border-radius: 5px;
    display: inline-block;
}

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

.next-steps {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-content p {
    color: #555;
    line-height: 1.6;
}

.helpful-links {
    padding: 3rem 0;
}

.link-list {
    list-style: none;
    margin-top: 1.5rem;
}

.link-list li {
    margin-bottom: 1rem;
}

.link-list a {
    color: #3498db;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Legal Pages */
.legal-page {
    background-color: #ffffff;
}

.legal-date {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    color: #555;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #555;
}

/* Disclaimer */
.disclaimer-section {
    padding: 3rem 0;
    background-color: #fef9e7;
    border-radius: 6px;
}

.disclaimer {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.6;
    font-style: italic;
    padding: 1.5rem;
}

/* Footer */
.footer-editorial {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-nav {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-nav a {
    color: #ecf0f1;
    font-size: 0.9rem;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: #95a5a6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #6c7a7b;
}

/* Responsive Design */
@media (max-width: 900px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
    }

    .hero-text-center h1 {
        font-size: 2.2rem;
    }

    .intro-large {
        font-size: 1.15rem;
    }

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

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

    .contact-layout {
        flex-direction: column;
    }

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

@media (max-width: 600px) {
    .narrow-content,
    .hero-text-center {
        padding: 0 1.5rem;
    }

    .hero-text-center h1 {
        font-size: 1.8rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .text-section h2 {
        font-size: 1.6rem;
    }

    .service-cards-editorial {
        padding: 0 1.5rem;
    }
}