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

:root {
    --primary-dark: #1a1a1a;
    --primary-light: #f8f8f8;
    --accent-gold: #c9a961;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --border-subtle: #e0e0e0;
    --overlay-dark: rgba(0, 0, 0, 0.6);
}

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

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

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

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
}

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

a:hover {
    color: var(--accent-gold);
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
}

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

.nav-links a {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

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

.hero-visual {
    position: relative;
    min-height: 85vh;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 5%;
}

.hero-content-offset {
    max-width: 650px;
    margin-left: 8%;
    color: #ffffff;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-gold);
    color: #ffffff;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-hero:hover {
    background-color: #b39851;
    transform: translateY(-2px);
    color: #ffffff;
}

.story-intro {
    padding: 5rem 5% 4rem;
    background-color: #ffffff;
}

.story-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.story-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.problem-amplify {
    padding: 4rem 5%;
    background-color: var(--primary-light);
}

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

.split-text {
    flex: 1 1 450px;
}

.split-visual {
    flex: 1 1 400px;
}

.visual-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #d4d4d4 0%, #e8e8e8 100%);
}

.insight-reveal {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.content-centered {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
}

.insight-text {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    color: var(--text-light);
}

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

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

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

.visual-break {
    height: 450px;
    background: linear-gradient(to right, #3a3a3a 0%, #5a5a5a 100%);
}

.image-full {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a4a4a 0%, #6a6a6a 100%);
}

.trust-builder {
    padding: 5rem 5%;
    background-color: var(--primary-dark);
    color: #ffffff;
}

.testimonial-offset {
    max-width: 800px;
    margin: 0 0 3rem 10%;
}

.testimonial-main {
    font-size: 1.8rem;
    line-height: 1.6;
    font-style: italic;
    color: #ffffff;
    border-left: 5px solid var(--accent-gold);
    padding-left: 2rem;
}

.testimonial-main cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-style: normal;
    color: var(--accent-gold);
}

.trust-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.story-continue {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.benefits-showcase {
    padding: 5rem 5%;
    background-color: var(--primary-light);
}

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

.benefit-card {
    flex: 1 1 250px;
    padding: 2.5rem 2rem;
    background-color: #ffffff;
    border-top: 3px solid var(--accent-gold);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

.social-proof {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.testimonials-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1 1 320px;
    padding: 2rem;
    background-color: var(--primary-light);
    border-left: 4px solid var(--primary-dark);
    font-style: italic;
}

.testimonial-author {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
}

.services-reveal {
    padding: 6rem 5%;
    background-color: var(--primary-dark);
    color: #ffffff;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro h2 {
    color: #ffffff;
    font-size: 2.8rem;
}

.services-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

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

.service-item {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding: 2.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-visual {
    flex: 0 0 200px;
    height: 200px;
    background: linear-gradient(135deg, #5a5a5a 0%, #7a7a7a 100%);
}

.service-details {
    flex: 1 1 500px;
}

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

.service-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.service-price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.btn-select {
    padding: 0.9rem 2rem;
    background-color: var(--accent-gold);
    color: #ffffff;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #b39851;
}

.urgency-block {
    padding: 4rem 5%;
    background-color: #8b2e2e;
    color: #ffffff;
    text-align: center;
}

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

.urgency-content h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
}

.form-section {
    padding: 6rem 5%;
    background-color: #ffffff;
}

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

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

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 2px solid var(--border-subtle);
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1.2rem 2.5rem;
    background-color: var(--primary-dark);
    color: #ffffff;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
}

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

.final-cta {
    padding: 5rem 5%;
    background-color: var(--primary-light);
    text-align: center;
}

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

.btn-cta-large {
    display: inline-block;
    padding: 1.3rem 3rem;
    background-color: var(--primary-dark);
    color: #ffffff;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cta-large:hover {
    background-color: #2c2c2c;
    transform: translateY(-2px);
    color: #ffffff;
}

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

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

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

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

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-gold);
    padding: 1rem;
    text-align: center;
    z-index: 999;
    display: none;
}

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

.sticky-btn {
    color: #ffffff;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 400px;
    margin-bottom: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: var(--accent-gold);
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #b39851;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.page-header {
    margin-top: 70px;
    padding: 5rem 5% 3rem;
    background-color: var(--primary-light);
    text-align: center;
}

.header-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

.about-content {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.values-section {
    padding: 5rem 5%;
    background-color: var(--primary-light);
}

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

.value-card {
    flex: 1 1 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-top: 4px solid var(--primary-dark);
}

.team-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.process-section {
    padding: 5rem 5%;
    background-color: var(--primary-dark);
    color: #ffffff;
}

.process-section h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent-gold);
}

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

.step-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.step-item p {
    color: rgba(255, 255, 255, 0.8);
}

.commitment-section {
    padding: 5rem 5%;
    background-color: var(--primary-light);
}

.services-detailed {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.service-detail-item {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

.service-image-large {
    flex: 1 1 400px;
    height: 350px;
    background: linear-gradient(135deg, #d4d4d4 0%, #e8e8e8 100%);
}

.service-info {
    flex: 1 1 500px;
}

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

.service-includes {
    margin-bottom: 2rem;
}

.service-includes h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.service-includes li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-pricing {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-label {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

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

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-dark);
    color: #ffffff;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

.services-faq {
    padding: 5rem 5%;
    background-color: var(--primary-light);
}

.faq-list {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid var(--accent-gold);
}

.faq-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-content {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1 1 450px;
}

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

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

.contact-detail p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-note {
    padding: 1.5rem;
    background-color: var(--primary-light);
    border-left: 4px solid var(--accent-gold);
    margin-top: 2rem;
}

.contact-note p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-map {
    flex: 1 1 450px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #d4d4d4 0%, #e8e8e8 100%);
}

.visit-cta {
    padding: 4rem 5%;
    background-color: var(--primary-light);
    text-align: center;
}

.legal-page {
    margin-top: 70px;
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

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

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

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

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

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

.cookie-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

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

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

.cookie-table td {
    color: var(--text-light);
}

.thanks-hero {
    margin-top: 70px;
    padding: 6rem 5%;
    background-color: var(--primary-light);
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #4caf50;
    color: #ffffff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-details p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.next-steps {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.step-card {
    flex: 1 1 280px;
    padding: 2rem;
    background-color: var(--primary-light);
    border-top: 4px solid var(--accent-gold);
    text-align: center;
}

.step-num {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.step-card h3 {
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.thanks-explore {
    padding: 5rem 5%;
    background-color: var(--primary-light);
    text-align: center;
}

.explore-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.link-card {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: var(--primary-dark);
    color: #ffffff;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.link-card:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 2rem 5%;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border-subtle);
        display: none;
    }

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

    .nav-toggle {
        display: flex;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .hero-content-offset {
        margin-left: 0;
    }

    .split-container {
        gap: 2rem;
    }

    .split-text,
    .split-visual {
        flex: 1 1 100%;
    }

    .testimonial-offset {
        margin-left: 0;
    }

    .testimonial-main {
        font-size: 1.4rem;
    }

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

    .service-visual {
        width: 100%;
    }

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

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

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