/* 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: #d64545;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #a32f2f;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.25rem;
    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;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

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

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

.btn-cookie {
    background-color: #d64545;
    color: #ffffff;
}

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

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

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

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

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: #d64545;
}

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

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9375rem;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Editorial Container - Article-like narrow centered text */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Hero Section */
.hero-editorial {
    margin-bottom: 4rem;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
    font-weight: 700;
}

.subtitle {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-image {
    width: 100%;
    margin-top: 2.5rem;
    border-radius: 4px;
}

/* Page Header */
.page-header {
    margin-bottom: 3.5rem;
    text-align: center;
}

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

/* Content Blocks */
.content-block {
    margin-bottom: 3.5rem;
}

.content-block h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.content-block h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2c2c2c;
    font-weight: 600;
}

.content-block p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.content-image {
    width: 100%;
    margin: 2.5rem 0;
    border-radius: 4px;
}

/* Highlight Section */
.highlight-section {
    background-color: #f5f5f5;
    padding: 2.5rem;
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    border-radius: 4px;
}

/* Blockquote */
blockquote {
    border-left: 4px solid #d64545;
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    font-size: 1.25rem;
    color: #2c2c2c;
    line-height: 1.7;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 1rem;
    color: #666;
}

/* Inline CTA */
.inline-cta {
    text-align: center;
    margin: 2.5rem 0;
}

.cta-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: #d64545;
    font-weight: 600;
    border-bottom: 2px solid #d64545;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #a32f2f;
    border-bottom-color: #a32f2f;
}

/* Stat Box */
.stat-box {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 2.5rem;
    margin: 2.5rem 0;
    border-radius: 4px;
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #d64545;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.stat-label {
    font-size: 1.125rem;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Service Cards Inline */
.service-cards-inline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.375rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d64545;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-top: 1rem;
}

/* Testimonial Section */
.testimonial-section {
    margin: 4rem 0;
}

.testimonial {
    background-color: #f5f5f5;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
    border-left: 4px solid #d64545;
}

.testimonial p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-size: 1rem;
    color: #666;
    margin-top: 1rem;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-large {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-weight: 600;
}

.btn-primary {
    background-color: #d64545;
    color: #ffffff;
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #a32f2f;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #d64545;
    border: 2px solid #d64545;
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

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

.btn-primary-large {
    background-color: #d64545;
    color: #ffffff;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.btn-primary-large:hover {
    background-color: #a32f2f;
    color: #ffffff;
}

/* Forms */
.editorial-form {
    margin: 2.5rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    padding: 0.875rem;
    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: #d64545;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Final CTA Section */
.final-cta {
    text-align: center;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 2.5rem;
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    margin-top: 4rem;
    border-radius: 4px;
}

.final-cta h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.final-cta p {
    color: #e0e0e0;
    margin-bottom: 2rem;
}

/* Services Page Specific */
.services-detailed {
    margin-top: 3rem;
}

.service-detail {
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-header h2 {
    margin-bottom: 0;
}

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

.service-description ul {
    list-style-position: inside;
    margin: 1.5rem 0;
}

.service-description li {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.faq-section {
    margin-top: 4rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.faq-item p {
    font-size: 1rem;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Contact Page Specific */
.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info,
.contact-faq {
    flex: 1;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.125rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-detail p {
    font-size: 1rem;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-bottom: 0.5rem;
}

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

.faq-compact {
    margin-bottom: 1.5rem;
}

.faq-compact h3 {
    font-size: 1.125rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.faq-compact p {
    font-size: 0.9375rem;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.location-section {
    margin-top: 4rem;
}

.final-note {
    text-align: center;
    margin-top: 3rem;
}

/* Thanks Page Specific */
.thanks-page {
    text-align: center;
}

.thanks-content {
    margin-bottom: 3rem;
}

.thanks-info-box {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 4px;
    margin: 2.5rem 0;
    text-align: left;
}

.thanks-info-box h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.thanks-steps {
    list-style-position: inside;
    padding-left: 0;
}

.thanks-steps li {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.service-reminder {
    background-color: #d64545;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.suggestions-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.suggestion-card {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 4px;
    text-align: left;
}

.suggestion-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.suggestion-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.25rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.urgent-section {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 4px;
    margin: 2.5rem 0;
}

.thanks-final {
    margin-top: 3rem;
}

/* About Page Specific */
.team-section {
    margin: 4rem 0;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

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

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.role {
    display: block;
    font-size: 1rem;
    color: #d64545;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.team-member p {
    font-size: 1rem;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
}

.legal-page ul {
    list-style-position: inside;
    margin: 1rem 0;
}

.legal-page li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2c2c2c;
}

.legal-page ol {
    list-style-position: inside;
    margin: 1rem 0;
}

.legal-page ol li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2c2c2c;
}

.legal-page h4 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
    color: #2c2c2c;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 1.5rem 2rem;
    margin-top: 5rem;
}

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

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

.footer-column p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9375rem;
    color: #ccc;
    line-height: 1.6;
}

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

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

.footer-column a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9375rem;
    color: #ccc;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    color: #999;
}

/* Responsive Design - Mobile First */
@media (min-width: 640px) {
    .hero-editorial h1 {
        font-size: 3.25rem;
    }

    .page-header h1 {
        font-size: 3rem;
    }

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

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

@media (min-width: 768px) {
    .editorial-container {
        padding: 4rem 2rem;
    }

    .highlight-section {
        margin-left: -3rem;
        margin-right: -3rem;
        padding: 3rem;
    }

    .final-cta {
        padding: 4rem 3rem;
        margin-left: -3rem;
        margin-right: -3rem;
    }

    .contact-layout {
        flex-direction: row;
    }

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

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

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

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

    .footer-column {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .nav-links {
        gap: 2.5rem;
    }

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

    .hero-editorial h1 {
        font-size: 3.75rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-small {
    margin-top: 1rem;
}

.mt-medium {
    margin-top: 2rem;
}

.mt-large {
    margin-top: 3rem;
}

.mb-small {
    margin-bottom: 1rem;
}

.mb-medium {
    margin-bottom: 2rem;
}

.mb-large {
    margin-bottom: 3rem;
}