* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #2d8ba8;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-dark: #34495e;
    --white: #ffffff;
    --success: #27ae60;
    --border-color: #e1e8ed;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.3;
    margin-bottom: 0.8em;
    color: var(--text-dark);
    font-weight: 700;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.2em;
}

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

a:hover {
    color: var(--secondary-color);
}

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

.story-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 5rem 1.5rem 3rem;
}

.story-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-hero {
    margin: 2rem 0 3rem;
}

.hero-image-wrapper {
    margin-bottom: 2rem;
    border-radius: 4px;
    overflow: hidden;
}

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

.story-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.story-intro {
    font-size: 1.35rem;
    color: var(--text-light);
    line-height: 1.6;
}

.story-section {
    margin: 2rem 0;
}

.story-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.section-heading-center {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.story-section-dark {
    background: var(--bg-dark);
    color: var(--white);
    padding: 3rem 2rem;
    margin: 3rem -2rem;
    border-radius: 4px;
}

.story-section-dark .story-text,
.story-section-dark .section-heading {
    color: var(--white);
}

.insight-box {
    background: rgba(243, 156, 18, 0.15);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.insight-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--white);
    margin: 0;
}

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

.problem-card {
    background: var(--bg-light);
    padding: 1.8rem;
    border-radius: 4px;
    border-left: 3px solid var(--accent-color);
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.problem-card p {
    font-size: 1rem;
    margin: 0;
    color: var(--text-light);
}

.testimonial-inline {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    margin: 3rem -1rem;
    border-left: 4px solid var(--primary-color);
}

.testimonial-inline blockquote {
    border: none;
    padding: 0;
    margin: 0;
}

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

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

.story-section-accent {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 3rem 2rem;
    margin: 3rem -2rem;
    border-radius: 4px;
}

.story-section-accent .section-heading,
.story-section-accent .story-text {
    color: var(--white);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.benefit-item p {
    font-size: 1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

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

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

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.story-section-image-left {
    margin: 3rem 0;
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.split-image {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

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

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.story-section-testimonials {
    margin: 3rem 0;
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 4px;
    border-top: 3px solid var(--primary-color);
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.story-section-services {
    margin: 4rem 0;
}

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 3rem 0;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

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

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 1.5rem 0;
}

.service-features span {
    font-size: 0.95rem;
    color: var(--text-dark);
}

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

.service-featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.05), rgba(45, 139, 168, 0.05));
}

.story-section-urgency {
    margin: 3rem 0;
}

.urgency-box {
    background: var(--accent-color);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 4px;
    text-align: center;
}

.urgency-box h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.urgency-box p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.urgency-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-top: 1.5rem;
}

.story-section-form {
    margin: 4rem 0;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.story-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 4px;
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--white);
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.story-section-final {
    text-align: center;
    margin: 4rem 0 2rem;
}

.story-section-final h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.story-section-final p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.btn-cta-primary,
.btn-cta-secondary,
.btn-cta-final {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.btn-cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-cta-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-cta-final {
    background: var(--accent-color);
    color: var(--white);
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

.btn-cta-final:hover {
    background: #e67e22;
    transform: scale(1.05);
}

.cta-section-mid {
    background: var(--bg-light);
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem -2rem;
    border-radius: 4px;
}

.cta-section-mid h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 95, 122, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
}

.sticky-cta-btn {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.8rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #e67e22;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

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

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

.btn-cookie-accept {
    background: var(--success);
    color: var(--white);
}

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

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

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

.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

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

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

.footer-section p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.about-hero,
.services-hero,
.contact-hero {
    margin: 3rem 0;
    text-align: center;
}

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.value-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.value-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin: 0;
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.mission-text {
    font-size: 1.4rem;
    line-height: 1.7;
    text-align: center;
    color: var(--white);
    font-style: italic;
    margin: 0;
}

.service-card-detailed {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2.5rem;
    position: relative;
    margin-bottom: 2rem;
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.service-tagline {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-description-full {
    margin: 2rem 0;
}

.service-description-full h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.service-description-full ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.service-description-full li {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.service-description-full p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.btn-service {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.featured-service {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.03), rgba(45, 139, 168, 0.03));
}

.guarantee-text {
    font-size: 1.25rem;
    text-align: center;
    color: var(--white);
    margin-bottom: 1rem;
}

.guarantee-subtext {
    font-size: 1.05rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.services-guide {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

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

.contact-info,
.contact-map {
    width: 100%;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.map-placeholder {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.map-placeholder img {
    width: 100%;
    height: auto;
}

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

.map-overlay p {
    margin: 0;
    font-size: 1rem;
}

.map-description {
    font-size: 1.05rem;
    line-height: 1.6;
}

.cta-text {
    font-size: 1.15rem;
    text-align: center;
    color: var(--white);
    margin-bottom: 2rem;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem 3rem;
}

.legal-content {
    line-height: 1.7;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.legal-update {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.legal-section ul {
    margin: 1rem 0 1.5rem 2rem;
}

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

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

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

.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-light), var(--white));
}

.thanks-content {
    max-width: 700px;
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    text-align: left;
    margin: 2rem 0;
}

.thanks-message p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.thanks-steps {
    margin: 1.5rem 0 1.5rem 2rem;
}

.thanks-steps li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}

.service-selection-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.selected-service-highlight {
    text-align: left;
}

.selected-service-highlight p {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}

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

.thanks-extra {
    margin: 3rem 0 2rem;
}

.thanks-extra h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.thanks-tips {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tip-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
    text-align: left;
}

.tip-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.tip-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.thanks-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.thanks-contact p {
    font-size: 1rem;
    margin: 0;
}

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

    .story-container {
        padding: 6rem 2rem 4rem;
    }

    .story-title {
        font-size: 3.5rem;
    }

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

    .problem-card {
        flex: 1;
        min-width: 280px;
    }

    .split-content {
        flex-direction: row;
    }

    .split-image {
        width: 45%;
    }

    .split-text {
        width: 55%;
    }

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

    .testimonial-card {
        flex: 1;
        min-width: 300px;
    }

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

    .value-card {
        flex: 1;
        min-width: 300px;
    }

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

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

    .contact-info {
        width: 50%;
    }

    .contact-map {
        width: 50%;
    }

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

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

    .thanks-tips {
        flex-direction: row;
    }

    .tip-card {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .nav-floating {
        padding: 1rem;
    }

    .nav-menu {
        display: none;
    }

    h1 {
        font-size: 2rem;
    }

    .story-title {
        font-size: 2.2rem;
    }

    .section-heading-center {
        font-size: 1.8rem;
    }

    .story-section-dark,
    .story-section-accent,
    .cta-section-mid {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .sticky-cta {
        padding: 0.8rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .thanks-content {
        padding: 2rem 1.5rem;
    }

    .thanks-content h1 {
        font-size: 1.8rem;
    }
}