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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* Navigation - Floating Style */
.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 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: #4a4a4a;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* Hero Visual Section */
.hero-visual {
    margin-top: 70px;
    position: relative;
    height: 90vh;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    color: #ffffff;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
}

/* Story Opener */
.story-opener {
    padding: 6rem 2rem;
    background: #f9f9f9;
}

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

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

.story-opener h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.story-opener p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

/* Visual Break */
.visual-break,
.visual-break-2 {
    margin: 4rem 0;
}

.full-width-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Problem Amplify Section */
.problem-amplify {
    padding: 5rem 2rem;
}

.content-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
}

.image-block {
    flex: 1;
}

.image-block img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Insight Reveal */
.insight-reveal {
    padding: 6rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.insight-reveal h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.insight-reveal p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Visual Grid */
.visual-grid {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.grid-item {
    flex: 1;
}

.grid-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.grid-item h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.grid-item p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.6;
}

/* Trust Section */
.trust-section {
    padding: 5rem 2rem;
    background: #f5f5f5;
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
}

.trust-section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.quote {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #2a2a2a;
}

.author {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-weight: 500;
}

/* Engagement Visual */
.engagement-visual {
    padding: 0;
    margin: 4rem 0;
}

.split-layout {
    display: flex;
    align-items: stretch;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-image,
.split-text {
    flex: 1;
}

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

.split-text {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
}

.cta-inline {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.9rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    border-radius: 2px;
    transition: background 0.3s;
}

.cta-inline:hover {
    background: #333333;
}

/* Story Depth */
.story-depth {
    padding: 6rem 2rem;
    background: #fafafa;
}

.story-depth h2 {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.story-depth p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

/* Benefits Reveal */
.benefits-reveal {
    padding: 5rem 2rem;
}

.benefits-reveal h2 {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    background: #f7f7f7;
    padding: 2.5rem 2rem;
    border-radius: 3px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Services Preview */
.services-preview {
    padding: 6rem 2rem;
    background: #ffffff;
}

.services-preview h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

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

.service-item {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-item img {
    flex: 0 0 45%;
    height: 350px;
    object-fit: cover;
    border-radius: 3px;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 1.5rem;
}

/* Urgency Section */
.urgency-section {
    padding: 4rem 2rem;
    background: #2a2a2a;
    color: #ffffff;
}

.urgency-section h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.urgency-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 1rem;
}

/* Final CTA Section */
.final-cta-section {
    position: relative;
    height: 500px;
}

.cta-visual-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.5);
    color: #ffffff;
    text-align: center;
    padding: 2rem;
}

.cta-overlay-content h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.cta-overlay-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1.1rem 3rem;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Form Section */
.form-section {
    padding: 6rem 2rem;
    background: #f9f9f9;
}

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

.form-container h2 {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
}

.booking-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.submit-button {
    width: 100%;
    padding: 1.1rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #333333;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #d0d0d0;
    padding: 4rem 2rem 2rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a0a0a0;
}

.footer-column a {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
    color: #b0b0b0;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #808080;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
}

.sticky-cta button {
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-cta button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
    padding: 1.5rem 2rem;
    z-index: 1100;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: #3a3a3a;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accept {
    background: #1a1a1a;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #333333;
}

.cookie-reject {
    background: #e0e0e0;
    color: #2a2a2a;
}

.cookie-reject:hover {
    background: #d0d0d0;
}

/* Page Hero (for other pages) */
.page-hero {
    margin-top: 70px;
    position: relative;
    height: 400px;
    overflow: hidden;
}

/* About Page Specific */
.about-intro {
    padding: 6rem 2rem;
}

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

.about-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.mission-section {
    padding: 5rem 0;
}

.values-section {
    padding: 5rem 2rem;
    background: #f7f7f7;
}

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 3px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.team-section {
    padding: 5rem 2rem;
}

.team-section h2 {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.team-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
}

.cta-section-about {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.cta-section-about h2 {
    font-size: 2.3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.cta-section-about p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: 3px;
    transition: transform 0.3s;
}

.cta-button-link:hover {
    transform: translateY(-2px);
}

/* Services Page Specific */
.services-intro {
    padding: 4rem 2rem;
}

.services-intro h2 {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.services-detailed {
    padding: 3rem 0;
}

.service-detail {
    display: flex;
    align-items: stretch;
    margin-bottom: 4rem;
}

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

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

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

.service-info {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #4a4a4a;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 1.5rem 0;
}

.services-cta {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

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

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 3px;
    transition: background 0.3s;
}

.cta-button-large:hover {
    background: #333333;
}

/* Contact Page Specific */
.contact-intro {
    padding: 4rem 2rem;
}

.contact-intro h2 {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.contact-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.contact-details {
    padding: 3rem 2rem;
    background: #f9f9f9;
}

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

.contact-card {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 3px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.contact-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.contact-card a {
    color: #1a1a1a;
    text-decoration: underline;
}

.contact-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: italic;
    color: #6a6a6a;
}

.visit-section {
    padding: 5rem 0;
}

.map-section {
    padding: 5rem 2rem;
    background: #f7f7f7;
}

.map-section h2 {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
}

.map-placeholder {
    position: relative;
    margin-bottom: 2rem;
}

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

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255,255,255,0.95);
    padding: 1rem 2rem;
    border-radius: 3px;
}

.map-overlay p {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
}

.directions-info {
    max-width: 900px;
    margin: 0 auto;
}

.directions-info h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.directions-info p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    color: #3a3a3a;
}

/* Thanks Page */
.thanks-section {
    padding: 6rem 2rem;
    min-height: calc(100vh - 400px);
}

.thanks-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1.5;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #3a3a3a;
}

.selected-service {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f0f0f0;
    border-radius: 3px;
}

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

.thanks-next-steps h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.steps-list {
    list-style: decimal;
    padding-left: 1.5rem;
}

.steps-list li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    color: #3a3a3a;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #e0e0e0;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 3px;
    transition: background 0.3s;
}

.cta-button-secondary:hover {
    background: #d0d0d0;
}

.thanks-image {
    flex: 1;
}

.thanks-image img {
    width: 100%;
    border-radius: 4px;
}

/* Legal Pages */
.legal-page {
    padding: 6rem 2rem;
    margin-top: 70px;
    min-height: calc(100vh - 400px);
}

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

.legal-content h1 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #3a3a3a;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
}

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

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: #3a3a3a;
}

.legal-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .content-offset,
    .split-layout,
    .grid-3,
    .testimonials-flow,
    .benefits-cards,
    .values-grid,
    .contact-grid,
    .thanks-container {
        flex-direction: column;
    }

    .service-item,
    .service-detail {
        flex-direction: column !important;
    }

    .service-item img {
        flex: 1;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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