* {
    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;
}

.ad-disclosure {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    border-bottom: 1px solid #ddd;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-brand {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c2c2c;
}

.editorial-container {
    max-width: 100%;
}

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

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

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 64px 48px;
    color: #fff;
}

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.3;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 22px;
    text-align: center;
    margin-top: 16px;
    font-style: italic;
    opacity: 0.95;
}

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

.editorial-intro {
    padding: 56px 0;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #3a3a3a;
}

.editorial-intro p {
    font-size: 17px;
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 24px;
    font-style: italic;
    text-align: center;
    margin: 48px 0;
    color: #1a1a1a;
    line-height: 1.6;
}

.editorial-story {
    padding: 56px 0;
    background-color: #fff;
}

.editorial-story h2 {
    font-size: 32px;
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.4;
}

.editorial-story p {
    font-size: 17px;
    margin-bottom: 24px;
}

.editorial-story a {
    color: #5a5a5a;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
    transition: border-color 0.3s;
}

.editorial-story a:hover {
    border-bottom-color: #2c2c2c;
}

.inline-image-container {
    margin: 48px 0;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.editorial-quote {
    font-size: 22px;
    font-style: italic;
    text-align: center;
    margin: 56px 0;
    padding: 32px 24px;
    border-left: 4px solid #2c2c2c;
    color: #1a1a1a;
    line-height: 1.6;
}

.services-editorial {
    padding: 72px 0;
    background-color: #f9f9f9;
}

.services-editorial h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 400;
}

.service-cards-editorial {
    margin-top: 56px;
}

.service-card-inline {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.service-card-inline.reverse {
    flex-direction: row-reverse;
}

.service-image-small {
    flex: 0 0 280px;
    background-color: #d8d8d8;
    overflow: hidden;
}

.service-image-small img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 500;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.service-price {
    font-size: 19px;
    font-weight: 600;
    color: #2c2c2c;
    margin: 20px 0 16px 0;
}

.cta-inline {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-inline:hover {
    background-color: #1a1a1a;
}

.trust-building {
    padding: 72px 0;
    background-color: #fff;
}

.trust-building h2 {
    font-size: 32px;
    margin-bottom: 48px;
    font-weight: 400;
    text-align: center;
}

.testimonial-editorial {
    margin-bottom: 40px;
    padding: 32px;
    background-color: #f5f5f5;
    border-left: 3px solid #2c2c2c;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    color: #666;
    text-align: right;
}

.approach-section {
    padding: 72px 0;
    background-color: #f9f9f9;
}

.approach-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 400;
}

.approach-points {
    margin-top: 48px;
}

.approach-item {
    margin-bottom: 40px;
}

.approach-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 500;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
}

.form-section {
    padding: 72px 0;
    background-color: #fff;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 400;
}

.editorial-form {
    margin-top: 40px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-family: inherit;
}

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

.service-info {
    background-color: #f0f0f0;
    padding: 20px;
    margin: 24px 0;
    border-left: 4px solid #2c2c2c;
}

.service-info p {
    margin-bottom: 8px;
    font-size: 15px;
}

.submit-button {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 16px;
}

.submit-button:hover {
    background-color: #1a1a1a;
}

.disclaimer-section {
    padding: 48px 0;
    background-color: #f9f9f9;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    padding: 24px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.references-section {
    padding: 48px 0;
    background-color: #fff;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
}

.references-list {
    font-size: 14px;
    line-height: 1.9;
    padding-left: 24px;
}

.references-list li {
    margin-bottom: 8px;
}

.references-list a {
    color: #5a5a5a;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
}

.references-list a:hover {
    border-bottom-color: #2c2c2c;
}

.site-footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 48px 24px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copy {
    font-size: 13px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 24px;
    display: none;
    z-index: 1000;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #fff;
    color: #2c2c2c;
}

.cookie-accept:hover {
    background-color: #e8e8e8;
}

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

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

.thanks-container {
    max-width: 680px;
    margin: 80px auto;
    padding: 0 24px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 400;
}

.thanks-container p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-container .back-link {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.thanks-container .back-link:hover {
    background-color: #1a1a1a;
}

.contact-page {
    max-width: 880px;
    margin: 64px auto;
    padding: 0 24px;
}

.contact-page h1 {
    font-size: 36px;
    margin-bottom: 32px;
    font-weight: 400;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 40px;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 500;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.contact-email {
    color: #2c2c2c;
    font-weight: 500;
    pointer-events: none;
    cursor: default;
}

.legal-page {
    max-width: 880px;
    margin: 64px auto;
    padding: 0 24px;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 32px;
    font-weight: 400;
}

.legal-page h2 {
    font-size: 24px;
    margin: 32px 0 16px 0;
    font-weight: 500;
}

.legal-page h3 {
    font-size: 20px;
    margin: 24px 0 12px 0;
    font-weight: 500;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-page li {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.7;
}

.services-page {
    max-width: 1000px;
    margin: 64px auto;
    padding: 0 24px;
}

.services-page h1 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 400;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-item {
    display: flex;
    gap: 32px;
    background-color: #fff;
    padding: 32px;
    border: 1px solid #e8e8e8;
}

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

.service-image {
    flex: 0 0 320px;
    background-color: #e8e8e8;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 500;
}

.service-details p {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.service-details .price {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    margin-top: 20px;
}

.about-page {
    max-width: 880px;
    margin: 64px auto;
    padding: 0 24px;
}

.about-page h1 {
    font-size: 36px;
    margin-bottom: 32px;
    font-weight: 400;
}

.about-page h2 {
    font-size: 28px;
    margin: 40px 0 20px 0;
    font-weight: 500;
}

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

.about-image {
    margin: 48px 0;
    background-color: #e8e8e8;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .nav-minimal {
        padding: 16px 24px;
        flex-direction: column;
        gap: 16px;
    }

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

    .hero-text-overlay h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .service-image-small {
        flex: 0 0 auto;
        width: 100%;
    }

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

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

    .service-image {
        flex: 0 0 auto;
        width: 100%;
    }
}