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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

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

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

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

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

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

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

.top-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

.nav-links a:hover {
    color: #27ae60;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
    padding: 4px 10px;
    border-radius: 3px;
}

.editorial-content {
    max-width: 100%;
    background: #fff;
}

.article-header {
    position: relative;
    height: 600px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

.header-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-color: #3d5a4a;
}

.header-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.header-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    color: #fff;
}

.header-text h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.subtitle {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.95;
}

.intro-text,
.story-block,
.service-intro,
.closing-text {
    padding: 60px 24px;
}

.narrow-column {
    max-width: 680px;
    margin: 0 auto;
}

.narrow-column p {
    font-size: 18px;
    margin-bottom: 24px;
}

.narrow-column h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.narrow-column h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #34495e;
}

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

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

.inline-image figcaption {
    max-width: 680px;
    margin: 0 auto;
    padding: 20px 24px;
    font-size: 15px;
    font-style: italic;
    color: #7f8c8d;
}

.split-content {
    display: flex;
    min-height: 500px;
    margin: 80px 0;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #5a7865;
}

.split-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ecf0f1;
}

.split-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
}

.cta-inline {
    margin-top: 32px;
}

.text-link {
    color: #27ae60;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #27ae60;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: #229954;
    border-bottom-color: #229954;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card {
    display: flex;
    background: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.card-image {
    width: 320px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-color: #95a5a6;
}

.card-content {
    padding: 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.card-content p {
    font-size: 16px;
    color: #34495e;
    margin-bottom: auto;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #ecf0f1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.select-service {
    padding: 12px 28px;
    background: #27ae60;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #229954;
}

.select-service.selected {
    background: #34495e;
}

.form-section {
    background: #ecf0f1;
    padding: 80px 24px;
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #fff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.testimonial-block {
    padding: 80px 24px;
    background: #2c3e50;
}

.testimonial-block blockquote {
    max-width: 680px;
    margin: 0 auto;
}

.testimonial-block p {
    font-size: 24px;
    color: #ecf0f1;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-block cite {
    font-size: 16px;
    color: #95a5a6;
    font-style: normal;
}

.disclaimer-box {
    max-width: 1000px;
    margin: 60px auto;
    padding: 32px;
    background: #fff3cd;
    border-left: 4px solid #f39c12;
}

.disclaimer-box p {
    font-size: 14px;
    color: #856404;
    line-height: 1.6;
}

.article-footer {
    background: #2c3e50;
    padding: 48px 24px;
    color: #ecf0f1;
}

.footer-links {
    max-width: 680px;
    margin: 0 auto 32px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

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

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

.footer-meta {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    color: #7f8c8d;
}

.footer-meta p {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .header-text h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 17px;
    }

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

    .split-image {
        min-height: 300px;
    }

    .split-text {
        padding: 40px 24px;
    }

    .service-card {
        flex-direction: column;
    }

    .card-image {
        width: 100%;
        height: 240px;
    }

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

    .ad-notice {
        font-size: 10px;
    }
}