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

:root {
    --color-primary: #2d3436;
    --color-secondary: #636e72;
    --color-accent: #0984e3;
    --color-light: #dfe6e9;
    --color-white: #ffffff;
    --color-dark: #1a1a1a;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --max-width: 1200px;
    --narrow-width: 720px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-primary);
    line-height: 1.7;
    font-size: 17px;
    background-color: var(--color-white);
}

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

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

.ad-disclosure {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
}

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

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

.nav-list a {
    color: var(--color-primary);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

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

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

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

.hero-editorial {
    position: relative;
}

.hero-image-container {
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

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

.hero-content {
    max-width: var(--narrow-width);
    margin: -80px auto 0;
    padding: 3rem;
    background-color: var(--color-white);
    position: relative;
    z-index: 10;
}

.hero-lead {
    font-size: 1.2rem;
    color: var(--color-secondary);
}

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

.story-narrow {
    max-width: var(--narrow-width);
    margin: 0 auto;
    padding: 2rem;
}

.story-narrow h2 {
    margin-top: 2rem;
}

.story-narrow h3 {
    margin-top: 2rem;
    color: var(--color-secondary);
}

.story-image-wide {
    width: 100%;
    max-width: 1000px;
    margin: 3rem auto;
    height: 400px;
    overflow: hidden;
}

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

.insight-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.insight-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.insight-text {
    flex: 1;
}

.insight-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
}

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

.cta-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 3px;
}

.cta-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
}

.services-preview {
    padding: 5rem 2rem;
}

.services-preview-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.services-preview-inner h2 {
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1;
    text-align: left;
    background-color: var(--color-white);
    border: 1px solid var(--color-light);
    overflow: hidden;
}

.service-card-image {
    height: 200px;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0;
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--color-secondary);
    font-size: 0.95rem;
}

.service-card .price {
    display: block;
    padding: 0 1.5rem 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

.cta-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 2rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 5rem 2rem;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    color: var(--color-white);
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: none;
    font-size: 1rem;
    font-family: var(--font-main);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232d3436' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.submit-button {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 1rem 2rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: #0773c9;
}

.testimonial-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.testimonial-container {
    max-width: var(--narrow-width);
    margin: 0 auto;
    text-align: center;
}

.testimonial {
    font-style: italic;
}

.testimonial p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.testimonial cite {
    font-style: normal;
    color: var(--color-secondary);
    font-size: 0.95rem;
}

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

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-brand .logo {
    color: var(--color-white);
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #b2bec3;
    font-size: 0.95rem;
}

.footer-links,
.footer-legal,
.footer-contact {
    flex: 1;
    min-width: 150px;
}

.footer h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.footer ul a {
    color: #b2bec3;
    font-size: 0.95rem;
}

.footer ul a:hover {
    color: var(--color-white);
}

.footer-contact p {
    color: #b2bec3;
    font-size: 0.95rem;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
}

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

.disclaimer {
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    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;
}

.cookie-accept {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.cookie-reject {
    background-color: transparent;
    color: var(--color-primary);
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-primary);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-reject:hover {
    background-color: var(--color-light);
}

.cookie-link {
    font-size: 0.9rem;
}

.page-hero {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero-content {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: var(--color-secondary);
}

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

.about-image-section {
    padding: 2rem;
    margin: 3rem 0;
}

.about-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    height: 400px;
    overflow: hidden;
}

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

.values-section {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 5rem 2rem;
    margin: 3rem 0;
}

.values-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.values-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-item {
    flex: 1;
}

.value-item h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.team-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.team-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    max-width: var(--narrow-width);
    margin: 0 auto 3rem;
}

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

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

.team-image {
    height: 300px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--color-secondary);
    font-size: 0.95rem;
}

.cta-section {
    padding: 5rem 2rem;
    text-align: center;
}

.cta-container {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

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

.cta-container p {
    margin-bottom: 2rem;
    color: var(--color-secondary);
}

.services-full {
    padding: 4rem 2rem;
}

.services-intro {
    max-width: var(--narrow-width);
    margin: 0 auto 4rem;
    text-align: center;
    color: var(--color-secondary);
}

.service-detail {
    max-width: var(--max-width);
    margin: 0 auto 5rem;
}

.service-detail-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

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

.service-detail-text h2 {
    margin-bottom: 1.5rem;
}

.service-detail-text ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.service-detail-text li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.service-duration {
    font-style: italic;
    color: var(--color-secondary);
}

.service-price-box {
    background-color: #f8f9fa;
    padding: 1.5rem;
    margin-top: 2rem;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: var(--color-secondary);
    margin-top: 0.5rem;
}

.service-detail-image {
    flex: 1;
    height: 350px;
    overflow: hidden;
}

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

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

.process-section {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 5rem 2rem;
}

.process-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

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

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

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 1rem;
}

.process-step p {
    color: #b2bec3;
    font-size: 0.95rem;
}

.contact-main {
    padding: 4rem 2rem;
}

.contact-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

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

.contact-block h3 {
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    padding: 2rem;
}

.map-overlay p {
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.faq-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.faq-container {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

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

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-light);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--color-secondary);
    margin-bottom: 0;
}

.thanks-section {
    padding: 8rem 2rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-container {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 2rem;
}

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

.service-selected {
    background-color: #f8f9fa;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.thanks-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.legal-hero {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 4rem 2rem;
}

.legal-hero-content {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.legal-hero-content p {
    color: #b2bec3;
}

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

.legal-container {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-light);
}

.legal-section:first-child h2 {
    border-top: none;
    padding-top: 0;
}

.legal-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-section li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

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

    h2 {
        font-size: 1.6rem;
    }

    .nav-main {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        border-bottom: 1px solid var(--color-light);
        padding: 1rem 2rem;
    }

    .nav-main.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        margin: 0;
        padding: 2rem;
    }

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

    .insight-image {
        height: 300px;
        width: 100%;
    }

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

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

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

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

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

    .service-detail-image {
        height: 250px;
        width: 100%;
    }

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

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

    .footer-inner {
        flex-direction: column;
        gap: 2rem;
    }

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

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

@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 1.75rem;
    }

    .header-inner {
        padding: 1rem;
    }

    .story-narrow {
        padding: 1rem;
    }

    .services-preview,
    .form-section,
    .testimonial-section,
    .page-hero,
    .values-section,
    .team-section,
    .cta-section,
    .services-full,
    .process-section,
    .contact-main,
    .faq-section,
    .legal-content {
        padding: 3rem 1rem;
    }

    .hero-image-container {
        height: 40vh;
        min-height: 300px;
    }

    .story-image-wide {
        height: 250px;
    }
}
