* {
    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: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background: #229954;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 22px;
    font-weight: 700;
    color: #5d4e6d;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 24px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
    background: #fafbfc;
}

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-left p {
    font-size: 19px;
    color: #546e7a;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    position: relative;
    background: #e8e4ea;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #5d4e6d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #4a3d56;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(93, 78, 109, 0.3);
}

.intro-asymmetric {
    display: flex;
    padding: 100px 60px;
    background: #ffffff;
    align-items: center;
    gap: 80px;
}

.intro-content-offset {
    flex: 1.2;
}

.intro-content-offset h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-content-offset p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.8;
}

.intro-image-float {
    flex: 0.8;
    background: #f4f3f5;
}

.intro-image-float img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.problem-section {
    padding: 80px 60px;
    background: #5d4e6d;
    color: #ffffff;
}

.problem-wrapper {
    max-width: 800px;
}

.problem-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.problem-text p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
}

.services-grid {
    padding: 100px 60px;
    background: #fafbfc;
}

.services-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #e8e4ea;
}

.service-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin: 20px 20px 12px;
}

.service-card p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.6;
    margin: 0 20px 16px;
    flex: 1;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #5d4e6d;
    margin: 0 20px 16px;
}

.btn-select {
    margin: 0 20px 20px;
    padding: 12px 24px;
    background: #5d4e6d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #4a3d56;
}

.testimonials-split {
    display: flex;
    padding: 80px 60px;
    background: #2c3e50;
    color: #ffffff;
    gap: 60px;
}

.testimonial-left,
.testimonial-right {
    flex: 1;
}

blockquote {
    border-left: 4px solid #5d4e6d;
    padding-left: 24px;
}

blockquote p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.85;
}

.form-section {
    padding: 100px 60px;
    background: #fafbfc;
}

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

.form-intro {
    flex: 0.8;
}

.form-intro h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.7;
}

.form-wrapper {
    flex: 1.2;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.selected-service-display {
    padding: 12px 16px;
    background: #e8e4ea;
    border-radius: 6px;
    font-weight: 600;
    color: #5d4e6d;
    font-size: 15px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 14px 32px;
    background: #5d4e6d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #4a3d56;
}

.trust-section {
    padding: 80px 60px;
    background: #ffffff;
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.trust-content p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.8;
}

.footer-split {
    display: flex;
    padding: 60px 60px 40px;
    background: #2c3e50;
    color: #ffffff;
    gap: 80px;
}

.footer-left,
.footer-right {
    flex: 1;
}

.footer-brand h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #ffffff;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 24px;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-legal a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
}

.footer-disclaimer {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-contact {
    font-size: 14px;
    opacity: 0.85;
}

.footer-contact p {
    margin-bottom: 8px;
}

.about-hero-split {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    align-items: center;
    background: #fafbfc;
}

.about-hero-content {
    flex: 1;
}

.about-hero-content h1 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-hero-content p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.7;
}

.about-hero-image {
    flex: 1;
    background: #e8e4ea;
}

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

.story-section {
    padding: 100px 60px;
    background: #ffffff;
}

.story-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.story-wrapper h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.story-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-left {
    flex: 1;
}

.story-left p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.story-right img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.values-split {
    display: flex;
    padding: 100px 60px;
    background: #fafbfc;
    gap: 80px;
}

.values-left {
    flex: 1.2;
}

.values-left h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.value-item {
    margin-bottom: 36px;
}

.value-item h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.values-right {
    flex: 0.8;
    background: #e8e4ea;
}

.values-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.process-section {
    padding: 100px 60px;
    background: #ffffff;
}

.process-section h2 {
    font-size: 38px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

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

.process-step {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 32px;
    background: #fafbfc;
    border-radius: 8px;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #5d4e6d;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.commitment-section {
    padding: 80px 60px;
    background: #5d4e6d;
    color: #ffffff;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.commitment-content p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
}

.services-hero {
    padding: 100px 60px 60px;
    background: #fafbfc;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.services-hero p {
    font-size: 20px;
    color: #546e7a;
}

.services-detailed {
    padding: 60px 60px 100px;
    background: #ffffff;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: #546e7a;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5d4e6d;
    font-weight: 700;
}

.price-large {
    font-size: 28px;
    font-weight: 700;
    color: #5d4e6d;
    margin-bottom: 20px;
}

.service-detail-image {
    flex: 0.8;
    background: #e8e4ea;
}

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

.contact-hero {
    padding: 80px 60px 40px;
    background: #fafbfc;
    text-align: center;
}

.contact-hero h1 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 19px;
    color: #546e7a;
}

.contact-split {
    display: flex;
    padding: 60px 60px 100px;
    gap: 80px;
    background: #ffffff;
}

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

.contact-info-side h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.contact-block {
    margin-bottom: 36px;
}

.contact-block h3 {
    font-size: 18px;
    color: #5d4e6d;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-block p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.contact-visual-side {
    flex: 1;
    background: #e8e4ea;
}

.contact-visual-side img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    margin-bottom: 24px;
}

.contact-note {
    padding: 24px;
    background: #5d4e6d;
    color: #ffffff;
}

.contact-note h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
}

.visit-section {
    padding: 80px 60px;
    background: #fafbfc;
}

.visit-content {
    max-width: 900px;
    margin: 0 auto;
}

.visit-content h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.visit-content p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 16px;
}

.faq-section {
    padding: 80px 60px;
    background: #ffffff;
}

.faq-section h2 {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    padding: 28px;
    background: #fafbfc;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 19px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 60px;
    background: #fafbfc;
    min-height: 600px;
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    font-size: 48px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.thanks-lead {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 40px;
}

.thanks-lead strong {
    color: #5d4e6d;
}

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

.thanks-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 32px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-timeline {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #5d4e6d;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
}

.step-text h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.step-text p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

.thanks-info {
    background: #fafbfc;
    padding: 28px;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 40px;
}

.thanks-info h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.thanks-info p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 12px;
}

.thanks-info ul {
    list-style: none;
    padding-left: 0;
}

.thanks-info ul li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 15px;
    color: #546e7a;
}

.thanks-info ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #5d4e6d;
    font-weight: 700;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #5d4e6d;
    color: #ffffff;
}

.btn-primary:hover {
    background: #4a3d56;
}

.btn-secondary {
    background: transparent;
    color: #5d4e6d;
    border: 2px solid #5d4e6d;
}

.btn-secondary:hover {
    background: #5d4e6d;
    color: #ffffff;
}

.legal-page {
    padding: 80px 60px 100px;
    background: #fafbfc;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
}

.legal-container h1 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.legal-intro {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-container h3 {
    font-size: 20px;
    color: #5d4e6d;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-container p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.legal-container ul li {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-container a {
    color: #5d4e6d;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #4a3d56;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
    font-size: 15px;
}

.cookies-table th {
    background: #fafbfc;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #546e7a;
}

@media (max-width: 1024px) {
    .hero-split,
    .about-hero-split,
    .testimonials-split,
    .values-split,
    .contact-split {
        flex-direction: column;
    }

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

    .form-container-split,
    .story-content-split {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 16px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .services-title {
        font-size: 32px;
    }

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

    .footer-split {
        flex-direction: column;
        gap: 40px;
    }

    .process-step,
    .faq-item {
        flex: 1 1 100%;
    }
}