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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    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;
    margin: 0;
    font-size: 14px;
}

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

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

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

.btn-cookie-accept:hover {
    background-color: #2980b9;
}

.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;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

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

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 36px;
    color: #555555;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #dfe6e9;
}

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

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

.cta-hero:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

.intro-block {
    flex: 1.2;
}

.intro-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-block p {
    font-size: 17px;
    color: #555555;
    line-height: 1.8;
}

.intro-visual {
    flex: 1;
    background-color: #ecf0f1;
}

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

.services-grid {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.section-header-offset {
    max-width: 680px;
    margin-bottom: 60px;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-offset p {
    font-size: 18px;
    color: #555555;
}

.service-cards-split {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #dfe6e9;
}

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

.service-info {
    flex: 1.3;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #1a252f;
}

.why-us-offset {
    display: flex;
    padding: 100px 5%;
    gap: 80px;
    background-color: #ffffff;
}

.why-content {
    flex: 1.5;
}

.why-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.why-item p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
}

.why-visual {
    flex: 1;
    background-color: #ecf0f1;
}

.why-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-inline {
    padding: 100px 8%;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonials-inline h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 32px 40px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial cite {
    font-size: 15px;
    font-style: normal;
    color: #bdc3c7;
}

.process-visual {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

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

.process-steps-asymmetric {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
    opacity: 0.3;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
}

.cta-form-section {
    padding: 100px 5%;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: #555555;
    margin-bottom: 40px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

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

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

.btn-submit {
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

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

.footer-minimal {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 5% 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: #95a5a6;
    line-height: 1.7;
    max-width: 900px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    padding: 100px 5% 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero-about h1,
.page-hero-services h1,
.page-hero-contact h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-hero-about p,
.page-hero-services p,
.page-hero-contact p {
    font-size: 18px;
    color: #555555;
    max-width: 600px;
    margin: 0 auto;
}

.story-split {
    display: flex;
    padding: 100px 5%;
    gap: 80px;
    align-items: center;
    background-color: #ffffff;
}

.story-text {
    flex: 1.3;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.values-asymmetric {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.values-asymmetric h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-item {
    background-color: #ffffff;
    padding: 36px 28px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

.value-item p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
}

.team-offset {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    background-color: #ffffff;
    align-items: center;
}

.team-intro {
    flex: 1;
}

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

.team-intro p {
    font-size: 17px;
    color: #555555;
    line-height: 1.8;
}

.team-visual {
    flex: 1;
    background-color: #ecf0f1;
}

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

.approach-section {
    padding: 100px 8%;
    background-color: #f8f9fa;
}

.approach-section h2 {
    font-size: 40px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
}

.approach-content p {
    font-size: 17px;
    color: #555555;
    line-height: 1.9;
    margin-bottom: 24px;
}

.cta-simple {
    padding: 100px 5%;
    background-color: #3498db;
    text-align: center;
}

.cta-simple h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-simple p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.services-detailed {
    padding: 80px 5%;
    background-color: #ffffff;
}

.service-full {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

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

.service-visual-left {
    flex: 1;
    background-color: #ecf0f1;
}

.service-visual-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.service-details-right h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-details-right p {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-details-right h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-details-right ul {
    list-style: none;
    margin-bottom: 28px;
}

.service-details-right ul li {
    font-size: 15px;
    color: #555555;
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
}

.service-details-right ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.price-display {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 24px;
}

.additional-info {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.additional-info h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.info-block {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

.info-block p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
}

.contact-layout {
    display: flex;
    padding: 80px 5%;
    gap: 80px;
    background-color: #ffffff;
}

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

.contact-info-offset h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
}

.contact-block .note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 8px;
}

.contact-visual {
    flex: 1;
    background-color: #ecf0f1;
}

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

.faq-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    padding: 28px 32px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.faq-item p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
}

.map-placeholder {
    padding: 80px 5%;
    background-color: #ffffff;
    text-align: center;
}

.map-placeholder h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.map-placeholder p {
    font-size: 16px;
    color: #555555;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-page {
    padding: 120px 5%;
    background-color: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.thanks-service {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 6px;
    margin: 32px 0;
    border-left: 4px solid #3498db;
}

.thanks-service p {
    margin: 0;
    font-size: 16px;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid #dfe6e9;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #3498db;
    color: #3498db;
}

.legal-page {
    padding: 80px 8%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 17px;
    color: #555555;
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    font-size: 15px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0 24px 24px;
}

.legal-page ul li {
    font-size: 15px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-date {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

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

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

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

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

    .intro-asymmetric,
    .why-us-offset,
    .story-split,
    .team-offset,
    .contact-layout,
    .service-full {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column !important;
    }

    .process-steps-asymmetric {
        flex-direction: column;
    }

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

@media (max-width: 640px) {
    .hero-left h1 {
        font-size: 32px;
    }

    .section-header-offset h2,
    .values-asymmetric h2,
    .process-visual h2 {
        font-size: 32px;
    }

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