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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.main-header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.02em;
}

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

.main-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #000;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #999;
    padding: 0.3rem 0.8rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 4rem 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9f9f9;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-left p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background-color: #ddd;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #000;
}

.intro-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.intro-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.services-preview {
    padding: 6rem 2rem;
    background-color: #f5f5f5;
}

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

.section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.header-left h2 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.header-left p {
    font-size: 1.05rem;
    color: #666;
    max-width: 500px;
}

.link-arrow {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(5px);
}

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

.service-card {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.card-content {
    padding: 1.8rem;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.card-content p {
    color: #666;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.experience-section {
    padding: 0;
    background-color: #fff;
}

.container-fluid {
    max-width: 100%;
}

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

.content-side {
    flex: 1;
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.content-side h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-side p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.image-side {
    flex: 1;
    background-color: #e0e0e0;
}

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

.testimonials-section {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonials-flow {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-item {
    flex: 1;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

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

.testimonial-item cite {
    font-size: 0.9rem;
    color: #999;
    font-style: normal;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #2c2c2c;
}

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

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

.form-intro h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-intro p {
    color: #ccc;
    font-size: 1.05rem;
}

.contact-form {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #000;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 4rem 2rem 2rem;
}

.container-footer {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
    max-width: 900px;
    margin: 1rem auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-accept {
    background-color: #fff;
    color: #2c2c2c;
}

.btn-accept:hover {
    background-color: #f0f0f0;
}

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

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

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

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

.page-hero p {
    font-size: 1.15rem;
    color: #666;
}

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

.service-item-full {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-item-full.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.service-details p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.service-includes {
    list-style: none;
    margin: 1.5rem 0 2rem;
}

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-weight: bold;
}

.btn-service {
    display: inline-block;
    background-color: #2c2c2c;
    color: #fff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #000;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2rem;
}

.btn-cta-secondary {
    display: inline-block;
    background-color: #fff;
    color: #2c2c2c;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c2c2c;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background-color: #2c2c2c;
    color: #fff;
}

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

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.image-block {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.values-section {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-item p {
    color: #666;
    line-height: 1.7;
}

.approach-section {
    padding: 6rem 2rem;
    background-color: #fff;
}

.approach-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-section p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.experience-section {
    padding: 6rem 2rem;
    background-color: #f5f5f5;
}

.experience-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.experience-layout {
    display: flex;
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.exp-column {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.exp-column img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.exp-column h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #1a1a1a;
}

.exp-column p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.7;
}

.commitment-section {
    padding: 6rem 2rem;
    background-color: #fff;
}

.commitment-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.commitment-section p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.btn-inline {
    display: inline-block;
    color: #2c2c2c;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #2c2c2c;
    transition: color 0.2s;
    margin-top: 1rem;
}

.btn-inline:hover {
    color: #000;
}

.contact-info-section {
    padding: 4rem 2rem;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-details-block {
    flex: 1;
}

.contact-details-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.info-group h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-weight: 600;
}

.info-group p {
    color: #555;
    line-height: 1.7;
}

.info-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.info-note p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.map-placeholder {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

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

.faq-section {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.faq-item p {
    color: #555;
    line-height: 1.8;
}

.cta-contact {
    padding: 5rem 2rem;
    background-color: #2c2c2c;
    text-align: center;
}

.cta-contact h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-contact p {
    color: #ccc;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.btn-cta-primary {
    display: inline-block;
    background-color: #fff;
    color: #2c2c2c;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-cta-primary:hover {
    background-color: #f0f0f0;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-content > p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 3rem;
}

.service-selected {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #000;
}

.btn-secondary {
    display: inline-block;
    background-color: #fff;
    color: #2c2c2c;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c2c2c;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #2c2c2c;
    color: #fff;
}

.additional-info {
    padding: 4rem 2rem;
    background-color: #fff;
}

.additional-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.additional-info p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.link-inline {
    color: #2c2c2c;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.link-inline:hover {
    color: #000;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #fff;
}

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

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.last-updated {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.legal-page p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-page li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #2c2c2c;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #000;
}

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

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

.cookie-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #2c2c2c;
}

.cookie-table td {
    color: #555;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

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

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

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

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

    .content-side {
        padding: 3rem 2rem;
    }

    .testimonials-flow {
        flex-direction: column;
    }

    .service-item-full,
    .service-item-full.reverse {
        flex-direction: column;
    }

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

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

    .experience-layout {
        flex-direction: column;
    }

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

    .main-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .container-header {
        padding: 1rem;
    }

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

    .hero-left p {
        font-size: 1rem;
    }

    .section-header-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

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