/* 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;
}

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

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

/* Article Structure */
.editorial-article {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.article-header {
    margin-bottom: 3rem;
    text-align: left;
}

.headline {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.subheadline {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #666;
    font-weight: 400;
    font-style: italic;
}

.article-meta {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.reading-time {
    font-size: 0.875rem;
    color: #888;
}

.legal-date {
    font-size: 0.875rem;
    color: #888;
    font-style: italic;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Hero Image */
.hero-image-wrapper {
    margin: 3rem 0;
}

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

.image-caption {
    font-size: 0.875rem;
    color: #888;
    font-style: italic;
    margin-top: 0.75rem;
    text-align: center;
}

/* Article Content */
.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
}

.lead-paragraph {
    font-size: 1.375rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.section-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 3rem 0 1.5rem 0;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 2rem 0 1rem 0;
}

/* Inline Images */
.inline-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0 1rem 0;
    border-radius: 4px;
}

/* Editorial Quote */
.editorial-quote {
    font-size: 1.5rem;
    line-height: 1.5;
    font-style: italic;
    color: #2c2c2c;
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    border-left: 4px solid #1a1a1a;
    background-color: #f5f5f5;
}

.editorial-quote cite {
    display: block;
    font-size: 0.875rem;
    font-style: normal;
    color: #666;
    margin-top: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Inline CTA Box */
.inline-cta-box {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.inline-cta-box.alternate {
    background-color: #4a5568;
}

.inline-cta-box h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.inline-cta-box p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.cta-link {
    display: inline-block;
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.cta-link:hover {
    background-color: #ffffff;
    color: #2c2c2c;
}

/* Services Teaser */
.services-teaser {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.services-teaser h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-teaser > p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

.service-cards-inline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card-mini {
    background-color: #f9f9f9;
    padding: 2rem;
    border-left: 3px solid #2c2c2c;
}

.service-card-mini h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
}

.service-card-mini p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.price-tag {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
}

.secondary-cta {
    display: inline-block;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 0.875rem 2rem;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.secondary-cta:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Form Section */
.form-article-section {
    margin: 4rem 0;
    padding: 3rem 2.5rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.form-article-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-article-section > p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.editorial-form {
    max-width: 100%;
}

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

.form-group label {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.form-privacy {
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-privacy input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.form-privacy label {
    font-size: 0.875rem;
    color: #4a4a4a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-privacy a {
    color: #2c2c2c;
    text-decoration: underline;
}

.form-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    color: #ffffff;
    background-color: #2c2c2c;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
    background-color: #1a1a1a;
}

/* Closing Section */
.closing-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e0e0e0;
}

.closing-section p {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* About Page Specific */
.stats-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: #4a4a4a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-section-about {
    margin: 4rem 0;
    padding: 3rem 2.5rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
}

.cta-section-about h3 {
    font-size: 1.75rem;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.cta-section-about p {
    font-size: 1.125rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    color: #2c2c2c;
    background-color: #ffffff;
    padding: 0.875rem 2rem;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    border-radius: 4px;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e0e0e0;
}

.cta-button.secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-button.secondary:hover {
    background-color: #ffffff;
    color: #2c2c2c;
}

/* Services Page */
.service-detail {
    margin: 3rem 0;
    padding: 2.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
}

.service-detail.highlighted {
    border-color: #2c2c2c;
    background-color: #fafafa;
}

.service-detail.premium {
    border-color: #4a5568;
    background-color: #f9f9f9;
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.premium-badge {
    background-color: #4a5568;
}

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

.service-header h2 {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.service-includes {
    margin: 2rem 0;
}

.service-includes h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    font-size: 1rem;
    color: #4a4a4a;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-weight: 700;
}

.service-duration {
    font-size: 0.875rem;
    color: #888;
    margin: 1.5rem 0;
    font-style: italic;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.select-service-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    color: #ffffff;
    background-color: #2c2c2c;
    border: 2px solid #2c2c2c;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
}

.services-cta-section {
    margin: 4rem 0;
    padding: 3rem 2.5rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    text-align: center;
}

.services-cta-section h2 {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.services-cta-section p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

#selected-service-display {
    font-size: 1.125rem;
    color: #2c2c2c;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 3rem 0;
}

.contact-method h2 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.contact-method p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.contact-method a {
    color: #2c2c2c;
    text-decoration: underline;
}

.note {
    font-size: 0.875rem;
    color: #888;
    font-style: italic;
}

.contact-note-section,
.office-hours-detail,
.location-info {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.contact-note-section h2,
.office-hours-detail h2,
.location-info h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-note-section p,
.office-hours-detail p,
.location-info p {
    font-size: 1rem;
    color: #4a4a4a;
}

.contact-note-section a,
.office-hours-detail a,
.location-info a {
    color: #2c2c2c;
    text-decoration: underline;
}

.cta-section-contact {
    margin: 3rem 0;
    padding: 2rem;
    border: 2px solid #2c2c2c;
    border-radius: 4px;
    text-align: center;
}

.cta-section-contact h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
}

.cta-section-contact p {
    font-size: 1rem;
    color: #4a4a4a;
}

.cta-section-contact a {
    color: #2c2c2c;
    font-weight: 600;
    text-decoration: underline;
}

/* Thanks Page */
.thanks-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f0f7ff;
    border-left: 4px solid #2c2c2c;
    border-radius: 4px;
}

.thanks-details p {
    font-size: 1rem;
    color: #2c2c2c;
    margin: 0;
}

.thanks-details strong {
    color: #1a1a1a;
}

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

.next-steps h2 {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.step-content h3 {
    font-size: 1.125rem;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.step-content p {
    font-size: 0.95rem;
    color: #4a4a4a;
    margin: 0;
}

.while-you-wait {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.while-you-wait h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.while-you-wait > p {
    font-size: 1rem;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 2rem;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-card {
    padding: 1.5rem;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-card:hover {
    border-color: #2c2c2c;
}

.link-card h3 {
    font-size: 1.125rem;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.link-card p {
    font-size: 0.95rem;
    color: #4a4a4a;
    margin: 0;
}

.thanks-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.thanks-footer p {
    font-size: 0.95rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.thanks-footer a {
    color: #2c2c2c;
    text-decoration: underline;
}

.back-home-btn {
    display: inline-block;
    color: #ffffff;
    background-color: #2c2c2c;
    padding: 0.875rem 2rem;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.back-home-btn:hover {
    background-color: #1a1a1a;
}

/* Legal Pages */
.legal-content h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 2.5rem 0 1rem 0;
}

.legal-content h3 {
    font-size: 1.125rem;
    color: #2c2c2c;
    margin: 1.5rem 0 0.75rem 0;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.legal-content a {
    color: #2c2c2c;
    text-decoration: underline;
}

.legal-content strong {
    color: #1a1a1a;
    font-weight: 600;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.cookies-table th {
    background-color: #f5f5f5;
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #2c2c2c;
}

.cookies-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1.5rem 1.5rem;
    margin-top: 5rem;
}

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

.footer-column h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
}

.footer-column a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.875rem;
    color: #888;
}

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

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

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cookie-btn.accept {
    background-color: #ffffff;
    color: #2c2c2c;
}

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

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

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

/* Responsive Design */
@media (min-width: 768px) {
    .headline {
        font-size: 3rem;
    }

    .nav-links {
        gap: 2.5rem;
    }

    .service-cards-inline {
        flex-direction: row;
    }

    .service-card-mini {
        flex: 1;
    }

    .stats-section {
        flex-direction: row;
        justify-content: space-around;
    }

    .contact-info-section {
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-method {
        flex: 1;
    }

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

    .footer-column {
        flex: 1;
    }

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

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .links-grid {
        flex-direction: row;
    }

    .link-card {
        flex: 1;
    }
}

@media (max-width: 640px) {
    .headline {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .editorial-article {
        padding: 2rem 1rem;
    }

    .article-content {
        font-size: 1rem;
    }

    .lead-paragraph {
        font-size: 1.125rem;
    }

    .editorial-quote {
        font-size: 1.25rem;
        padding: 1.5rem;
    }

    .inline-cta-box,
    .form-article-section,
    .services-cta-section {
        padding: 1.5rem;
    }

    .service-detail {
        padding: 1.5rem;
    }

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

    .price-large {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-button {
        display: block;
        margin: 0.5rem 0;
    }
}
