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

html {
    scroll-behavior: smooth;
}

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

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

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

a:hover {
    color: #0d3a6b;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #1a5490;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* Navigation - Editorial Style */
.nav-editorial {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-size: 16px;
    color: #2a2a2a;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Editorial Container - Narrow Centered Layout */
.editorial-container {
    max-width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
}

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

/* Hero Section - Article Style */
.article-hero {
    padding: 60px 0;
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    color: #555555;
    font-weight: 400;
    font-style: italic;
}

.hero-image-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-image {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Story Sections */
.story-section {
    padding: 60px 0;
    border-bottom: 1px solid #e8e8e8;
}

.story-section h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.story-section p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
}

/* Inline CTAs */
.inline-cta,
.inline-cta-strong {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background-color: #1a5490;
    color: #ffffff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.inline-cta:hover,
.inline-cta-strong:hover {
    background-color: #0d3a6b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 84, 144, 0.3);
}

.inline-cta-strong {
    font-size: 18px;
    padding: 14px 32px;
}

/* Insight Box */
.insight-section {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.insight-box {
    background-color: #ffffff;
    padding: 40px;
    border-left: 4px solid #1a5490;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.insight-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a5490;
    font-weight: 700;
}

.insight-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
}

/* Image Break */
.image-break {
    padding: 60px 0;
    background-color: #fafafa;
}

.full-image {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.image-caption {
    max-width: 720px;
    margin: 20px auto 0;
    text-align: center;
    font-size: 16px;
    font-style: italic;
    color: #666666;
    padding: 0 20px;
}

/* Testimonial Inline */
.testimonial-inline {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.testimonial-inline blockquote {
    border-left: 4px solid #1a5490;
    padding-left: 30px;
    margin: 0;
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    color: #2a2a2a;
}

.testimonial-inline cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    font-style: normal;
    color: #666666;
    font-weight: 600;
}

/* Pillar Items */
.pillar-item {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e8e8e8;
}

.pillar-item:first-of-type {
    margin-top: 32px;
    padding-top: 32px;
}

.pillar-item h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #1a5490;
    font-weight: 700;
}

.pillar-item p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
}

/* Contrast Section */
.contrast-section {
    padding: 60px 0;
    background-color: #2a2a2a;
}

.contrast-section .narrow-content {
    color: #ffffff;
}

.contrast-section h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 700;
}

.contrast-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

/* Services Preview */
.services-preview {
    padding: 60px 0;
    background-color: #fafafa;
}

.services-preview h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.services-preview > .narrow-content > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #3a3a3a;
}

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

.service-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #1a5490;
    color: #ffffff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-select-service:hover {
    background-color: #0d3a6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 84, 144, 0.3);
}

/* Form Section */
.form-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.form-section > .narrow-content > p {
    text-align: center;
    margin-bottom: 40px;
    color: #3a3a3a;
}

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

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

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

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

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

.service-display {
    padding: 16px;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-size: 16px;
    color: #666666;
}

.service-display.selected {
    background-color: #e8f2fa;
    color: #1a5490;
    font-weight: 600;
    border: 2px solid #1a5490;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: #1a5490;
    color: #ffffff;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #0d3a6b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 84, 144, 0.3);
}

/* Final Section */
.final-section {
    padding: 80px 0;
    background-color: #1a5490;
    text-align: center;
}

.final-section .narrow-content {
    color: #ffffff;
}

.final-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.final-section p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e8f2fa;
}

