/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #357abd;
    transform: translateY(-1px);
}

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

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

/* Navigation */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.ad-disclosure {
    font-size: 0.8rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #f9f9f9;
}

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

.nav-links a {
    color: #2c2c2c;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

/* Editorial Layout */
.editorial-layout {
    max-width: 100%;
}

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

/* Hero Section - Editorial Style */
.hero-editorial {
    margin-bottom: 3rem;
}

.hero-image-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

.editorial-header {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
}

.editorial-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

/* Editorial Sections */
.editorial-section {
    padding: 3rem 0;
}

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

.editorial-section h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 2rem 0 1rem;
    font-weight: 600;
    color: #2c2c2c;
}

.editorial-section h4 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
    color: #2c2c2c;
}

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

.inline-image-block {
    margin: 2.5rem 0;
    background-color: #f5f5f5;
}

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

.editorial-quote {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 4px solid #4a90e2;
}

.editorial-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: #2c2c2c;
    margin: 0;
}

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

.page-header-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.small-text {
    font-size: 0.9rem;
    color: #666;
}

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

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e5e5e5;
}

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

.service-content {
    padding: 2rem;
}

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

.service-content p {
    margin-bottom: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a90e2;
    margin: 1rem 0;
}

.btn-select-service {
    padding: 0.75rem 1.5rem;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-select-service:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.btn-select-service.selected {
    background-color: #27ae60;
}

/* Services Detail Page */
.services-detail-section {
    padding: 3rem 0;
}

.service-detail-card {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-detail-image {
    background-color: #f5f5f5;
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

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

.service-price-large {
    font-size: 1.75rem;
    font-weight: 700;
    color: #4a90e2;
    margin: 1rem 0;
}

/* Form Section */
.form-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.editorial-form {
    margin-top: 2rem;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 4px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.form-notice {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1.5rem;
    line-height: 1.5;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.85rem 2rem;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    padding: 0.85rem 2rem;
    background-color: transparent;
    color: #4a90e2;
    border: 2px solid #4a90e2;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #4a90e2;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    font-weight: 500;
}

.cta-inline {
    margin: 2.5rem 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 3px solid #4a90e2;
}

.process-step h4 {
    margin: 0 0 0.75rem;
}

.process-step p {
    margin: 0;
}

/* Contact Info */
.contact-info-block {
    margin-bottom: 2.5rem;
}

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

.contact-info-block p {
    margin-bottom: 0.5rem;
}

.no-link {
    color: #4a4a4a;
    font-weight: 500;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 0;
    text-align: center;
}

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

.thanks-info {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    text-align: left;
}

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

.thanks-next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.thanks-next-steps ul {
    list-style-position: inside;
    line-height: 2;
}

/* Legal Content */
.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style-type: disc;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Background Variations */
.bg-light {
    background-color: #fafafa;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

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

.footer-column ul li a {
    color: #cccccc;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #4a90e2;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.75rem;
    }

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

    .lead-text {
        font-size: 1.1rem;
    }

    .hero-image-wrapper {
        height: 300px;
    }

    .editorial-section h2 {
        font-size: 1.75rem;
    }

    .service-price-large {
        font-size: 1.5rem;
    }

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

    .cta-inline {
        flex-direction: column;
    }

    .cta-inline .btn-primary,
    .cta-inline .btn-secondary {
        width: 100%;
    }

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

@media (min-width: 769px) {
    .service-detail-card:nth-child(even) {
        flex-direction: row;
    }

    .service-detail-card:nth-child(odd) {
        flex-direction: row-reverse;
    }

    .service-detail-card .service-detail-image,
    .service-detail-card .service-detail-content {
        flex: 1;
    }

    .service-detail-content {
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
