* {
    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: #1a1a1a;
    background: #fafafa;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 5% 60px;
    overflow: hidden;
}

.hero-content-offset {
    width: 55%;
    padding-right: 60px;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
    color: #0a0a0a;
}

.hero-subtext {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 35px;
    max-width: 560px;
}

.cta-primary {
    display: inline-block;
    background: #0a0a0a;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-visual-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 50%;
    height: 70%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: rotate(3deg);
}

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

.intro-offset {
    padding: 100px 5% 80px 15%;
    background: #fff;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-narrow {
    flex: 1.2;
}

.intro-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: #0a0a0a;
}

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

.intro-stats-card {
    flex: 0.8;
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #5a5a5a;
    margin-top: 8px;
}

.problem-amplify {
    padding: 120px 10%;
    background: #0a0a0a;
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
}

.problem-visual {
    flex: 1;
    position: relative;
    transform: translateY(-40px);
}

.problem-visual img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.1);
}

.problem-text-overlay {
    flex: 1;
    color: #fff;
    position: relative;
    z-index: 2;
}

.problem-text-overlay h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.problem-text-overlay p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 20px;
}

.cta-text {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 15px;
    border-bottom: 2px solid #fff;
    padding-bottom: 3px;
    transition: opacity 0.3s;
}

.cta-text:hover {
    opacity: 0.8;
}

.insight-cards {
    padding: 100px 8%;
    background: #fff;
}

.insight-cards h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
    color: #0a0a0a;
}

.cards-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.card-insight {
    background: #f9f9f9;
    padding: 40px 50px;
    border-radius: 12px;
    border-left: 4px solid #0a0a0a;
}

.card-insight.offset-1 {
    margin-left: 0;
    max-width: 70%;
}

.card-insight.offset-2 {
    margin-left: 15%;
    max-width: 75%;
}

.card-insight.offset-3 {
    margin-left: 10%;
    max-width: 65%;
}

.card-insight h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #0a0a0a;
}

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

.trust-builder {
    padding: 100px 10%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.trust-content-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.trust-text {
    flex: 1.3;
}

.trust-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: #0a0a0a;
}

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

.trust-credentials {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.credentials-list {
    list-style: none;
}

.credentials-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1rem;
    color: #2a2a2a;
}

.credentials-list li:last-child {
    border-bottom: none;
}

.testimonials-inline {
    padding: 100px 5%;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial-offset {
    background: #f8f8f8;
    padding: 40px 50px;
    border-radius: 12px;
    max-width: 70%;
}

.testimonial-offset.reverse {
    margin-left: auto;
    max-width: 75%;
}

.testimonial-offset blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #2a2a2a;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-offset cite {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: normal;
}

.services-reveal {
    padding: 120px 8%;
    background: #fafafa;
}

.services-reveal h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    color: #0a0a0a;
}

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto 70px;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    flex: 1 1 calc(50% - 15px);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card.featured {
    flex: 1 1 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #fff;
}

.service-card.featured h3,
.service-card.featured .service-duration {
    color: #fff;
}

.service-card.featured p {
    color: #d0d0d0;
}

.service-card.featured .service-includes span {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.service-header {
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0a0a0a;
}

.service-duration {
    font-size: 0.9rem;
    color: #6a6a6a;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.service-includes span {
    background: #f0f0f0;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a4a4a;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid #e0e0e0;
    padding-top: 25px;
}

.service-card.featured .service-pricing {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #0a0a0a;
}

.service-card.featured .price {
    color: #fff;
}

.btn-select-service {
    background: #0a0a0a;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-select-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service-card.featured .btn-select-service {
    background: #fff;
    color: #0a0a0a;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #4a4a4a;
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: #0a0a0a;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2a2a2a;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background: #0a0a0a;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.2s;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

.urgency-subtle {
    padding: 80px 10%;
    background: #fff;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #0a0a0a;
}

.urgency-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.final-cta-section {
    padding: 100px 10%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.cta-content-asymmetric {
    max-width: 700px;
    color: #fff;
}

.cta-content-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-asymmetric p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 35px;
}

.cta-buttons-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-large {
    display: inline-block;
    background: #fff;
    color: #0a0a0a;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s;
}

.btn-cta-large:hover {
    transform: translateY(-2px);
}

.btn-cta-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #fff;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s, color 0.3s;
}

.btn-cta-secondary:hover {
    background: #fff;
    color: #0a0a0a;
}

.footer-asymmetric {
    background: #0a0a0a;
    color: #d0d0d0;
    padding: 60px 8% 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col h5 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-col a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #8a8a8a;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.sticky-cta-btn {
    background: #0a0a0a;
    color: #fff;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    display: inline-block;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 25px 5%;
    z-index: 3000;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    background: #0a0a0a;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-cookie:hover {
    opacity: 0.9;
}

.btn-cookie-alt {
    background: #f0f0f0;
    color: #0a0a0a;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie-alt:hover {
    background: #e0e0e0;
}

.page-hero-offset {
    padding: 140px 10% 80px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text-left {
    flex: 1;
}

.hero-text-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    color: #0a0a0a;
}

.hero-image-right {
    flex: 1;
}

.hero-image-right img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.about-story {
    padding: 100px 15%;
    background: #fff;
}

.story-content-narrow h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: #0a0a0a;
}

.story-content-narrow p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.values-asymmetric {
    padding: 100px 8%;
    background: #fafafa;
}

.values-asymmetric h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    color: #0a0a0a;
}

.values-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.value-card.offset-a {
    margin-left: 0;
    max-width: 75%;
}

.value-card.offset-b {
    margin-left: auto;
    max-width: 70%;
}

.value-card.offset-c {
    margin-left: 10%;
    max-width: 80%;
}