.cta-final-large {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 40px;
    background-color: #ffffff;
    color: #1a5490;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-final-large:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

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

.sticky-cta-btn {
    padding: 14px 28px;
    background-color: #1a5490;
    color: #ffffff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(26, 84, 144, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #0d3a6b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 84, 144, 0.5);
}

/* Footer */
.footer-editorial {
    background-color: #2a2a2a;
    color: #e0e0e0;
    padding: 50px 20px 20px;
}

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

.footer-brand {
    flex: 1;
    min-width: 280px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

.footer-column a {
    color: #b0b0b0;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #444444;
    text-align: center;
    font-size: 14px;
    color: #888888;
}

/* Page Header */
.page-header {
    padding: 60px 0 40px;
    border-bottom: 1px solid #e8e8e8;
}

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

.page-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #555555;
    font-style: italic;
}

/* Values and Approach Sections */
.values-section,
.team-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.value-item,
.approach-box {
    margin-top: 40px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 4px;
    border-left: 4px solid #1a5490;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.value-item:first-of-type,
.approach-box:first-of-type {
    margin-top: 32px;
}

.value-item h3,
.approach-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a5490;
    font-weight: 700;
}

.value-item p,
.approach-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    text-align: center;
    background-color: #ffffff;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.cta-button-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a5490;
    color: #ffffff;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: #0d3a6b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 84, 144, 0.3);
}

/* Services Detailed */
.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    border: 1px solid #e8e8e8;
}

.service-detail-card.featured-service {
    border: 3px solid #1a5490;
    background-color: #f8fbff;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.service-header h2 {
    font-size: 28px;
    color: #1a1a1a;
    font-weight: 700;
    flex: 1;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #1a5490;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 30px;
}

.service-includes h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2a2a2a;
    font-weight: 700;
}

.service-includes ul {
    margin-left: 20px;
    margin-bottom: 30px;
}

.service-includes li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a5490;
    font-weight: 700;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0;
}

/* Contact Page */
.contact-info-section {
    padding: 60px 0;
}

.contact-card {
    padding: 40px;
    background-color: #fafafa;
    border-radius: 4px;
    margin-bottom: 30px;
}

.contact-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 25px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a5490;
    font-weight: 700;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0;
}

.contact-note {
    padding: 20px;
    background-color: #e8f2fa;
    border-left: 4px solid #1a5490;
    border-radius: 4px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #2a2a2a;
    margin: 0;
}

.map-placeholder {
    padding: 40px 0;
    background-color: #fafafa;
}

.map-box {
    padding: 40px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
}

.map-box p {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2a2a2a;
}

.map-note {
    font-size: 16px;
    color: #666666;
    font-style: italic;
}

/* Thanks Page */
.thanks-section {
    padding: 80px 0;
}

.thanks-box {
    text-align: center;
    padding: 60px 40px;
    background-color: #f8fbff;
    border-radius: 4px;
    border: 2px solid #1a5490;
}

.thanks-box h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a5490;
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #3a3a3a;
}

.service-confirmation {
    margin-bottom: 40px;
}

.selected-service-info {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.selected-service-info h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #666666;
    font-weight: 600;
}

.service-name {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-price {
    font-size: 28px;
    color: #1a5490;
    font-weight: 700;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 40px auto;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.steps-list {
    margin-left: 20px;
}

.steps-list li {
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
}

.thanks-cta {
    margin-top: 40px;
}

.thanks-cta p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.btn-secondary {
    display: inline-block;
    margin: 0 10px;
    padding: 12px 28px;
    background-color: #ffffff;
    color: #1a5490;
    border: 2px solid #1a5490;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a5490;
    color: #ffffff;
}

/* Legal Pages */
.legal-page {
    padding: 40px 0;
}

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

.legal-intro {
    font-size: 16px;
    color: #666666;
    margin-bottom: 40px;
    font-style: italic;
}

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

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a5490;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #2a2a2a;
    font-weight: 600;
}

.legal-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #3a3a3a;
}

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

.legal-section li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 32px;
    }

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

    .story-section h2,
    .page-header h1 {
        font-size: 28px;
    }

    .story-section {
        padding: 40px 0;
    }

    .service-card {
        padding: 25px;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

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

    .footer-links {
        gap: 30px;
    }

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

    .thanks-box {
        padding: 40px 20px;
    }

    .thanks-box h1 {
        font-size: 32px;
    }

    .btn-secondary {
        display: block;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .service-header {
        flex-direction: column;
    }

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

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}