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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    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;
    margin: 0;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-cookie-accept {
    background: #4CAF50;
    color: #fff;
}

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

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

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

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s;
}

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

.editorial-article {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
}

.article-hero {
    margin-bottom: 60px;
}

.hero-content {
    margin-bottom: 40px;
}

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

.article-lead {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
}

.hero-image {
    margin-top: 40px;
}

.hero-image img,
.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.content-narrow {
    font-size: 19px;
    line-height: 1.8;
}

.drop-cap::first-letter {
    font-size: 72px;
    float: left;
    line-height: 60px;
    padding-right: 8px;
    margin-top: 3px;
    font-weight: 700;
    color: #1a1a1a;
}

.content-narrow h2 {
    font-size: 32px;
    margin: 50px 0 20px;
    color: #1a1a1a;
}

.content-narrow h3 {
    font-size: 24px;
    margin: 40px 0 15px;
    color: #2c2c2c;
}

.content-narrow p {
    margin-bottom: 25px;
}

.inline-quote {
    border-left: 4px solid #1a1a1a;
    padding-left: 30px;
    margin: 40px 0;
    font-style: italic;
    font-size: 22px;
    color: #444;
}

.inline-quote cite {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    font-style: normal;
    color: #777;
}

.inline-image {
    margin: 50px 0;
}

.content-highlight {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 4px;
    margin: 40px 0;
}

.content-highlight p {
    margin-bottom: 20px;
}

.content-highlight p:last-child {
    margin-bottom: 0;
}

.cta-inline,
.cta-inline-final {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 4px;
    margin: 30px 0;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background 0.3s;
}

.cta-inline:hover,
.cta-inline-final:hover {
    background: #333;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 6px;
}

.service-card h3 {
    font-size: 22px;
    margin: 0 0 15px 0;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select-service {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #333;
}

.cta-section {
    background: #f0f0f0;
    padding: 40px;
    border-radius: 6px;
    text-align: center;
    margin: 60px 0;
}

.cta-section h3 {
    font-size: 28px;
    margin: 0 0 15px 0;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #555;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-cta-primary {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background 0.3s;
}

.btn-cta-primary:hover {
    background: #333;
}

.testimonial {
    background: #fff;
    border-left: 4px solid #1a1a1a;
    padding: 25px 30px;
    margin: 30px 0;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.testimonial cite {
    font-size: 15px;
    color: #777;
    font-style: normal;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    overflow: auto;
}

.modal-content {
    background: #fff;
    margin: 80px auto;
    padding: 40px;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: #999;
}

.modal-close:hover {
    color: #333;
}

.modal-content h2 {
    margin-bottom: 30px;
    font-size: 28px;
    color: #1a1a1a;
}

.modal-content form {
    display: flex;
    flex-direction: column;
}

.modal-content label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.modal-content textarea {
    resize: vertical;
}

.btn-submit {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background 0.3s;
}

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

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.footer-copy {
    font-size: 13px;
    color: #999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 19px;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
}

.thanks-container a {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-container h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.page-container h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.page-container h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2c2c2c;
}

.page-container p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #444;
}

.page-container ul,
.page-container ol {
    margin: 20px 0 20px 30px;
    font-size: 17px;
    line-height: 1.7;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #444;
}

.page-container li {
    margin-bottom: 10px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.service-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 35px;
    border-radius: 6px;
}

.service-item h2 {
    margin: 0 0 15px 0;
    font-size: 26px;
}

.service-item .service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-item .service-description {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-item ul {
    margin: 20px 0 25px 0;
    padding-left: 20px;
}

.service-item .btn-select-service {
    margin-top: 10px;
}

.contact-info {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 6px;
    margin: 30px 0;
}

.contact-info h2 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info strong {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

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

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

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

    .nav-links {
        gap: 15px;
    }

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

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

    .modal-content {
        margin: 20px;
        padding: 30px 20px;
    }

    .page-container h1 {
        font-size: 32px;
    }
}