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

:root {
    --primary-color: #2c2c2c;
    --secondary-color: #8b7355;
    --accent-color: #c9a882;
    --text-color: #333;
    --light-bg: #f9f7f4;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4a7c59;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Georgia', serif;
    color: var(--text-color);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.2rem;
}

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

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

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

ul {
    list-style: none;
}

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-medium {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-full {
    width: 100%;
    padding: 0;
}

.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow);
    z-index: 1000;
    min-width: 600px;
}

.nav-brand {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    color: var(--primary-color);
}

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

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

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

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

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

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

.hero-text-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 2rem;
}

.hero-text-overlay h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-family: 'Georgia', serif;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--white);
    color: var(--primary-color);
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

section {
    padding: 6rem 0;
}

.story-intro {
    background: var(--light-bg);
    padding: 8rem 0;
}

.story-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.visual-block-left,
.visual-block-right {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 8rem 2rem;
}

.visual-block-right {
    flex-direction: row-reverse;
    background: var(--light-bg);
}

.image-side {
    flex: 1;
}

.content-side {
    flex: 1;
}

.content-side h3 {
    margin-bottom: 1.5rem;
}

.cta-inline {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 0;
    color: var(--secondary-color);
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 500;
    border-bottom: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

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

.problem-amplification {
    padding: 8rem 0;
    background: var(--primary-color);
    color: var(--white);
}

.problem-amplification h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.8rem;
}

.insight-cards {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.insight-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
}

.insight-card h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-list {
    margin-top: 1.5rem;
}

.benefit-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.trust-building {
    padding: 8rem 0;
    background: var(--light-bg);
}

.trust-building h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: flex;
    gap: 3rem;
}

.testimonial {
    flex: 1;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.author {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.services-reveal {
    padding: 8rem 0;
}

.services-reveal h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: #666;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    border: 2px solid var(--secondary-color);
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-family: 'Helvetica Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 1.5rem 2rem 0;
    font-size: 1.6rem;
}

.service-card p {
    padding: 0 2rem;
}

.service-features {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.price {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 0 2rem;
    margin: 1rem 0;
}

.cta-service {
    display: block;
    width: calc(100% - 4rem);
    margin: 1.5rem 2rem 2rem;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background: var(--secondary-color);
}

.urgency-block {
    padding: 6rem 0;
    background: var(--accent-color);
    color: var(--white);
    text-align: center;
}

.urgency-block h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.final-cta-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

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

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    padding: 2rem;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-large {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: var(--white);
    color: var(--primary-color);
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.form-section {
    padding: 8rem 0;
    background: var(--light-bg);
}

.form-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #666;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-weight: normal;
    font-size: 0.9rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.reassurance {
    padding: 6rem 0;
}

.reassurance-grid {
    display: flex;
    gap: 3rem;
}

.reassurance-item {
    flex: 1;
    text-align: center;
}

.reassurance-item h4 {
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.reassurance-item p {
    font-size: 0.95rem;
    color: #666;
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.98);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

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

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

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

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero {
    padding: 12rem 2rem 8rem;
    text-align: center;
    background: var(--light-bg);
}

.page-hero h1 {
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.about-story {
    padding: 8rem 0;
}

.values-section {
    padding: 8rem 0;
    background: var(--light-bg);
}

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

.value-card {
    flex: 1 1 calc(50% - 1.25rem);
    padding: 2.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.team-section {
    padding: 8rem 0;
}

.team-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

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

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

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

.role {
    font-family: 'Helvetica Neue', sans-serif;
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.manifesto-section {
    padding: 8rem 0;
    background: var(--primary-color);
    color: var(--white);
}

.manifesto-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
}

.manifesto-section blockquote {
    max-width: 800px;
    margin: 0 auto;
}

.manifesto-section blockquote p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-about {
    padding: 8rem 0;
    text-align: center;
}

.services-detail {
    padding: 6rem 0;
}

.service-detail-card {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

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

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

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

.price-large {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.includes-list {
    margin: 1.5rem 0;
}

.includes-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.includes-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.comparison-section {
    padding: 8rem 0;
    background: var(--light-bg);
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-header,
.comparison-row {
    display: flex;
}

.comparison-header {
    background: var(--primary-color);
    color: var(--white);
}

.comparison-row:nth-child(even) {
    background: var(--light-bg);
}

.comparison-cell {
    flex: 1;
    padding: 1.2rem;
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-cell.label {
    text-align: left;
    font-weight: 600;
}

.comparison-cell.empty {
    background: transparent;
}

.contact-info-section {
    padding: 6rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

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

.info-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
}

.caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.contact-reasons {
    padding: 8rem 0;
    background: var(--light-bg);
}

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

.reason-card {
    flex: 1 1 calc(50% - 1.25rem);
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
}

.reason-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.map-section {
    padding: 6rem 0;
}

.map-placeholder {
    background: var(--light-bg);
    padding: 6rem 2rem;
    text-align: center;
    border-radius: 8px;
}

.map-placeholder p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.map-note {
    font-size: 1rem;
    color: #666;
}

.faq-section {
    padding: 8rem 0;
}

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

.faq-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.final-cta-contact {
    padding: 8rem 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.final-cta-contact h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.final-cta-contact a {
    color: var(--accent-color);
}

.thanks-hero {
    padding: 12rem 2rem 8rem;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--success-color);
    color: var(--white);
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
}

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

.thanks-next-steps {
    margin: 4rem 0;
}

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

.step {
    flex: 1;
    text-align: center;
}

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

.thanks-cta {
    margin-top: 4rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

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

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

.cta-secondary {
    background: var(--light-bg);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

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

.social-proof-thanks {
    padding: 6rem 0;
    background: var(--light-bg);
}

.social-proof-thanks h3 {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-content {
    padding: 10rem 0 6rem;
}

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

.updated {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

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

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

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

.legal-content li {
    list-style: disc;
    margin-bottom: 0.8rem;
}

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

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

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

@media (max-width: 1200px) {
    .hero-text-overlay h1 {
        font-size: 3.5rem;
    }

    .service-cards {
        gap: 2rem;
    }

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

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

    .nav-links {
        gap: 1rem;
    }

    .hero-text-overlay h1 {
        font-size: 2.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .visual-block-left,
    .visual-block-right {
        flex-direction: column;
        gap: 2rem;
    }

    .insight-cards {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .reassurance-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

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

    .cta-buttons {
        flex-direction: column;
    }

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

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

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

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-cell {
        padding: 0.8rem 0.5rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 4rem 0;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}