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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-dark: #2c3e50;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success: #27ae60;
}

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

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

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

a:hover {
    color: var(--secondary-color);
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-right a:hover,
.nav-right a.active {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
}

.hero-left {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.hero-left h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
}

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

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
}

.btn-cta:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(231,76,60,0.3);
}

.stats-bar {
    display: flex;
    flex-wrap: wrap;
    background: var(--bg-dark);
    color: var(--white);
    padding: 2.5rem 5%;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

.split-content {
    display: flex;
    flex-direction: column;
    margin: 4rem 0;
}

.split-content.reverse {
    flex-direction: column-reverse;
}

.content-left,
.content-right,
.content-left-img,
.content-right-text {
    flex: 1;
    padding: 3rem 5%;
}

.content-left h2,
.content-right-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--primary-color);
}

.content-left p,
.content-right-text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.content-right img,
.content-left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.text-link:hover {
    color: var(--secondary-color);
}

.testimonial-block {
    padding: 4rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.testimonial-block blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: var(--text-dark);
}

.testimonial-block cite {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 200px;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 5px;
    font-weight: 500;
}

.dark-section {
    background: var(--bg-dark);
    color: var(--white);
    padding: 5rem 5%;
}

.dark-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.dark-section.centered h2 {
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.services-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1;
    background: var(--white);
    color: var(--text-dark);
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
}

.service-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    transform: scale(1.02);
}

.service-card.featured .service-desc,
.service-card.featured .service-features li {
    color: rgba(255,255,255,0.95);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.8rem;
    flex: 1;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

.service-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.service-card.featured .service-features li:before {
    color: #ffd700;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-select-service.small {
    padding: 0.7rem;
    font-size: 1rem;
}

.additional-services {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mini-service {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.mini-service h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.mini-service p {
    margin-bottom: 1rem;
    opacity: 0.9;
    flex: 1;
}

.mini-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.image-text-overlay {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-text-overlay img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.overlay-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
    padding: 3rem 5%;
    max-width: 900px;
}

.overlay-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.overlay-content p {
    font-size: 1.3rem;
    line-height: 1.7;
}

.process-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.process-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.process-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.process-step {
    flex: 1;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 700;
    border-radius: 5px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(231,76,60,0.4);
}

.form-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    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-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.split-footer {
    display: flex;
    flex-direction: column;
    background: var(--bg-dark);
    color: var(--white);
    padding: 3rem 5%;
}

.footer-left {
    margin-bottom: 2rem;
}

.footer-left h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-left p {
    opacity: 0.8;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--white);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.btn-sticky {
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #c0392b;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--white);
    padding: 1.5rem 5%;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #229954;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.page-hero {
    padding: 5rem 5% 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-intro {
    font-size: 1.3rem;
    opacity: 0.95;
}

.team-section {
    padding: 5rem 5%;
    background: var(--white);
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.team-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.team-member {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
}

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

.role {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.story-section {
    padding: 5rem 5%;
    background: var(--white);
}

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

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.services-detailed {
    padding: 3rem 5%;
}

.service-detail-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

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

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.service-detail-left {
    margin-bottom: 2rem;
}

.service-detail-left img {
    width: 100%;
    border-radius: 10px;
}

.service-detail-right {
    padding: 2rem 0;
}

.service-detail-right h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.featured-price {
    color: var(--accent-color);
}

.popular-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

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

.service-detail-right h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.detailed-features {
    list-style: none;
    margin-bottom: 2rem;
}

.detailed-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.detailed-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.service-note {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 5px;
    margin: 1.5rem 0;
}

.workshops-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.workshops-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.workshop-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.workshop-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.workshop-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.workshop-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.workshop-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.workshop-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.workshop-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.workshop-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.comparison-section {
    padding: 5rem 5%;
    background: var(--white);
}

.comparison-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-header,
.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.comparison-header {
    background: var(--bg-light);
    font-weight: 700;
}

.comp-cell {
    flex: 1;
    padding: 1rem;
    text-align: center;
}

.comp-cell.label {
    text-align: left;
    font-weight: 600;
}

.faq-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

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

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

.contact-split {
    display: flex;
    flex-direction: column;
    padding: 3rem 5%;
}

.contact-info,
.contact-map {
    flex: 1;
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
}

.info-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-map {
    position: relative;
    min-height: 400px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    color: var(--white);
    padding: 1rem;
    border-radius: 5px;
}

.visit-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.visit-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.visit-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.visit-text {
    flex: 1;
}

.visit-text p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.visit-image {
    flex: 1;
}

.visit-image img {
    width: 100%;
    border-radius: 10px;
}

.questions-section {
    padding: 5rem 5%;
    background: var(--white);
}

.questions-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.questions-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.question-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.question-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.question-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    background: var(--bg-light);
}

.thanks-content {
    max-width: 800px;
    text-align: center;
    background: var(--white);
    padding: 4rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.checkmark {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
}

.step-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-text p {
    color: var(--text-light);
    line-height: 1.7;
}

.additional-info {
    text-align: left;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.additional-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.links-list li {
    margin-bottom: 0.7rem;
    color: var(--text-light);
}

.social-proof {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.btn-back {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.7rem;
    color: var(--primary-color);
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-page ul {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

.legal-page ul li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

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

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

@media (min-width: 768px) {
    .hero-split {
        flex-direction: row;
    }

    .hero-left h1 {
        font-size: 3.5rem;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: row;
    }

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

    .services-split {
        flex-direction: row;
    }

    .additional-services {
        flex-direction: row;
    }

    .process-split {
        flex-direction: row;
    }

    .split-footer {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-left {
        margin-bottom: 0;
    }

    .footer-right {
        flex-direction: row;
        gap: 3rem;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .team-split {
        flex-direction: row;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .service-detail-left {
        margin-bottom: 0;
        margin-right: 3rem;
    }

    .service-detail-block.reverse .service-detail-left {
        margin-right: 0;
        margin-left: 3rem;
    }

    .service-detail-right {
        padding: 0 2rem;
    }

    .workshop-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .workshop-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .contact-split {
        flex-direction: row;
        gap: 3rem;
    }

    .contact-info {
        margin-bottom: 0;
    }

    .visit-content {
        flex-direction: row;
    }

    .questions-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .question-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

@media (max-width: 767px) {
    .nav-right {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

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

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

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

    .comparison-table {
        overflow-x: auto;
    }

    .comp-cell {
        font-size: 0.85rem;
        padding: 0.7rem 0.5rem;
    }
}
