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

:root {
    --primary-color: #d4a5a5;
    --primary-dark: #b88888;
    --text-dark: #2c2c2c;
    --text-medium: #555555;
    --text-light: #777777;
    --background-light: #faf8f6;
    --background-cream: #f5f1ed;
    --border-color: #e5e5e5;
    --white: #ffffff;
    --max-text-width: 680px;
    --max-content-width: 1200px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.8em;
    color: var(--text-dark);
}

h1 {
    font-size: 2.8em;
    line-height: 1.15;
}

h2 {
    font-size: 2.2em;
}

h3 {
    font-size: 1.6em;
}

h4 {
    font-size: 1.3em;
}

p {
    margin-bottom: 1.3em;
}

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

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

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

ul {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

li {
    margin-bottom: 0.5em;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 1.5rem;
    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: var(--max-content-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

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

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

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

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

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

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

.btn-reject:hover {
    background-color: var(--white);
    color: var(--text-dark);
}

.nav-minimal {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background-color: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-brand {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
}

.nav-brand a {
    color: var(--text-dark);
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

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

.nav-links a {
    color: var(--text-medium);
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

.hero-editorial {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    margin-bottom: 4rem;
}

.hero-image-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.display-title {
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
    font-size: 3rem;
    line-height: 1.2;
    text-align: center;
}

.intro-narrow {
    max-width: var(--max-text-width);
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.drop-cap::first-letter {
    font-size: 4em;
    line-height: 0.8;
    float: left;
    margin: 0.1em 0.1em 0 0;
    font-weight: bold;
    color: var(--primary-color);
}

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

.section-title {
    max-width: var(--max-text-width);
    margin: 0 auto 2rem;
    text-align: left;
}

.section-title.centered {
    text-align: center;
    max-width: 900px;
}

.story-content {
    max-width: var(--max-content-width);
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.story-content-reverse {
    max-width: var(--max-content-width);
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 3rem;
    align-items: flex-start;
}

.story-text {
    flex: 1;
    max-width: var(--max-text-width);
}

.story-image {
    flex: 0 0 400px;
}

.story-image img {
    border-radius: 4px;
}

.problem-image-left {
    flex: 0 0 500px;
}

.cta-inline {
    max-width: var(--max-text-width);
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-link {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.2rem;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.problem-section {
    max-width: var(--max-content-width);
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.problem-text {
    flex: 1;
    max-width: 600px;
}

.subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.insight-block {
    max-width: var(--max-text-width);
    margin: 5rem auto;
    padding: 3rem 2rem;
    background-color: var(--background-cream);
}

.insight-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
    color: var(--text-medium);
}

.insight-quote cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
}

.approach-section {
    max-width: var(--max-content-width);
    margin: 5rem auto;
    padding: 0 2rem;
}

.approach-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card {
    flex: 1 1 280px;
    padding: 2rem;
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-color);
}

.card-number {
    display: block;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.approach-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.approach-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.cta-section-banner {
    max-width: 800px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: var(--background-cream);
}

.cta-section-banner h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.trust-section {
    max-width: var(--max-content-width);
    margin: 5rem auto;
    padding: 0 2rem;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    max-width: var(--max-text-width);
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.testimonial-author strong {
    font-size: 1rem;
    color: var(--text-dark);
}

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

.services-preview {
    max-width: var(--max-content-width);
    margin: 5rem auto;
    padding: 0 2rem;
}

.services-intro {
    max-width: var(--max-text-width);
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-medium);
}

.service-list-editorial {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.service-item {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 300px;
}

.service-image img {
    border-radius: 4px;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-highlights li {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-price-reveal {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.price-amount {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.cta-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 1rem 2rem;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cta-sticky-bar.show {
    display: flex;
}

.cta-sticky-bar span {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
}

.btn-cta-sticky {
    padding: 0.7rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.bonus-section {
    max-width: var(--max-content-width);
    margin: 5rem auto;
    padding: 0 2rem;
}

.bonus-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 1.5rem;
    background-color: var(--background-light);
}

.bonus-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.bonus-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.urgency-section {
    max-width: var(--max-text-width);
    margin: 5rem auto;
    padding: 2.5rem 2rem;
    background-color: var(--background-cream);
    border-left: 4px solid var(--primary-color);
}

.urgency-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.form-section {
    max-width: var(--max-text-width);
    margin: 5rem auto 5rem;
    padding: 0 2rem;
}

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

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

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

.form-group label {
    font-family: 'Helvetica Neue', 'Arial', 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 {
    padding: 0.8rem;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    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-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

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

.form-group-checkbox label {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.9rem;
    color: var(--text-medium);
    cursor: pointer;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-section {
    max-width: var(--max-content-width);
    margin: 5rem auto 5rem;
    padding: 0 2rem;
}

.final-image {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.final-image img {
    border-radius: 4px;
}

.final-text {
    max-width: var(--max-text-width);
    margin: 0 auto;
}

.final-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
}

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

.footer-content {
    max-width: var(--max-content-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 0.9rem;
    color: #cccccc;
}

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

.footer-col li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: #cccccc;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #555555;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #999999;
    margin: 0;
}

.page-header {
    max-width: var(--max-text-width);
    margin: 3rem auto 3rem;
    padding: 0 2rem;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

.philosophy-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    max-width: var(--max-content-width);
    margin-left: auto;
    margin-right: auto;
}

.philosophy-card {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: var(--background-light);
}

.philosophy-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.philosophy-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.team-section {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.team-member {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.team-member:nth-child(even) {
    flex-direction: row-reverse;
}

.member-image {
    flex: 0 0 250px;
}

.member-image img {
    border-radius: 4px;
}

.member-info {
    flex: 1;
}

.member-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.member-role {
    display: block;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    font-size: 1rem;
    line-height: 1.6;
}

.values-section {
    max-width: var(--max-text-width);
    margin: 5rem auto;
    padding: 0 2rem;
}

.values-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.space-section {
    max-width: var(--max-content-width);
    margin: 5rem auto;
    padding: 0 2rem;
}

.space-images {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.space-images img {
    flex: 1;
    border-radius: 4px;
}

.space-description {
    max-width: var(--max-text-width);
    margin: 2rem auto 0;
    font-size: 1rem;
    color: var(--text-medium);
    text-align: center;
}

.services-full-list {
    max-width: var(--max-content-width);
    margin: 3rem auto;
    padding: 0 2rem;
}

.service-detail-card {
    margin-bottom: 5rem;
    padding-bottom: 4rem;
    border-bottom: 2px solid var(--border-color);
}

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

.service-detail-image {
    max-width: 100%;
    margin-bottom: 2rem;
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.service-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.9rem;
    color: var(--white);
    background-color: var(--primary-color);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-weight: 500;
}

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

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

.service-includes h4,
.service-outcome h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

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

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-includes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.service-price-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--background-cream);
    border-left: 4px solid var(--primary-color);
}

.price-label {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 600;
}

.price-value {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.price-note {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.btn-service-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.faq-section {
    max-width: var(--max-text-width);
    margin: 5rem auto;
    padding: 0 2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background-color: var(--background-light);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-info-section {
    max-width: var(--max-text-width);
    margin: 3rem auto;
    padding: 0 2rem;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

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

.visit-section,
.transport-section {
    max-width: var(--max-text-width);
    margin: 4rem auto;
    padding: 0 2rem;
}

.visit-content p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.transport-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.transport-option {
    padding: 1.5rem;
    background-color: var(--background-light);
}

.transport-option h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.transport-option p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-map-placeholder {
    max-width: var(--max-text-width);
    margin: 4rem auto;
    padding: 0 2rem;
}

.map-box {
    padding: 3rem;
    background-color: var(--background-cream);
    text-align: center;
    border-radius: 4px;
}

.map-text {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    color: var(--text-medium);
    margin: 0;
}

.contact-faq {
    max-width: var(--max-text-width);
    margin: 4rem auto;
    padding: 0 2rem;
}

.thanks-page {
    min-height: 60vh;
}

.thanks-content {
    max-width: var(--max-text-width);
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
}

.thanks-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.thanks-main {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    font-size: 1.05rem;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 2rem;
    height: 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

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

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.thanks-contact-info {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--background-light);
}

.thanks-contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.thanks-additional {
    max-width: var(--max-content-width);
    margin: 4rem auto;
    padding: 0 2rem;
}

.thanks-additional h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

.thanks-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.thanks-link-card {
    flex: 0 1 300px;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.thanks-link-card:hover {
    background-color: var(--background-cream);
    transform: translateY(-4px);
}

.thanks-link-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.thanks-link-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--text-medium);
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
}

.legal-date {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 0;
}

.legal-content {
    padding: 0 2rem 3rem;
}

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

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

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

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

.legal-table th {
    background-color: var(--background-light);
    font-weight: 600;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.legal-back {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

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

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .display-title {
        font-size: 2rem;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.8em;
    }

    .story-content,
    .story-content-reverse,
    .problem-section {
        flex-direction: column;
    }

    .story-image,
    .problem-image-left {
        flex: 1;
        max-width: 100%;
    }

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

    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        flex: 1;
        max-width: 100%;
    }

    .team-member {
        flex-direction: column;
    }

    .team-member:nth-child(even) {
        flex-direction: column;
    }

    .member-image {
        flex: 1;
        max-width: 100%;
    }

    .space-images {
        flex-direction: column;
    }

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

    .bonus-item {
        flex: 1 1 100%;
    }

    .cta-sticky-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

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

    .thanks-links {
        flex-direction: column;
    }

    .thanks-link-card {
        flex: 1;
    }
}

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

    .hero-editorial {
        height: 50vh;
        min-height: 400px;
    }

    .hero-text-overlay {
        padding: 2rem 1rem;
    }

    .display-title {
        font-size: 1.6rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .approach-cards {
        flex-direction: column;
    }

    .approach-card {
        flex: 1 1 100%;
    }

    .service-detail-image img {
        height: 250px;
    }
}