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

:root {
    --color-primary: #2c3e50;
    --color-secondary: #1abc9c;
    --color-accent: #3498db;
    --color-dark: #16a085;
    --color-light: #ecf0f1;
    --color-text: #2c3e50;
    --color-text-light: #7f8c8d;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    font-size: 17px;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-primary);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
}

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

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

ul {
    list-style: none;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-medium {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.main-header {
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-light);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

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

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

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

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

.nav-right {
    flex: 0 0 auto;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: var(--color-text-light);
    padding: 0.4rem 0.8rem;
    background-color: var(--color-light);
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: var(--color-bg-alt);
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.hero-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-secondary);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: var(--color-dark);
    color: white;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.insight-section {
    padding: 5rem 0;
    background-color: var(--color-bg);
}

.insight-section h2 {
    margin-bottom: 2rem;
}

.insight-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.emphasis-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--color-light);
    border-left: 4px solid var(--color-secondary);
}

.dual-content {
    display: flex;
}

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

.dual-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
}

.dual-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.dual-inner {
    max-width: 600px;
}

.dual-inner h3 {
    margin-bottom: 1.5rem;
}

.dual-inner p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

.light-text {
    color: white;
}

.light-text h3 {
    color: white;
}

.principles-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

.principles-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.principles-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.principle-card {
    flex: 0 1 calc(33.333% - 1.5rem);
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.principle-card h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
}

.principle-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.story-section {
    padding: 5rem 0;
    background-color: var(--color-bg);
}

.story-section h2 {
    margin-bottom: 2rem;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.services-intro {
    padding: 5rem 0;
    background-color: var(--color-bg);
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(50% - 1rem);
    background-color: white;
    border: 1px solid var(--color-light);
    border-radius: 8px;
    padding: 2rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.service-card h4 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

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

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.btn-service {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--color-primary);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.form-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

.form-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--color-light);
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--color-secondary);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.trust-section {
    padding: 4rem 0;
    background-color: var(--color-bg);
}

.trust-section h3 {
    margin-bottom: 1.5rem;
}

.trust-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.3rem;
}

.main-footer {
    background-color: var(--color-primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h5 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--color-secondary);
}

.footer-disclaimer {
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-accept:hover {
    background-color: var(--color-dark);
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.page-hero {
    padding: 5rem 0 3rem;
    background-color: var(--color-bg-alt);
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 4rem 0;
}

.content-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.content-left {
    flex: 1;
}

.content-left h2 {
    margin-bottom: 1.5rem;
}

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

.content-right {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.philosophy-section {
    padding: 4rem 0;
    background-color: var(--color-bg-alt);
}

.philosophy-section h2 {
    margin-bottom: 1.5rem;
}

.philosophy-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.philosophy-list li {
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--color-light);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

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

.approach-section {
    padding: 5rem 0;
    background-color: var(--color-bg);
}

.approach-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-card {
    flex: 0 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
    border-left: 4px solid var(--color-secondary);
}

.approach-card h4 {
    margin-bottom: 1rem;
}

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

.values-section {
    padding: 4rem 0;
}

.values-split {
    display: flex;
}

.values-left {
    flex: 1;
    overflow: hidden;
}

.values-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
}

.values-inner {
    max-width: 600px;
}

.values-inner h3 {
    margin-bottom: 1.5rem;
}

.values-inner p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

.cta-section {
    padding: 4rem 0;
    background-color: var(--color-bg);
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.services-detail {
    padding: 4rem 0;
}

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

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

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

.service-detail-content h2 {
    margin-bottom: 1rem;
}

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

.service-detail-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-detail-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.service-duration {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-top: 1rem;
}

.service-detail-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-light);
}

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

.service-detail-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    max-height: 400px;
}

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

.process-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    background-color: var(--color-secondary);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.process-step h4 {
    margin-bottom: 0.5rem;
}

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

.contact-content {
    padding: 4rem 0;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

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

.info-block h4 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

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

.info-note {
    padding: 1.5rem;
    background-color: var(--color-bg-alt);
    border-left: 4px solid var(--color-secondary);
    border-radius: 4px;
    margin-top: 2rem;
}

.info-note p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    min-height: 400px;
}

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

.faq-section {
    padding: 4rem 0;
    background-color: var(--color-bg-alt);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

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

.thanks-section {
    padding: 6rem 0;
    text-align: center;
}

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

.thanks-content h1 {
    margin-bottom: 1.5rem;
}

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

.selected-service {
    padding: 1.5rem;
    background-color: var(--color-bg-alt);
    border-radius: 6px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--color-secondary);
}

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

.next-steps h3 {
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style: disc;
    margin-left: 2rem;
}

.next-steps ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

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

.legal-content {
    padding: 4rem 0;
}

.legal-content h1 {
    margin-bottom: 1rem;
}

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

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

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

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

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

.legal-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.no-link {
    color: var(--color-text-light);
    text-decoration: none;
    pointer-events: none;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .hero-left {
        padding: 3rem 2rem;
    }

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

    .dual-content {
        flex-direction: column;
    }

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

    .dual-left {
        padding: 3rem 2rem;
    }

    .principle-card {
        flex: 0 1 calc(50% - 1rem);
    }

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

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

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

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

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

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-center {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .principle-card {
        flex: 0 1 100%;
    }

    .service-card {
        flex: 0 1 100%;
    }

    .approach-card {
        flex: 0 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .service-detail-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

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

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