/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #1a5a8a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3d5c;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: 'Arial', sans-serif;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-cookie {
    background-color: #1a5a8a;
    color: #fff;
}

.btn-cookie:hover {
    background-color: #0d3d5c;
}

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

.btn-cookie-alt:hover {
    background-color: #fff;
    color: #2c2c2c;
}

/* Navigation - Minimal Style */
.nav-minimal {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a5a8a;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.5px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c2c2c;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    list-style: none;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
}

.nav-menu li {
    padding: 0.7rem 1.5rem;
}

.nav-menu a {
    color: #2c2c2c;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1a5a8a;
}

/* Editorial Container - Main Layout */
.editorial-container {
    max-width: 100%;
    background-color: #fff;
}

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

/* Article Hero */
.article-hero {
    padding: 3rem 0 2rem;
    background-color: #f9f9f9;
}

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

.article-hero h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

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

.hero-image-inline img {
    width: 100%;
    height: auto;
}

/* Story Sections */
.story-section,
.insight-section,
.approach-section,
.testimonial-section,
.services-preview,
.urgency-section,
.form-section,
.final-thought {
    padding: 3rem 0;
}

.story-section h2,
.insight-section h2,
.approach-section h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
    color: #1a1a1a;
}

.story-section p,
.insight-section p,
.approach-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-quote {
    font-size: 1.3rem;
    font-style: italic;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-left: 4px solid #1a5a8a;
    background-color: #f5f8fa;
    color: #2c2c2c;
}

.story-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.story-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.story-highlight {
    background-color: #fffaed;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 2px solid #f4d06f;
}

.story-highlight p {
    margin-bottom: 0;
}

