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

:root {
    --primary-color: #2d5a3d;
    --primary-dark: #1e3d29;
    --primary-light: #3f7252;
    --accent-color: #8b7355;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-white: #ffffff;
    --bg-light: #f8f7f5;
    --bg-accent: #ebe8e3;
    --border-color: #d4d0c8;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style-position: inside;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.25rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px var(--shadow);
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
}

.cookie-content a {
    color: var(--bg-white);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: var(--primary-dark);
}

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

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

/* Navigation */
.nav-minimal {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

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

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-medium);
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* Main Content - Editorial Story Layout */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Editorial */
.hero-editorial {
    max-width: 720px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.hero-text-narrow {
    margin-bottom: 2.5rem;
}

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

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-medium);
    font-weight: 400;
}

.hero-image {
    margin: 2.5rem 0;
    overflow: hidden;
    border-radius: 4px;
}

.hero-image img {
    width: 100%;
    object-fit: cover;
}

/* Content Blocks - Narrow Editorial Style */
.content-block {
    padding: 3rem 1.5rem;
}

.content-block.bg-light {
    background-color: var(--bg-light);
}

.content-block.bg-accent {
    background-color: var(--bg-accent);
}

.text-narrow {
    max-width: 680px;
    margin: 0 auto;
}

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

.content-block h2 {
    font-size: 1.875rem;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-weight: 700;
}

.content-block h3 {
    font-size: 1.375rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.content-block p {
    margin-bottom: 1.25rem;
    color: var(--text-medium);
    font-size: 1.0625rem;
}

.content-block ul {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.content-block li {
    margin-bottom: 0.75rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Inline CTA */
.inline-cta {
    margin: 2rem 0;
}

.text-link-arrow {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.text-link-arrow:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* Image Break - Full Width */
.image-break {
    margin: 3rem 0;
    width: 100%;
}

.image-break img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Testimonials */
.testimonial-inline {
    max-width: 720px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.testimonial-inline blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
    font-style: italic;
    margin: 2rem 0;
}

.testimonial-inline blockquote p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Services Cards */
.services-cards {
    max-width: 1000px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px var(--shadow);
}

.service-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    background-color: var(--bg-light);
}

.badge,
.badge-inline {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

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

.service-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.duration {
    font-size: 0.9rem;
    color: var(--text-light);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-service {
    width: 100%;
    padding: 0.875rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow);
}

/* Form Section */
.form-section {
    max-width: 680px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-intro {
    font-size: 1.0625rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.btn-submit {
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.btn-submit:disabled {
    background-color: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

/* Final CTA */
.final-cta {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 1.5rem;
    text-align: center;
}

.cta-content {
    max-width: 680px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.final-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-large {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px var(--shadow);
}

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Footer */
.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 1.5rem 1.5rem;
}

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

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

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-section p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.625rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Page Header */
.page-header {
    max-width: 720px;
    margin: 3rem auto 2rem;
    padding: 0 1.5rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Stats Section */
.stats-section {
    padding: 3rem 1.5rem;
    background-color: var(--bg-light);
}

.stats-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Services Detailed Page */
.services-detailed {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 2px solid var(--border-color);
}

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

.service-detail.reverse {
    flex-direction: column;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-includes,
.service-for {
    margin-bottom: 2rem;
}

.service-includes h4,
.service-for h4 {
    font-size: 1.125rem;
    margin-bottom: 0.875rem;
    color: var(--text-dark);
}

.service-includes ul {
    list-style-position: outside;
    padding-left: 1.5rem;
}

.service-includes li {
    margin-bottom: 0.625rem;
    color: var(--text-medium);
}

.service-for p {
    color: var(--text-medium);
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-note {
    font-size: 0.875rem;
    color: var(--text-light);
}

.service-detail-image {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

/* Contact Page */
.contact-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--bg-white);
    padding: 1rem;
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-weight: 600;
}

.info-boxes {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-box {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.info-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-box p {
    color: var(--text-medium);
    line-height: 1.6;
}

.checklist {
    list-style-position: outside;
    padding-left: 1.5rem;
}

.checklist li {
    margin-bottom: 0.75rem;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

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

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Thanks Page */
.thanks-page {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.thanks-content {
    flex: 2;
}

.thanks-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.thanks-page h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.thanks-message {
    max-width: 720px;
    margin: 0 auto;
}

.thanks-message .lead {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

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

.next-steps h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-medium);
}

.thanks-info {
    background-color: var(--bg-accent);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.875rem;
    color: var(--text-dark);
}

.thanks-info p {
    color: var(--text-medium);
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.thanks-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-card p {
    color: var(--text-medium);
    margin-bottom: 0.875rem;
}

.info-card ul {
    list-style-position: outside;
    padding-left: 1.5rem;
}

.info-card li {
    margin-bottom: 0.625rem;
    color: var(--text-medium);
}

/* Legal Pages */
.legal-page .content-block {
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-page h4 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-page h5 {
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.expertise-list {
    list-style-position: outside;
    padding-left: 1.5rem;
}

.expertise-list li {
    margin-bottom: 0.875rem;
    font-size: 1.0625rem;
}

.cookie-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
}

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

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

.cookie-table td {
    color: var(--text-medium);
}

.browser-instructions {
    margin: 2rem 0;
}

.browser-instructions h5 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.browser-instructions p {
    color: var(--text-medium);
    font-size: 0.9375rem;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        border-top: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
    }

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

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

    .content-block h2 {
        font-size: 1.5rem;
    }

    .image-break img {
        height: 250px;
    }

    .testimonial-inline blockquote p {
        font-size: 1.125rem;
    }

    .service-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .final-cta h2 {
        font-size: 1.625rem;
    }

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

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

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

    .service-detail-content h3 {
        font-size: 1.5rem;
    }

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

    .thanks-page h1 {
        font-size: 2rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

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

    .service-detail {
        flex-direction: row;
        align-items: center;
    }

    .service-detail.reverse {
        flex-direction: row-reverse;
    }

    .thanks-page {
        flex-direction: row;
        align-items: flex-start;
    }

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

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