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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
}

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #27ae60;
}

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 8px;
    background-color: #f8f9fa;
    border-radius: 3px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

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

.editorial-layout {
    background-color: white;
}

.story-flow {
    width: 100%;
}

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

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

.intro-section {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #34495e;
}

.intro-section p {
    margin-bottom: 20px;
    font-size: 18px;
}

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

.content-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.inline-image figcaption {
    padding: 15px;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
}

.problem-section,
.understanding-section,
.approach-section,
.process-section {
    margin-bottom: 50px;
}

.problem-section h2,
.understanding-section h2,
.approach-section h2,
.process-section h2,
.services-preview h2,
.contact-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

.problem-section p,
.understanding-section p,
.approach-section p,
.process-section p {
    margin-bottom: 20px;
    font-size: 18px;
}

.insight-box {
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
    padding: 25px;
    margin: 30px 0;
}

.insight-text {
    font-size: 19px;
    color: #1b5e20;
    font-style: italic;
}

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

.link-cta {
    color: #27ae60;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    border-bottom: 2px solid #27ae60;
    padding-bottom: 2px;
}

.services-preview {
    margin: 60px 0;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 5px solid #27ae60;
}

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

.service-card p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.service-price {
    font-size: 22px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #229954;
}

.testimonial-section {
    margin: 60px 0;
}

.testimonial {
    background-color: #f8f9fa;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 5px solid #3498db;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    color: #34495e;
}

.testimonial cite {
    display: block;
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
}

.process-steps {
    margin-top: 30px;
}

.step {
    margin-bottom: 30px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #27ae60;
}

.step p {
    font-size: 17px;
    color: #34495e;
}

.contact-section {
    margin: 60px 0;
}

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

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

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

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

.btn-submit {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    margin: 60px 0 40px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    font-style: italic;
}

.footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    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;
    margin-bottom: 15px;
    color: #27ae60;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

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

.thanks-page {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: white;
}

.thanks-page h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 25px;
}

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

.thanks-page .service-selected {
    background-color: #e8f5e9;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #27ae60;
}

.thanks-page .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.thanks-page .btn-home:hover {
    background-color: #229954;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

    .content-narrow {
        padding: 40px 20px;
    }

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

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