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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(28, 28, 28, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #2c5f2d;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #234a24;
}

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #666;
}

.btn-cookie-reject:hover {
    border-color: #ffffff;
}

/* Navigation - Floating Style */
.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 3rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

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

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1a1a1a;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

/* Hero Visual First */
.hero-visual {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.hero-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 5%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.btn-hero {
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Story Intro */
.story-intro {
    padding: 8rem 5%;
    background: #f9f9f9;
}

.story-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.story-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Visual Break */
.visual-break {
    position: relative;
    height: 70vh;
    min-height: 500px;
}

.visual-break-image {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.visual-break-text {
    position: absolute;
    bottom: 10%;
    right: 5%;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 3rem;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.visual-break-text p {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0;
}

/* Problem Amplify */
.problem-amplify {
    padding: 8rem 5%;
    background: #ffffff;
}

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

.problem-amplify h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.problem-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.problem-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* CTA Inline */
.cta-inline {
    padding: 4rem 5%;
    text-align: center;
    background: #f4f4f4;
}

.btn-cta-text {
    font-size: 1.3rem;
    color: #1a1a1a;
    font-weight: 600;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 5px;
    display: inline-block;
}

.btn-cta-text:hover {
    color: #555;
    border-color: #555;
}

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

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

.insight-visual {
    flex: 1;
}

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

.insight-content {
    flex: 1;
    padding: 6rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.insight-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Trust Builder */
.trust-builder {
    padding: 8rem 5%;
    background: #ffffff;
}

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

.trust-builder h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.trust-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    color: #555;
}

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

.trust-feature {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: #2c5f2d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.trust-feature h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.trust-feature p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Testimonial Visual */
.testimonial-visual {
    position: relative;
    min-height: 60vh;
}

.testimonial-image-bg {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 60vh;
}

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

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 5%;
}

.testimonial-overlay blockquote {
    max-width: 800px;
    text-align: center;
}

.testimonial-overlay p {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-overlay cite {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
}

/* Transformation Story */
.transformation-story {
    padding: 8rem 5%;
    background: #f9f9f9;
}

.transformation-story h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    font-weight: 700;
}

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

/* Visual Statement */
.visual-statement {
    height: 70vh;
}

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

/* Services Reveal */
.services-reveal {
    padding: 8rem 5%;
    background: #ffffff;
}

.services-reveal h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    color: #555;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.service-card.featured {
    border: 3px solid #2c5f2d;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #2c5f2d;
    color: #ffffff;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.service-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-benefits span {
    font-size: 0.95rem;
    color: #444;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
    margin-top: auto;
}

.btn-service {
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-service:hover {
    background: #2c5f2d;
    transform: translateY(-2px);
}

/* Urgency Element */
.urgency-element {
    padding: 4rem 5%;
    background: #fff8f0;
}

.urgency-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem;
    border: 2px solid #d4a574;
    border-radius: 8px;
}

.urgency-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #8b5e34;
}

.urgency-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6b4423;
}

/* Form Section */
.form-section {
    padding: 8rem 5%;
    background: #ffffff;
}

.form-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.form-section > p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    color: #555;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

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

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: #2c5f2d;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #234a24;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.3);
}

/* Final Testimonial */
.final-testimonial {
    padding: 8rem 5%;
    background: #f4f4f4;
}

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

.testimonial-item {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-item cite {
    font-size: 0.95rem;
    color: #777;
    font-style: normal;
    font-weight: 600;
}

/* Sticky CTA Bottom */
.cta-sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 5%;
    z-index: 900;
    display: none;
}

.cta-sticky-bottom.show {
    display: block;
}

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

.sticky-cta-content span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.btn-sticky {
    padding: 0.9rem 2.5rem;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #2c5f2d;
    color: #ffffff;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 5rem 5% 2rem;
}

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

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

.footer-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

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

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

/* Page Hero */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
}

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

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

.page-hero-overlay {
    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);
    padding: 5%;
}

.page-hero-overlay h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.page-hero-overlay p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

/* About Page */
.about-intro {
    padding: 6rem 5%;
    background: #f9f9f9;
}

.intro-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #444;
    text-align: center;
}

