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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #9b59b6;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

.nav-links a:hover {
    color: #9b59b6;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f4f9;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: #4a5568;
}

.hero-image {
    flex: 1;
    background-color: #d4b5d9;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #9b59b6;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.intro-split {
    display: flex;
    min-height: 500px;
}

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

.intro-image {
    flex: 1;
    background-color: #e8dae8;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #4a5568;
}

.approach-section {
    background-color: #ffffff;
    padding: 90px 40px;
}

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

.approach-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 1.1rem;
    color: #4a5568;
}

.approach-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #f8f4f9;
    padding: 35px 30px;
    border-left: 4px solid #9b59b6;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.step-card p {
    font-size: 1rem;
    color: #4a5568;
}

.services-split {
    background-color: #fafafa;
    padding: 90px 40px;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 1.1rem;
    color: #4a5568;
}

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-item {
    flex: 1;
    min-width: 350px;
    max-width: 400px;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #4a5568;
    flex-grow: 1;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #9b59b6;
    margin-bottom: 20px;
}

.select-service {
    background-color: #9b59b6;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #8e44ad;
}

.form-section {
    background-color: #ffffff;
    padding: 90px 40px;
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #4a5568;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    padding: 15px 20px;
    background-color: #f8f4f9;
    border-left: 3px solid #9b59b6;
    font-size: 1rem;
    color: #2c3e50;
}

.form-container {
    flex: 1;
    background-color: #fafafa;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.selected-service-display {
    background-color: #f0e6f0;
    padding: 15px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #d1d5db;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9b59b6;
}

.submit-btn {
    background-color: #9b59b6;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-notice {
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
}

.form-notice a {
    color: #9b59b6;
    text-decoration: none;
}

.form-notice a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    background-color: #f8f9fa;
    padding: 60px 40px;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #9b59b6;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #9b59b6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #495057;
    text-align: center;
    font-size: 0.9rem;
    color: #adb5bd;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 2000;
    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: 30px;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #9b59b6;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #9b59b6;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #8e44ad;
}

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

.cookie-reject:hover {
    background-color: #495057;
}

.page-hero {
    background-color: #9b59b6;
    color: #ffffff;
    padding: 100px 40px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 1.2rem;
}

.about-split {
    display: flex;
    min-height: 500px;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
    background-color: #ffffff;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #4a5568;
}

.about-image {
    flex: 1;
    background-color: #e8dae8;
    overflow: hidden;
}

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

.team-section {
    background-color: #fafafa;
    padding: 90px 40px;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-intro p {
    font-size: 1.1rem;
    color: #4a5568;
}

.team-approach {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.approach-item p {
    font-size: 1rem;
    color: #4a5568;
}

.values-split {
    display: flex;
    min-height: 500px;
}

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

.values-image {
    flex: 1;
    background-color: #e8dae8;
    overflow: hidden;
}

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

.values-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
    background-color: #ffffff;
}

.values-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.values-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #4a5568;
}

.process-section {
    background-color: #ffffff;
    padding: 90px 40px;
}

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

.process-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background-color: #f8f4f9;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #9b59b6;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.process-step p {
    font-size: 1rem;
    color: #4a5568;
}

.services-detail {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-detail-item {
    display: flex;
    min-height: 500px;
    margin-bottom: 80px;
    gap: 50px;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background-color: #fafafa;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #4a5568;
}

.service-detail-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    color: #4a5568;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #9b59b6;
    margin-bottom: 20px;
}

.service-cta {
    display: inline-block;
    background-color: #9b59b6;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.service-cta:hover {
    background-color: #8e44ad;
}

.service-detail-image {
    flex: 1;
    background-color: #e8dae8;
    overflow: hidden;
}

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

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    gap: 60px;
}

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

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info-block p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: #4a5568;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #9b59b6;
}

.contact-detail p {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0;
}

.contact-note {
    background-color: #f8f4f9;
    padding: 20px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 0.95rem;
    color: #4a5568;
    margin: 0;
}

.contact-image-block {
    flex: 1;
    background-color: #e8dae8;
    overflow: hidden;
    min-height: 400px;
}

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

.location-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

.location-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.location-section p {
    font-size: 1.05rem;
    color: #4a5568;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background-color: #fafafa;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 50px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #9b59b6;
    color: #ffffff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border-radius: 50%;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
}

.thanks-service-info {
    background-color: #f8f4f9;
    padding: 20px;
    margin-bottom: 40px;
}

.thanks-service-info p {
    margin: 0;
    font-size: 1rem;
}

.thanks-next-steps {
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    color: #1a1a1a;
}

.next-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background-color: #9b59b6;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.next-step p {
    margin: 0;
    font-size: 1rem;
    color: #4a5568;
    padding-top: 8px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #9b59b6;
    color: #ffffff;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    background-color: transparent;
    color: #9b59b6;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #9b59b6;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #9b59b6;
    color: #ffffff;
}

.legal-page {
    background-color: #ffffff;
    padding: 60px 40px;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.last-updated {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-container p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-container ul li {
    margin-bottom: 10px;
    color: #4a5568;
}

.legal-container a {
    color: #9b59b6;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .about-split,
    .values-split,
    .service-detail-item,
    .form-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .about-content,
    .values-content,
    .service-detail-content,
    .form-info,
    .contact-info-block {
        padding: 40px 30px;
    }

    .hero-image,
    .intro-image,
    .about-image,
    .values-image,
    .service-detail-image,
    .contact-image-block {
        min-height: 300px;
    }

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

    .nav-links {
        gap: 20px;
    }

    .services-grid,
    .approach-steps,
    .process-grid,
    .team-approach {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}