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

:root {
    --primary-color: #2c5f7e;
    --secondary-color: #e67e22;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-alternate: #fef8f4;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --success: #27ae60;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

.story-hero {
    padding: 4rem 0 3rem;
    background: var(--bg-light);
}

.page-hero {
    padding: 3rem 0 2rem;
    background: var(--bg-light);
}

.hero-text-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text-narrow h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: normal;
}

.hero-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-image-inline {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

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

.story-section {
    padding: 3rem 0;
}

.story-section.alternate-bg {
    background: var(--bg-alternate);
}

.narrow-text {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.narrow-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
    color: var(--text-dark);
}

.narrow-text h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: normal;
    color: var(--text-dark);
}

.narrow-text p {
    margin-bottom: 1.5rem;
}

.narrow-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.story-list {
    list-style: none;
    margin: 2rem 0;
}

.story-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.story-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.inline-cta {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    margin-top: 1rem;
    font-size: 1rem;
    transition: color 0.3s;
}

.inline-cta:hover {
    color: var(--primary-color);
}

.inline-image-small {
    max-width: 700px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.inline-image-small img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 700px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.benefit-card {
    padding: 2rem;
    background: var(--white);
    border-left: 4px solid var(--secondary-color);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: normal;
}

.benefit-card p {
    color: var(--text-light);
    margin: 0;
}

.testimonial-inline {
    padding: 3rem 0;
    background: var(--primary-color);
    color: var(--white);
}

.testimonial-inline blockquote {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-inline p {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
    font-family: 'Arial', sans-serif;
}

.services-preview {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.service-item {
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: normal;
}

.service-item p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    margin: 1.5rem 0;
}

.service-cta {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.service-cta:hover {
    background: #d35400;
}

.cta-section-sticky {
    position: sticky;
    bottom: 0;
    z-index: 90;
}

.sticky-cta-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.sticky-cta-bar span {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
}

.btn-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.btn-primary:hover {
    background: #d35400;
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.btn-large:hover {
    background: #d35400;
}

.form-container {
    max-width: 700px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.main-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background 0.3s;
}

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

.final-cta {
    padding: 4rem 0;
    background: var(--bg-light);
}

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

.main-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
    opacity: 0.8;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    font-family: 'Arial', sans-serif;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: none;
    z-index: 200;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--success);
    color: var(--white);
}

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

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

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

.team-section {
    padding: 3rem 0;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 700px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.team-member {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
    font-weight: normal;
}

.team-role {
    font-family: 'Arial', sans-serif;
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.team-member p {
    color: var(--text-light);
    margin: 0;
}

.cta-section {
    padding: 4rem 0;
}

.services-detailed {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.service-detail {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 4px;
}

.service-detail.alternate-bg {
    background: var(--bg-light);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    font-size: 1.8rem;
    font-weight: normal;
    color: var(--text-dark);
}

.price-tag {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.service-body {
    font-family: 'Arial', sans-serif;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-body h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-dark);
}

.service-body ul {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}

.service-body ul li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.service-note {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 1.5rem 0;
}

.service-select-btn {
    padding: 0.9rem 2.5rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 1rem;
}

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

.process-steps {
    counter-reset: step-counter;
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.process-steps li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
}

.process-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}

.contact-info-section {
    padding: 3rem 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.contact-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: normal;
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.8rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    font-family: 'Arial', sans-serif;
}

.checklist {
    list-style: none;
    margin: 1.5rem 0;
}

.checklist li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.selected-service-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.selected-service-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.selected-service-info p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    margin: 0;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps-list {
    counter-reset: step;
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.steps-list li {
    counter-increment: step;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
}

.steps-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
}

.thanks-cta {
    margin: 3rem 0;
}

.thanks-cta h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.tips-section {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 4px;
    text-align: left;
    margin-top: 3rem;
}

.tips-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.tips-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.tips-section li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.legal-page .narrow-text {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

.legal-page .narrow-text h2 {
    font-family: 'Georgia', serif;
    font-size: 1.6rem;
    margin-top: 2.5rem;
}

.legal-page .narrow-text h3 {
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
}

.legal-page .narrow-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-page .narrow-text li {
    margin-bottom: 0.8rem;
}

.legal-page .narrow-text a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-page .narrow-text a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table thead {
    background: var(--bg-light);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .hero-text-narrow h1 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .sticky-cta-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

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

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.7rem;
    }
}

@media (min-width: 769px) {
    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1;
        min-width: 300px;
    }

    .contact-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-item {
        flex: 1;
        min-width: 280px;
    }
}
