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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    font-size: 18px;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    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: 16px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a252f;
    letter-spacing: -0.5px;
}

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

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

.main-nav a:hover {
    color: #3498db;
}

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

.editorial-flow {
    padding: 60px 0;
}

h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
    letter-spacing: -0.8px;
}

h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
}

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

.hero-editorial {
    margin-bottom: 48px;
}

.hero-image {
    margin: 40px 0;
    overflow: hidden;
    border-radius: 4px;
}

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

.inline-image {
    margin: 48px 0;
    overflow: hidden;
    border-radius: 4px;
    background-color: #f8f9fa;
}

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

.story-section {
    margin-bottom: 48px;
}

.insight-block {
    margin: 56px 0;
    padding: 40px 32px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.insight-list {
    margin-top: 28px;
}

.insight-item {
    margin-bottom: 32px;
}

.insight-item:last-child {
    margin-bottom: 0;
}

.approach-section {
    margin: 56px 0;
}

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.approach-card {
    padding: 28px 24px;
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 4px;
}

.approach-card h3 {
    margin-top: 0;
}

.cta-inline {
    margin: 40px 0;
    padding: 28px;
    background-color: #ecf8ff;
    border-radius: 4px;
}

.link-cta {
    color: #2980b9;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}

.link-cta:hover {
    color: #1c5d8a;
}

.testimonials-section {
    margin: 56px 0;
}

.testimonial {
    margin: 32px 0;
    padding: 28px;
    background-color: #f8f9fa;
    border-left: 3px solid #95a5a6;
    font-style: italic;
}

.testimonial p {
    margin-bottom: 12px;
}

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

.benefits-reveal {
    margin: 56px 0;
}

.benefits-list {
    margin-left: 24px;
    margin-top: 24px;
}

.benefits-list li {
    margin-bottom: 16px;
    padding-left: 8px;
}

.local-context {
    margin: 56px 0;
}

.cta-block {
    margin: 56px 0;
    padding: 40px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
}

.cta-block h3 {
    color: #ffffff;
    margin-top: 0;
}

.cta-block p {
    color: #ecf0f1;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.disclaimer-section {
    margin: 64px 0 48px;
    padding: 32px;
    background-color: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 4px;
}

.disclaimer {
    font-size: 15px;
    line-height: 1.6;
    color: #5d4037;
    margin-bottom: 0;
}

.site-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 48px 0 32px;
    margin-top: 80px;
}

.footer-content {
    text-align: center;
}

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

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

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

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

.process-list {
    margin-top: 32px;
}

.process-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e1e8ed;
}

.process-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.process-item h3 {
    margin-top: 0;
}

.team-section {
    margin: 56px 0;
}

.values-section {
    margin: 56px 0;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 32px;
}

.value-item {
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.value-item h3 {
    margin-top: 0;
}

.location-section {
    margin: 56px 0;
}

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

.services-section {
    margin: 48px 0;
}

.service-item {
    margin-bottom: 48px;
    padding: 36px 32px;
    background-color: #ffffff;
    border: 2px solid #e1e8ed;
    border-radius: 4px;
}

.service-item h2 {
    margin-top: 0;
    font-size: 28px;
}

.service-includes {
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
}

.service-item ul {
    margin-left: 24px;
    margin-bottom: 24px;
}

.service-item li {
    margin-bottom: 12px;
    padding-left: 8px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 24px 0 20px;
}

.btn-select {
    padding: 12px 28px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: inherit;
}

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

.payment-info {
    margin: 56px 0;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.form-section {
    margin: 56px 0;
    padding: 40px 32px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

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

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

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

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

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

.form-group input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

.contact-intro {
    margin-bottom: 48px;
}

.contact-details {
    margin: 48px 0;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h2 {
    font-size: 24px;
    margin-top: 0;
}

.access-info {
    margin: 56px 0;
}

.consultation-info {
    margin: 56px 0;
}

.response-times {
    margin: 56px 0;
}

.thanks-content {
    text-align: center;
    padding: 48px 0;
}

.confirmation-section {
    margin-bottom: 48px;
}

.request-summary {
    margin: 32px 0;
    padding: 28px;
    background-color: #ecf8ff;
    border-radius: 4px;
    text-align: left;
}

.request-summary h2 {
    margin-top: 0;
    font-size: 24px;
}

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

.steps-list {
    margin-left: 24px;
    margin-top: 24px;
}

.steps-list li {
    margin-bottom: 16px;
    padding-left: 8px;
}

.contact-reminder {
    margin: 40px 0;
}

.return-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 28px;
}

.legal-section h3 {
    font-size: 22px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 24px;
}

.legal-section li {
    margin-bottom: 12px;
    padding-left: 8px;
}

.cookie-table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e1e8ed;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    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;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 280px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: inherit;
}

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

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

.btn-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

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

@media (max-width: 768px) {
    body {
        font-size: 17px;
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

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

    .main-nav {
        gap: 20px;
    }

    .container-narrow {
        padding: 0 20px;
    }

    .service-price {
        font-size: 28px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-start;
    }
}