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

:root {
    --primary-color: #1a1a1a;
    --accent-color: #e63946;
    --text-color: #2d2d2d;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --border-color: #dee2e6;
}

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

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hero-immersive {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-text-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 0 5%;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-subtext {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    opacity: 0.95;
}

.intro-story {
    padding: 8rem 5% 6rem;
    background: var(--white);
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6rem;
}

.story-visual {
    flex: 1;
}

.story-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 700;
}

.story-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.problem-reveal {
    padding: 7rem 5%;
    background: var(--light-bg);
}

.reveal-content {
    max-width: 1200px;
    margin: 0 auto;
}

.reveal-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.problem-grid {
    display: flex;
    gap: 2.5rem;
}

.problem-card {
    flex: 1;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.problem-card p {
    color: var(--gray);
    line-height: 1.7;
}

.cta-inline {
    padding: 3rem 5%;
    text-align: center;
}

.cta-link {
    display: inline-block;
    font-size: 1.3rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    transition: all 0.3s;
}

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

.insight-section {
    padding: 7rem 5%;
    background: var(--primary-color);
    color: var(--white);
}

.insight-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.insight-text-wide {
    flex: 1.2;
}

.insight-text-wide h2 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.insight-text-wide p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.insight-image {
    flex: 0.8;
}

.insight-image img {
    width: 100%;
    border-radius: 8px;
}

.trust-markers {
    padding: 5rem 5%;
    background: var(--white);
}

.marker-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 3rem;
}

.marker {
    text-align: center;
}

.marker-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.marker-label {
    font-size: 1.1rem;
    color: var(--gray);
}

.testimonial-visual {
    padding: 6rem 5%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    gap: 5rem;
}

.testimonial-image {
    flex: 0.6;
}

.testimonial-image img {
    width: 100%;
    border-radius: 8px;
}

.testimonial-quote {
    flex: 1;
    max-width: 600px;
}

.testimonial-quote p {
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.testimonial-quote cite {
    font-size: 1.1rem;
    color: var(--gray);
    font-style: normal;
}

.service-reveal {
    padding: 8rem 5%;
    background: var(--white);
}

.reveal-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.reveal-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.reveal-header p {
    font-size: 1.2rem;
    color: var(--gray);
}

.service-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    padding: 3rem;
}

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

.service-image {
    flex: 1;
}

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.7;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.btn-select-service {
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.testimonial-stack {
    padding: 6rem 5%;
    background: var(--primary-color);
    color: var(--white);
}

.testimonial-item {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.testimonial-item p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-item cite {
    font-size: 1rem;
    opacity: 0.8;
    font-style: normal;
}

.urgency-section {
    padding: 5rem 5%;
    background: var(--accent-color);
    color: var(--white);
    text-align: center;
}

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.cta-block-center {
    padding: 6rem 5%;
    text-align: center;
    background: var(--light-bg);
}

.cta-block-center h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.btn-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.3rem 3.5rem;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-large:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.form-section {
    padding: 8rem 5%;
    background: var(--white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

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

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

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

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

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

.btn-submit {
    background: var(--accent-color);
    color: var(--white);
    padding: 1.3rem;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

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

.final-trust {
    padding: 6rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.trust-content {
    max-width: 700px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.trust-content p {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.7;
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    color: var(--white);
    padding: 1.2rem 5%;
    display: none;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

.cta-sticky.visible {
    display: flex;
}

.cta-sticky span {
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-sticky {
    background: var(--white);
    color: var(--accent-color);
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 5%;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #c62828;
}

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

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

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 5%;
    background: var(--light-bg);
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-confirmation {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.service-confirmation p {
    margin: 0;
    font-size: 1.1rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

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

.page-hero {
    padding: 10rem 5% 5rem;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-content {
    padding: 6rem 5%;
}

.about-block {
    max-width: 1400px;
    margin: 0 auto 6rem;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-block.reverse {
    flex-direction: row-reverse;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.7;
}

.team-section {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.team-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

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

.member-image {
    margin-bottom: 1.5rem;
}

.member-image img {
    width: 100%;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.member-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--gray);
    line-height: 1.7;
}

.values-section {
    padding: 6rem 5%;
}

.values-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.values-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.value-item p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
}

.services-intro {
    padding: 4rem 5%;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.services-detailed {
    padding: 4rem 5%;
}

.service-detail {
    max-width: 1400px;
    margin: 0 auto 6rem;
    display: flex;
    align-items: center;
    gap: 5rem;
}

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

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.service-description {
    flex: 1;
}

.service-description h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-price-large {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-description p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-description h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.service-description ul {
    margin-bottom: 2rem;
}

.service-description ul li {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 0.8rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.service-description ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.btn-service {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.services-cta {
    padding: 6rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-cta p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-section {
    padding: 5rem 5%;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.contact-block {
    flex: 1;
}

.contact-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--accent-color);
}

.contact-detail p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
}

.contact-detail a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-note {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.contact-note p {
    color: var(--gray);
}

.contact-map {
    padding: 4rem 5%;
    background: var(--light-bg);
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    background: #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gray);
}

.faq-section {
    padding: 6rem 5%;
}

.faq-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
}

.contact-cta {
    padding: 6rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.legal-page {
    padding: 6rem 5% 4rem;
    background: var(--white);
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.legal-date {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.legal-section p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-section ul li {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-section a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .story-container,
    .insight-wrapper,
    .about-block,
    .service-detail,
    .contact-grid,
    .team-grid {
        flex-direction: column;
        gap: 2.5rem;
    }

    .problem-grid {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column !important;
        padding: 2rem;
    }

    .marker-container {
        flex-direction: column;
        gap: 2rem;
    }

    .testimonial-visual {
        flex-direction: column;
        gap: 2.5rem;
    }

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

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

    .cta-sticky {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 5%;
    }

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