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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #e67e22;
    --light-bg: #ecf0f1;
    --dark-bg: #1a252f;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-light: rgba(0, 0, 0, 0.4);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 12px;
}

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

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

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

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

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

.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-brand a {
    color: inherit;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 5px;
}

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

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-cta {
    background: var(--accent-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 4px;
}

.nav-cta:hover {
    background: #d35400;
    color: var(--white);
}

.hero-visual {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
}

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

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

.hero-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    width: 90%;
    max-width: 900px;
}

.hero-overlay-text::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    z-index: -1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.section-story {
    padding: 100px 40px;
    background: var(--white);
}

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

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

.story-narrow p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
}

.section-image-text-offset {
    padding: 120px 40px;
    background: var(--light-bg);
}

.offset-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.offset-image {
    flex: 1;
    position: relative;
}

.offset-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.offset-text {
    flex: 1;
}

.offset-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.offset-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-inline {
    display: inline-block;
    margin-top: 15px;
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-inline:hover {
    transform: translateX(5px);
}

.section-dark-reveal {
    padding: 120px 40px;
    background: var(--dark-bg);
    color: var(--white);
}

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

.reveal-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 70px;
    font-weight: 700;
}

.reveal-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.reveal-card {
    flex: 1 1 calc(50% - 40px);
    min-width: 280px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.reveal-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.reveal-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.reveal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.reveal-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.section-testimonial-visual {
    position: relative;
    min-height: 500px;
}

.testimonial-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.testimonial-quote {
    max-width: 800px;
    text-align: center;
    color: var(--white);
}

.testimonial-quote p {
    font-size: 1.8rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
    font-weight: 300;
}

.testimonial-quote cite {
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.9;
}

.section-journey {
    padding: 120px 40px;
    background: var(--white);
}

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

.journey-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 700;
    color: var(--primary-color);
}

.journey-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.journey-step {
    flex: 1 1 calc(50% - 50px);
    min-width: 280px;
    max-width: 500px;
}

.step-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 10px;
}

.journey-step h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.journey-step p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.section-visual-cards {
    padding: 120px 40px;
    background: var(--light-bg);
}