.about-story {
    background: #ffffff;
}

.story-split {
    display: flex;
    align-items: center;
}

.story-content {
    flex: 1;
    padding: 6rem 5%;
}

.story-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.story-image {
    flex: 1;
    height: 600px;
}

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

/* Philosophy */
.philosophy {
    padding: 8rem 5%;
    background: #f4f4f4;
}

.philosophy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 700;
}

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

.philosophy-item {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
}

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

.philosophy-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Team */
.team {
    padding: 8rem 5%;
    background: #ffffff;
}

.team h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    color: #555;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.team-image {
    width: 100%;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

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

.team-role {
    font-size: 1rem;
    color: #2c5f2d;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member > p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Values */
.values {
    padding: 8rem 5%;
    background: #1a1a1a;
    color: #ffffff;
}

.values h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.value-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Section */
.cta-section {
    padding: 6rem 5%;
    background: #2c5f2d;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta {
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Services Detailed */
.services-detailed {
    padding: 6rem 5% 8rem;
}

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

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

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

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

.service-detail-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-price-tag {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.service-features {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.8rem;
    list-style: disc;
}

.btn-service-detail {
    padding: 1.1rem 2.5rem;
    background: #2c5f2d;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-service-detail:hover {
    background: #234a24;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.3);
}

/* Process Section */
.process-section {
    padding: 8rem 5%;
    background: #f4f4f4;
}

.process-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 700;
}

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

.process-step {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.process-number {
    width: 60px;
    height: 60px;
    background: #2c5f2d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-step p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

/* Contact */
.contact-content {
    padding: 6rem 5%;
    background: #ffffff;
}

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

.contact-info-item {
    flex: 1;
    min-width: 250px;
}

.contact-info-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-info-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.contact-info-item a {
    color: #2c5f2d;
    font-weight: 600;
}

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

.contact-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: italic;
    color: #777;
}

.contact-map {
    padding: 6rem 5%;
    background: #f9f9f9;
}

.contact-map h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.map-placeholder {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-placeholder p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.contact-appointment {
    padding: 6rem 5%;
    background: #ffffff;
    text-align: center;
}

.contact-appointment h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-appointment p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    color: #555;
}

.contact-faq {
    padding: 8rem 5%;
    background: #f4f4f4;
}

.contact-faq h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

/* Thanks Page */
.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5%;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 3rem;
}

.thanks-details {
    margin-bottom: 4rem;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.thanks-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

#selectedService {
    font-size: 1.15rem;
    margin-top: 1.5rem;
}

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

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.next-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2c5f2d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

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

.btn-primary {
    padding: 1.1rem 2.5rem;
    background: #2c5f2d;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #234a24;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.3);
}

.btn-secondary {
    padding: 1.1rem 2.5rem;
    background: transparent;
    color: #1a1a1a;
    font-size: 1.05rem;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.thanks-extra {
    padding: 6rem 5%;
    background: #f9f9f9;
}

.thanks-extra h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.thanks-extra > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.preparation-list {
    max-width: 700px;
    margin: 0 auto;
    list-style: disc;
    padding-left: 1.5rem;
}

.preparation-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
    list-style: disc;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 5%;
    background: #ffffff;
}

.legal-page h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.legal-page h2 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 700;
    color: #2c2c2c;
}

.legal-page h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 700;
    color: #444;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.legal-page ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.8rem;
    list-style: disc;
}

.legal-page a {
    color: #2c5f2d;
    font-weight: 600;
}

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

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background: #f4f4f4;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-floating {
        top: 1rem;
        padding: 0.8rem 1.5rem;
        gap: 2rem;
    }

    .insight-split {
        flex-direction: column;
    }

    .story-split {
        flex-direction: column;
    }

    .story-image {
        height: 400px;
    }

    .service-detail {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 1.5rem;
        margin-top: 1rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        display: none;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-overlay-content {
        align-items: center;
        text-align: center;
    }

    .visual-break-text {
        position: static;
        margin: 2rem;
    }

    .sticky-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 2rem;
    }

    .service-card {
        min-width: 100%;
    }

    .trust-features {
        flex-direction: column;
    }

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

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