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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content {
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-cookie.accept:hover {
    background-color: #3a8eef;
}

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

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

.nav-minimal {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
    padding: 18px 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.ad-notice {
    font-size: 12px;
    color: #888888;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.editorial-layout {
    background-color: #ffffff;
}

.story-flow {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.hero-text-overlay {
    max-width: 720px;
    margin: -120px auto 0;
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
}

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    font-style: italic;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 24px;
}

.opening-graf {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 28px;
    color: #2c2c2c;
}

.content-narrow p {
    font-size: 19px;
    line-height: 1.75;
    margin-bottom: 24px;
    color: #3a3a3a;
}

.content-narrow h2 {
    font-size: 34px;
    line-height: 1.3;
    margin: 60px 0 28px;
    color: #1a1a1a;
    font-weight: 400;
}

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

.link-subtle {
    color: #4a9eff;
    text-decoration: none;
    font-size: 17px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: color 0.3s ease;
}

.link-subtle:hover {
    color: #3a8eef;
}

.image-inline {
    margin: 50px 0;
    background-color: #f5f5f5;
}

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

.caption {
    padding: 16px 20px;
    font-size: 15px;
    color: #666666;
    font-style: italic;
    text-align: center;
    background-color: #f5f5f5;
}

blockquote.testimony-inline {
    margin: 50px 0;
    padding: 30px 40px;
    background-color: #f9f9f9;
    border-left: 4px solid #4a9eff;
}

blockquote.testimony-inline p {
    font-size: 21px;
    line-height: 1.6;
    color: #2c2c2c;
    font-style: italic;
    margin-bottom: 12px;
}

blockquote.testimony-inline cite {
    font-size: 16px;
    color: #666666;
    font-style: normal;
}

.services-editorial {
    background-color: #fafafa;
    padding: 80px 0;
    margin: 80px 0;
}

.section-intro {
    font-size: 20px;
    color: #666666;
    margin-bottom: 50px;
    text-align: center;
}

.service-cards-flow {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-card:nth-child(even) {
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 350px;
    background-color: #e8e8e8;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 40px;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 400;
}

.service-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.service-details {
    font-size: 15px;
    color: #888888;
    margin-bottom: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.price {
    font-size: 32px;
    color: #1a1a1a;
    font-weight: 600;
    margin: 24px 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-select-service {
    width: 100%;
    padding: 16px 32px;
    background-color: #4a9eff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-select-service:hover {
    background-color: #3a8eef;
}

.testimonials-flow {
    background-color: #f5f5f5;
    padding: 80px 0;
    margin: 80px 0;
}

.testimony-block {
    margin: 40px 0;
    padding: 32px;
    background-color: #ffffff;
    border-left: 3px solid #4a9eff;
}

.testimony-block p {
    font-size: 19px;
    line-height: 1.7;
    color: #2c2c2c;
    font-style: italic;
    margin-bottom: 12px;
}

.testimony-block cite {
    font-size: 15px;
    color: #666666;
    font-style: normal;
}

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

.form-intro {
    font-size: 18px;
    color: #666666;
    margin-bottom: 40px;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    font-size: 15px;
    color: #4a4a4a;
    margin-bottom: 8px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: Georgia, serif;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f9f9f9;
    color: #2c2c2c;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 18px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-submit:hover {
    background-color: #333333;
}

.closing-section {
    padding: 80px 24px;
}

.final-cta {
    margin-top: 50px;
    text-align: center;
}

.btn-text-link {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4a9eff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-text-link:hover {
    background-color: #3a8eef;
}

.footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 24px 30px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1100px;
    margin: 0 auto 30px;
    padding: 24px;
    background-color: #252525;
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #aaaaaa;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333333;
    text-align: center;
}

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

@media (min-width: 768px) {
    .service-card {
        flex-direction: row;
    }

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

    .service-image {
        width: 45%;
        height: auto;
    }

    .service-content {
        width: 55%;
    }
}

@media (max-width: 767px) {
    .hero-text-overlay h1 {
        font-size: 32px;
    }

    .lead-text {
        font-size: 18px;
    }

    .content-narrow h2 {
        font-size: 28px;
    }

    .opening-graf {
        font-size: 19px;
    }

    .content-narrow p {
        font-size: 17px;
    }

    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
    }

    .nav-links a {
        font-size: 14px;
    }
}