.value-card.offset-d {
    margin-left: auto;
    margin-right: 5%;
    max-width: 65%;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #0a0a0a;
}

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

.approach-section {
    padding: 100px 10%;
    background: #fff;
}

.approach-split {
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-visual {
    flex: 1;
}

.approach-visual img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: #0a0a0a;
}

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

.credentials-detail {
    padding: 100px 10%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.credentials-detail h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    color: #0a0a0a;
}

.credentials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.credential-item {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    flex: 1 1 calc(50% - 15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.credential-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: #0a0a0a;
}

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

.team-simple {
    padding: 80px 15%;
    background: #fff;
    text-align: center;
}

.team-simple h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #0a0a0a;
}

.team-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.team-approach p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.cta-about {
    padding: 100px 10%;
    background: #0a0a0a;
}

.cta-about .cta-content {
    text-align: center;
    color: #fff;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-about p {
    font-size: 1.15rem;
    color: #d0d0d0;
    margin-bottom: 35px;
}

.btn-cta {
    display: inline-block;
    background: #fff;
    color: #0a0a0a;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s;
}

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

.services-hero {
    padding: 140px 10% 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    text-align: center;
    color: #fff;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-hero-desc {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #d0d0d0;
    max-width: 800px;
    margin: 0 auto;
}

.services-detail-layout {
    padding: 60px 8%;
    background: #fafafa;
}

.service-detail-card {
    background: #fff;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.service-detail-card.reverse {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.service-detail-header {
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 20px;
}

.service-detail-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 10px;
}

.service-meta {
    font-size: 1rem;
    color: #6a6a6a;
}

.service-detail-content {
    display: flex;
    gap: 60px;
}

.service-detail-text {
    flex: 1.5;
}

.service-detail-text h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 700;
    color: #0a0a0a;
}

.service-detail-text h3:first-child {
    margin-top: 0;
}

.service-detail-text h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    margin-top: 20px;
    font-weight: 600;
    color: #0a0a0a;
}

.service-detail-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.service-detail-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-detail-text ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.service-detail-booking {
    flex: 1;
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 140px;
}

.price-display {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.price-label {
    font-size: 0.9rem;
    color: #6a6a6a;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a0a0a;
}

.booking-note {
    font-size: 0.9rem;
    color: #6a6a6a;
    margin-top: 15px;
    text-align: center;
}

.services-cta {
    padding: 80px 10%;
    background: #fff;
}

.services-cta-content {
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #0a0a0a;
}

.services-cta-content p {
    font-size: 1.1rem;
    color: #3a3a3a;
    margin-bottom: 30px;
}

.contact-hero {
    padding: 140px 10% 60px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #0a0a0a;
}

.contact-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

.contact-main-section {
    padding: 80px 8%;
    background: #fff;
}

.contact-layout {
    display: flex;
    gap: 80px;
}

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

.contact-info-panel h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: #0a0a0a;
}

.contact-detail-group {
    margin-bottom: 35px;
}

.contact-detail-group h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: #0a0a0a;
}

.contact-detail-group p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.contact-detail-group a {
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 600;
}

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

.contact-note {
    font-size: 0.95rem;
    color: #6a6a6a;
    margin-top: 8px;
}

.contact-image-section {
    flex: 1;
}

.contact-image-section img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    margin-bottom: 20px;
}

.contact-image-caption p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a5a5a;
}

.contact-additional {
    padding: 80px 10%;
    background: #fafafa;
}

.contact-faq-brief h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: #0a0a0a;
    text-align: center;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: #0a0a0a;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.thanks-section {
    padding: 160px 10% 100px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

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

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #0a0a0a;
}

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

.thanks-next-steps {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: #0a0a0a;
}

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

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: #0a0a0a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #0a0a0a;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #0a0a0a;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background: #0a0a0a;
    color: #fff;
}

.thanks-contact-reminder {
    font-size: 0.95rem;
    color: #5a5a5a;
}

.thanks-contact-reminder a {
    color: #0a0a0a;
    font-weight: 600;
    text-decoration: none;
}

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

.legal-page {
    padding: 140px 10% 80px;
    background: #fff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #0a0a0a;
}

.legal-updated {
    font-size: 0.95rem;
    color: #6a6a6a;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #0a0a0a;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #0a0a0a;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #0a0a0a;
}

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

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.legal-content a {
    color: #0a0a0a;
    font-weight: 600;
    text-decoration: underline;
}

.legal-content a:hover {
    text-decoration: none;
}

.legal-content strong {
    font-weight: 700;
    color: #0a0a0a;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table thead {
    background: #f5f5f5;
}

.cookies-table th,
.cookies-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
}

.cookies-table th {
    font-weight: 700;
    color: #0a0a0a;
}

.cookies-table td {
    color: #3a3a3a;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding-top: 140px;
    }

    .hero-content-offset {
        width: 100%;
        padding-right: 0;
    }

    .hero-visual-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        right: 0;
        top: 0;
        transform: none;
    }

    .intro-offset,
    .trust-content-split,
    .approach-split,
    .contact-layout {
        flex-direction: column;
    }

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

    .service-detail-content {
        flex-direction: column;
    }

    .service-detail-booking {
        position: static;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
        border-radius: 20px;
    }

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

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

    .intro-narrow h2,
    .services-reveal h2,
    .values-asymmetric h2 {
        font-size: 1.8rem;
    }

    .card-insight,
    .value-card {
        margin-left: 0 !important;
        max-width: 100% !important;
    }

    .testimonial-offset {
        max-width: 100% !important;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

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

    .page-hero-offset {
        flex-direction: column;
    }

    .hero-text-left h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .credentials-grid .credential-item {
        flex: 1 1 100%;
    }
}