.cards-intro {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.cards-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.cards-intro p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.visual-cards-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.vcard {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 300px;
    max-width: 420px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.vcard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.vcard-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

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

.vcard-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.vcard-content {
    padding: 30px;
}

.vcard-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.vcard-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cards-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-primary-large {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

.section-trust {
    padding: 80px 40px;
    background: var(--white);
}

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

.trust-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 60px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

.section-social-proof {
    padding: 100px 40px;
    background: var(--light-bg);
}

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

.proof-wrapper h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 700;
}

.proof-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.proof-item {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
    padding: 35px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.proof-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.proof-author {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.section-pricing-reveal {
    padding: 120px 40px;
    background: var(--dark-bg);
    color: var(--white);
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.pricing-intro h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-intro p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.pricing-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.pricing-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-featured {
    border-color: var(--accent-color);
    background: rgba(230, 126, 34, 0.1);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.pricing-duration {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--white);
}

.btn-pricing {
    width: 100%;
    padding: 14px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: #d35400;
}

.section-form-visual {
    padding: 0;
    background: var(--white);
}

.form-visual-layout {
    display: flex;
    min-height: 700px;
}

.form-image-side {
    flex: 1;
    min-height: 700px;
}

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

.form-content-side {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-content-side h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.form-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 4px;
    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: var(--accent-color);
}

.btn-form-submit {
    padding: 16px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.section-urgency {
    padding: 80px 40px;
    background: var(--light-bg);
}

.urgency-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: var(--white);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.urgency-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.urgency-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn-urgency {
    display: inline-block;
    padding: 14px 35px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.section-final-cta {
    padding: 120px 40px;
    background: var(--dark-bg);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.btn-final-cta {
    display: inline-block;
    padding: 18px 50px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-final-cta:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.4);
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

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

.sticky-cta-btn {
    display: block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(230, 126, 34, 0.5);
}

.page-hero {
    padding: 180px 40px 100px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: var(--white);
}

.page-hero-small {
    padding: 140px 40px 60px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: var(--white);
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.section-about-story {
    padding: 100px 40px;
    background: var(--white);
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.about-text blockquote {
    margin: 40px 0;
    padding: 30px;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.section-philosophy {
    padding: 100px 40px;
    background: var(--light-bg);
}

.philosophy-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.philosophy-item {
    flex: 1 1 calc(50% - 40px);
    min-width: 280px;
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.philosophy-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.philosophy-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.section-team {
    padding: 100px 40px;
    background: var(--white);
}

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

.team-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-color);
    font-weight: 700;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.team-member {
    flex: 1 1 calc(33.333% - 50px);
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.team-role {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.section-values {
    padding: 100px 40px;
    background: var(--light-bg);
}

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

.values-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 700;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1 1 calc(50% - 40px);
    min-width: 250px;
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.value-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.section-cta-about {
    padding: 100px 40px;
    background: var(--dark-bg);
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-about-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.section-services-intro {
    padding: 80px 40px;
    background: var(--white);
}

.services-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-lead {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 300;
}

.services-intro-content p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.section-services-list {
    padding: 80px 40px;
    background: var(--light-bg);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

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

.service-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    flex: 0 0 400px;
    height: auto;
    min-height: 350px;
}

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

.service-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-duration {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    color: var(--text-dark);
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.btn-service-book {
    padding: 14px 32px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.section-services-faq {
    padding: 100px 40px;
    background: var(--white);
}

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

.faq-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.section-services-cta {
    padding: 100px 40px;
    background: var(--dark-bg);
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.services-cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.services-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-large {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--white);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary-large:hover {
    background: var(--white);
    color: var(--dark-bg);
}

.section-contact-info {
    padding: 100px 40px;
    background: var(--white);
}

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

.contact-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.contact-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.contact-detail-card {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
    max-width: 350px;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-detail-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-detail-card a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 15px;
}

.section-contact-map {
    padding: 0;
    background: var(--light-bg);
}

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

.map-placeholder {
    padding: 100px 40px;
    background: var(--light-bg);
    text-align: center;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.map-note {
    font-size: 1rem;
    color: var(--text-light);
}

.section-contact-cta {
    padding: 100px 40px;
    background: var(--dark-bg);
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.section-thanks {
    padding: 150px 40px 100px;
    background: var(--light-bg);
    text-align: center;
}

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

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

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.thanks-details {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-details p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.thanks-details strong {
    color: var(--primary-color);
}

.thanks-next-steps {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

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

.thanks-steps-list li {
    counter-increment: steps;
    padding: 20px 0;
    padding-left: 50px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
    border-bottom: 1px solid var(--light-bg);
}

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

.thanks-steps-list li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 20px;
    width: 35px;
    height: 35px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-contact {
    margin-bottom: 40px;
}

.thanks-contact p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.thanks-email {
    font-size: 1.2rem;
    font-weight: 600;
}

.thanks-email a {
    color: var(--accent-color);
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.section-legal {
    padding: 100px 40px;
    background: var(--white);
}

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

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

.legal-container h2 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-container h2:first-of-type {
    margin-top: 0;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.legal-container li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.legal-container a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-container strong {
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.cookies-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

.cookies-table td {
    font-size: 1rem;
    color: var(--text-dark);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .offset-container {
        flex-direction: column;
        gap: 40px;
    }

    .form-visual-layout {
        flex-direction: column;
    }

    .form-image-side,
    .form-content-side {
        min-height: auto;
    }

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

    .service-image {
        flex: 1;
        min-height: 300px;
    }

    .service-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .nav-minimal {
        padding: 15px 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-menu a {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

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

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

    .reveal-card,
    .journey-step,
    .vcard,
    .pricing-card,
    .proof-item,
    .philosophy-item,
    .value-item {
        flex: 1 1 100%;
    }

    .stat-item {
        flex: 1 1 100%;
    }

    .form-content-side {
        padding: 40px 30px;
    }

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

    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .team-member {
        flex: 1 1 100%;
    }

    .service-pricing-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-service-book {
        width: 100%;
    }

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

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .section-story,
    .section-image-text-offset,
    .section-dark-reveal,
    .section-journey,
    .section-visual-cards,
    .section-pricing-reveal {
        padding: 60px 20px;
    }

    .reveal-title,
    .journey-title {
        font-size: 2rem;
    }

    .testimonial-quote p {
        font-size: 1.3rem;
    }
}