* {
    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: #2c3e50;
    background-color: #ffffff;
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

.cookie-content a {
    color: #87ceeb;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #9370db;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #7b5bc4;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.header-split {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #9370db;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    font-style: italic;
}

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

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.hero-split {
    display: flex;
    flex-direction: row;
    min-height: 85vh;
    background-color: #f8f9fa;
}

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

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-left p {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
    background-color: #e8d8f0;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #9370db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #7b5bc4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(147, 112, 219, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: #9370db;
    text-decoration: none;
    border: 2px solid #9370db;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #9370db;
    color: #ffffff;
}

.intro-section {
    padding: 5rem 3rem;
    background-color: #ffffff;
}

.intro-content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.intro-image {
    flex: 1;
    background-color: #f0e6f6;
}

.intro-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.services-overview {
    padding: 5rem 3rem;
    background-color: #faf5ff;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
}

.services-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    font-size: 1.4rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-card p {
    padding: 0 1.5rem;
    color: #5a6c7d;
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.price-tag {
    padding: 0 1.5rem;
    font-size: 1.5rem;
    color: #9370db;
    font-weight: 700;
    margin: 1rem 0;
}

.service-card .cta-secondary {
    margin: 1rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
}

.form-section-split {
    display: flex;
    flex-direction: row;
    min-height: 600px;
}

.form-left-content {
    flex: 1;
    background-color: #9370db;
    color: #ffffff;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-left-content p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.form-right-content {
    flex: 1;
    background-color: #f8f9fa;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
}

.contact-form label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: -1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.9rem;
    border: 1px solid #d1d8e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #9370db;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #9370db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #7b5bc4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(147, 112, 219, 0.3);
}

.footer-split {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 4rem 3rem 3rem 3rem;
    background-color: #2c3e50;
    color: #ecf0f1;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column h4 {
    color: #9370db;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-column a:hover {
    color: #9370db;
}

.footer-column p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

.disclaimer {
    padding: 2rem 3rem;
    background-color: #f8f9fa;
    border-top: 1px solid #e1e8ed;
}

.disclaimer p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.about-hero-split {
    display: flex;
    flex-direction: row;
    min-height: 60vh;
    position: relative;
}

.about-hero-image {
    flex: 1.2;
    background-color: #e8d8f0;
}

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

.about-hero-text {
    flex: 0.8;
    background-color: #faf5ff;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-text h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
}

.about-hero-text p {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.about-story-split {
    display: flex;
    flex-direction: row;
    padding: 5rem 3rem;
    gap: 4rem;
    background-color: #ffffff;
    align-items: center;
}

.story-left {
    flex: 1;
}

.story-left h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-left p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-right {
    flex: 1;
    background-color: #f0e6f6;
}

.story-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    padding: 5rem 3rem;
    background-color: #faf5ff;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
}

.values-split-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.value-item {
    flex: 1 1 calc(50% - 3rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 1.5rem;
    color: #9370db;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.approach-split {
    display: flex;
    flex-direction: row;
    padding: 5rem 3rem;
    gap: 4rem;
    background-color: #ffffff;
    align-items: center;
}

.approach-left {
    flex: 1;
    background-color: #f0e6f6;
}

.approach-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.approach-right {
    flex: 1;
}

.approach-right h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.approach-right p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-section {
    padding: 5rem 3rem;
    background-color: #f8f9fa;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.team-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.cta-about-section {
    padding: 5rem 3rem;
    background-color: #9370db;
    text-align: center;
    color: #ffffff;
}

.cta-about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-about-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-about-section .cta-primary {
    background-color: #ffffff;
    color: #9370db;
}

.cta-about-section .cta-primary:hover {
    background-color: #f0e6f6;
    color: #7b5bc4;
}

.services-hero {
    padding: 5rem 3rem 3rem 3rem;
    background-color: #faf5ff;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-hero p {
    font-size: 1.3rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    flex-direction: row;
    padding: 4rem 3rem;
    gap: 4rem;
    background-color: #ffffff;
    align-items: flex-start;
}

.service-detail-split:nth-child(even) {
    background-color: #f8f9fa;
}

.service-detail-left {
    flex: 1;
    background-color: #e8d8f0;
}

.service-detail-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

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

.service-detail-right h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-price {
    font-size: 1.8rem;
    color: #9370db;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-detail-right p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-right h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail-right ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-right li {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.duration-info {
    font-style: italic;
    color: #7f8c8d;
    margin-top: 1.5rem;
}

.services-cta-section {
    padding: 5rem 3rem;
    background-color: #9370db;
    text-align: center;
    color: #ffffff;
}

.services-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-cta-section .cta-primary {
    background-color: #ffffff;
    color: #9370db;
}

.services-cta-section .cta-primary:hover {
    background-color: #f0e6f6;
    color: #7b5bc4;
}

.contact-hero {
    padding: 5rem 3rem 3rem 3rem;
    background-color: #faf5ff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-hero p {
    font-size: 1.3rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content-split {
    display: flex;
    flex-direction: row;
    padding: 5rem 3rem;
    gap: 5rem;
    background-color: #ffffff;
    align-items: flex-start;
}

.contact-info-left {
    flex: 1;
}

.contact-info-left h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-detail-block {
    margin-bottom: 2.5rem;
}

.contact-detail-block h3 {
    font-size: 1.3rem;
    color: #9370db;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-detail-block p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.note-text {
    font-size: 0.95rem;
    font-style: italic;
    color: #7f8c8d;
}

.contact-map-right {
    flex: 1;
    position: relative;
    background-color: #e8d8f0;
}

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

.map-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(147, 112, 219, 0.9);
    padding: 1.5rem;
    color: #ffffff;
}

.map-overlay-text p {
    margin: 0;
    font-size: 1.1rem;
}

.visit-section {
    padding: 4rem 3rem;
    background-color: #f8f9fa;
}

.visit-section h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.visit-section p {
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    text-align: center;
}

.faq-contact-section {
    padding: 5rem 3rem;
    background-color: #ffffff;
}

.faq-contact-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

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

.faq-item {
    padding: 2rem;
    background-color: #faf5ff;
    border-radius: 8px;
    border-left: 4px solid #9370db;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-hero {
    padding: 5rem 3rem;
    background-color: #faf5ff;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #9370db;
    margin-bottom: 1rem;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.4rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

.confirmation-box {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    text-align: left;
}

.confirmation-box h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.confirmation-box p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.confirmation-box ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.confirmation-box li {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.service-confirmation {
    background-color: #faf5ff;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    border-left: 4px solid #9370db;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

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

.next-steps h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.next-steps p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

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

.urgent-contact {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.urgent-contact p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

.small-text {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 3rem;
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 800;
}

.last-updated {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #9370db;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.legal-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.legal-content li {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #9370db;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #7b5bc4;
}

@media (max-width: 968px) {
    .header-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem 2rem;
    }

    .header-right {
        align-items: flex-start;
        width: 100%;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-split,
    .about-hero-split,
    .intro-content-split,
    .about-story-split,
    .approach-split,
    .service-detail-split,
    .contact-content-split,
    .form-section-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .form-left-content,
    .form-right-content {
        padding: 3rem 2rem;
    }

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

    .services-grid-split {
        gap: 1.5rem;
    }

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

    .values-split-grid {
        gap: 1.5rem;
    }

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

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