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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

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

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

.btn-accept:hover {
    background-color: #1a1a1a;
}

.btn-reject {
    background-color: #f5f5f5;
    color: #2c2c2c;
}

.btn-reject:hover {
    background-color: #e0e0e0;
}

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

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

.brand {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.3px;
}

.nav-links {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

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

.ad-notice {
    font-size: 12px;
    color: #999;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

.story-flow {
    background-color: #fff;
    padding: 40px;
    border-radius: 2px;
}

.hero-editorial {
    position: relative;
    margin: -40px -40px 50px -40px;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    background-color: #f5f5f5;
}

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

.hero-text-overlay {
    padding: 40px 40px 0 40px;
    text-align: center;
}

.hero-text-overlay h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.lead-text {
    font-size: 20px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 30px;
}

.narrow-column {
    max-width: 100%;
}

.drop-cap::first-letter {
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    float: left;
    margin: 5px 10px 0 0;
    color: #1a1a1a;
}

.story-intro p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #333;
}

.story-intro h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 50px 0 20px 0;
    color: #1a1a1a;
    letter-spacing: -0.4px;
}

.story-intro h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 35px 0 16px 0;
    color: #2c2c2c;
}

.story-intro h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 12px 0;
    color: #2c2c2c;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 4px;
    display: block;
    object-fit: cover;
    background-color: #f5f5f5;
}

.full-width-image {
    width: calc(100% + 80px);
    margin-left: -40px;
    margin-right: -40px;
    margin-bottom: 40px;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #f5f5f5;
}

.insight-box {
    background-color: #f9f9f9;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #2c2c2c;
}

.insight-box h3 {
    margin-top: 0;
    font-size: 22px;
}

.insight-box p {
    margin-bottom: 0;
    font-size: 17px;
}

.criteria-list {
    margin: 30px 0;
    padding-left: 30px;
}

.criteria-list li {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 32px;
    border: 2px solid #2c2c2c;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    background-color: #2c2c2c;
    color: #fff;
}

.testimonial-block {
    margin: 35px 0;
    padding: 25px 30px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.testimonial-block blockquote {
    margin: 0;
}

.testimonial-block p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-block cite {
    font-style: normal;
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.citation {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
    transition: border-color 0.2s ease;
}

.citation:hover {
    border-bottom-color: #2c2c2c;
}

.benefit-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.benefit-item {
    padding: 25px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.benefit-item h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 19px;
}

.benefit-item p {
    margin: 0;
    font-size: 16px;
    color: #555;
}

.service-card {
    margin: 50px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 20px;
    display: block;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-content h3 {
    margin-top: 0;
    font-size: 26px;
    margin-bottom: 16px;
}

.service-content p {
    font-size: 17px;
    margin-bottom: 16px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 24px 0;
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #1a1a1a;
}

.form-section {
    margin: 60px 0 40px 0;
    padding: 40px;
    background-color: #fff;
    border: 2px solid #2c2c2c;
    border-radius: 4px;
}

.form-section h2 {
    margin-top: 0;
}

.contact-form {
    margin-top: 30px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    display: inline-block;
    padding: 14px 40px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-box {
    margin: 60px 0 30px 0;
    padding: 30px;
    background-color: #fff9e6;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.disclaimer-box h4 {
    margin-top: 0;
    color: #856404;
}

.disclaimer-box p {
    margin-bottom: 0;
    font-size: 15px;
    color: #856404;
}

.references-section {
    margin: 40px 0;
    padding: 25px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.references-section h4 {
    margin-top: 0;
}

.references-list {
    margin: 15px 0 0 0;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 15px;
}

.references-list a {
    color: #2c2c2c;
    text-decoration: underline;
}

.page-header {
    margin-bottom: 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.values-block {
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.values-block h3 {
    margin-top: 0;
}

.values-block ul {
    margin: 20px 0 0 0;
    padding-left: 30px;
}

.values-block li {
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.commitment-box {
    margin: 40px 0;
    padding: 30px;
    background-color: #e8f4f8;
    border-left: 4px solid #0277bd;
    border-radius: 4px;
}

.commitment-box h3 {
    margin-top: 0;
    color: #01579b;
}

.commitment-box p {
    margin-bottom: 0;
    color: #01579b;
}

.contact-info-block {
    margin: 40px 0;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-item p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.info-note {
    font-size: 15px;
    color: #666;
    font-style: italic;
}

.access-info {
    margin: 50px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

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

.access-info p {
    margin-bottom: 12px;
}

.visit-note {
    margin: 50px 0;
    padding: 30px;
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    border-radius: 4px;
}

.visit-note h3 {
    margin-top: 0;
    color: #2e7d32;
}

.visit-note p {
    color: #2e7d32;
}

.visit-note ul {
    margin: 15px 0 0 0;
    padding-left: 30px;
}

.visit-note li {
    color: #2e7d32;
    margin-bottom: 8px;
}

.thanks-section {
    text-align: center;
    padding: 60px 0;
}

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

.confirmation-box {
    margin: 40px 0;
    padding: 30px;
    background-color: #e8f5e9;
    border-radius: 4px;
}

.confirmation-box p {
    font-size: 18px;
    color: #2e7d32;
    margin-bottom: 16px;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.next-steps ol {
    margin: 20px 0;
    padding-left: 30px;
}

.next-steps li {
    font-size: 17px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin: 40px 0;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2c2c2c;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1a1a1a;
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #2c2c2c;
    border: 1px solid #ccc;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

.additional-info {
    margin: 50px 0 0 0;
    text-align: left;
}

.additional-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-date {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 16px 0;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 12px 0;
    color: #2c2c2c;
}

.legal-content h4 {
    font-size: 18px;
    margin: 25px 0 10px 0;
    color: #2c2c2c;
}

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

.legal-content ul,
.legal-content ol {
    margin: 16px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content a {
    color: #2c2c2c;
    text-decoration: underline;
}

.site-footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 50px 30px 30px 30px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
}

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

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .editorial-container {
        padding: 30px 20px;
    }

    .story-flow {
        padding: 20px;
    }

    .hero-editorial {
        margin: -20px -20px 30px -20px;
    }

    .hero-text-overlay {
        padding: 20px 20px 0 20px;
    }

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

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

    .story-intro h2 {
        font-size: 26px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .full-width-image {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}