/* Inline CTAs */
.inline-cta-box {
    background-color: #e8f4f8;
    padding: 1.5rem;
    margin: 2.5rem 0;
    text-align: center;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.cta-link {
    font-size: 1.1rem;
    color: #1a5a8a;
    font-weight: 600;
    display: inline-block;
}

.cta-link:hover {
    text-decoration: underline;
}

.inline-cta-button {
    display: inline-block;
    background-color: #1a5a8a;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 2rem 0;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.inline-cta-button:hover {
    background-color: #0d3d5c;
    color: #fff;
}

/* Image Breaks */
.image-break {
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.image-break img {
    width: 100%;
}

.image-caption {
    display: block;
    font-size: 0.95rem;
    font-style: italic;
    color: #666;
    margin-top: 0.7rem;
    padding: 0 1.5rem;
}

/* Process Steps */
.process-inline {
    margin: 2rem 0;
}

.process-step {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.process-step:last-child {
    border-bottom: none;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #1a5a8a;
}

.process-step p {
    margin-bottom: 0;
    font-size: 1.05rem;
}

/* Testimonials */
.testimonial-card {
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #1a5a8a;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 1rem;
    color: #666;
    font-style: normal;
}

/* Service Cards */
.service-cards {
    margin: 2rem 0;
}

.service-card {
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 1.5rem 0;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.service-card:hover {
    border-color: #1a5a8a;
}

.service-card.featured {
    background-color: #e8f4f8;
    border-color: #1a5a8a;
    position: relative;
}

.badge {
    display: inline-block;
    background-color: #1a5a8a;
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a5a8a;
    margin: 1rem 0;
    font-family: 'Arial', sans-serif;
}

.card-cta {
    display: inline-block;
    background-color: #1a5a8a;
    color: #fff;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.card-cta:hover {
    background-color: #0d3d5c;
    color: #fff;
}

/* Urgency Section */
.comparison-box {
    margin: 2rem 0;
    padding: 2rem 0;
}

.comparison-item {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid #1a5a8a;
}

.comparison-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.comparison-item p {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.urgency-text {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 2rem 0;
}

.cta-button-large {
    display: inline-block;
    background-color: #1a5a8a;
    color: #fff;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 2rem 0;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.cta-button-large:hover {
    background-color: #0d3d5c;
    color: #fff;
}

/* Form Section */
.form-section {
    background-color: #f5f8fa;
    padding: 3rem 0;
}

.form-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.consultation-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 2px solid #ddd;
    background-color: #fff;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5a8a;
}

.checkbox-group {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.95rem;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: #1a5a8a;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.submit-button:hover {
    background-color: #0d3d5c;
}

/* Final Thought */
.final-thought {
    background-color: #f9f9f9;
    padding: 3rem 0;
}

.closing-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Footer */
.site-footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

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

.footer-column a {
    color: #ccc;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
    font-family: 'Arial', sans-serif;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-button {
    display: block;
    background-color: #1a5a8a;
    color: #fff;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.sticky-button:hover {
    background-color: #0d3d5c;
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Services Page */
.page-header-simple {
    padding: 3rem 0 2rem;
    background-color: #f9f9f9;
}

.page-header-simple h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-detailed {
    padding: 2rem 0;
}

.service-detail-card {
    background-color: #fff;
    padding: 2.5rem 2rem;
    margin: 2rem 0;
    border: 2px solid #e0e0e0;
}

.service-detail-card.highlighted {
    background-color: #e8f4f8;
    border-color: #1a5a8a;
    position: relative;
}

.popular-badge {
    display: inline-block;
    background-color: #1a5a8a;
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5a8a;
    font-family: 'Arial', sans-serif;
}

.service-body h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: #1a1a1a;
}

.service-body p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

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

.service-benefits li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

.service-cta {
    display: inline-block;
    background-color: #1a5a8a;
    color: #fff;
    padding: 0.9rem 1.8rem;
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.service-cta:hover {
    background-color: #0d3d5c;
    color: #fff;
}

.comparison-section {
    background-color: #f9f9f9;
    padding: 3rem 0;
}

.comparison-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.comparison-table-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.cta-centered {
    text-align: center;
    margin: 3rem 0 1rem;
}

.cta-centered p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background-color: #1a5a8a;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.cta-button:hover {
    background-color: #0d3d5c;
    color: #fff;
}

/* About Page */
.values-list {
    margin: 2rem 0;
}

.value-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #1a5a8a;
}

.value-item p {
    font-size: 1.05rem;
    margin-bottom: 0;
}

.team-philosophy {
    background-color: #f5f8fa;
    padding: 2rem;
    margin: 2rem 0;
}

.team-philosophy h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.team-philosophy p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-section {
    padding: 2rem 0;
}

.contact-info-block {
    margin: 2rem 0;
}

.contact-info-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-item {
    margin: 1.5rem 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a5a8a;
    font-family: 'Arial', sans-serif;
}

.contact-item p {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.contact-item .note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.contact-text-section {
    margin: 3rem 0;
}

.contact-text-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-text-section p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.contact-methods {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.contact-methods li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.faq-simple {
    margin: 3rem 0;
}

.faq-simple h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.faq-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid #1a5a8a;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1.05rem;
    margin-bottom: 0;
}

.final-cta-box {
    background-color: #e8f4f8;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.final-cta-box h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.final-cta-box p {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

/* Thanks Page */
.thanks-section {
    padding: 4rem 0;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
}

.thanks-icon {
    font-size: 4rem;
    color: #1a5a8a;
    margin-bottom: 1rem;
}

.thanks-section h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.thanks-details {
    background-color: #e8f4f8;
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 1.1rem;
}

.thanks-info {
    text-align: left;
    margin: 3rem 0;
}

.thanks-info h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.next-steps {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.next-steps li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.reassurance {
    font-size: 1.1rem;
    font-style: italic;
    color: #666;
    margin-top: 1.5rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-primary {
    background-color: #1a5a8a;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0d3d5c;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: #1a5a8a;
    border: 2px solid #1a5a8a;
}

.btn-secondary:hover {
    background-color: #1a5a8a;
    color: #fff;
}

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

.thanks-contact p {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

/* Legal Pages */
.legal-page {
    padding: 2rem 0;
}

.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.update-date {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-section {
    margin: 2.5rem 0;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: #1a5a8a;
}

.legal-section p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1.5rem;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        border-bottom: none;
        padding: 0;
        gap: 2rem;
    }

    .nav-menu li {
        padding: 0;
    }

    .article-hero h1 {
        font-size: 3rem;
    }

    .lead-text {
        font-size: 1.4rem;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .sticky-cta {
        display: block;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .article-hero h1 {
        font-size: 3.5rem;
    }
}