* {
    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: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85em;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
}

.nav-left .logo {
    font-size: 1.5em;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 30px;
}

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

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

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

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

.hero-content h1 {
    font-size: 2.8em;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 1.15em;
    margin-bottom: 30px;
    color: #34495e;
    max-width: 550px;
}

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

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

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #bdc3c7;
}

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

.intro-block {
    flex: 1.3;
    padding: 20px;
}

.intro-block h2 {
    font-size: 2.2em;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-block p {
    font-size: 1.05em;
    margin-bottom: 18px;
    color: #34495e;
}

.intro-visual {
    flex: 0.7;
    overflow: hidden;
    border-radius: 8px;
}

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

.problem-amplification {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    background-color: #ffffff;
}

.problem-left {
    flex: 1;
}

.problem-left h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.problem-left ul li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05em;
    color: #34495e;
}

.problem-left ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.problem-right {
    flex: 1;
    display: flex;
    align-items: center;
}

blockquote {
    background-color: #f8f9fa;
    padding: 40px;
    border-left: 5px solid #3498db;
    font-size: 1.15em;
    line-height: 1.7;
    font-style: italic;
    color: #2c3e50;
}

cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    font-size: 0.9em;
    color: #7f8c8d;
}

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

.services-grid h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 30px);
    min-width: 300px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card-content p {
    font-size: 1em;
    margin-bottom: 15px;
    color: #34495e;
}

.price {
    font-size: 1.8em;
    font-weight: 700;
    color: #27ae60;
    margin-top: 20px;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #2980b9;
}

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

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

.insights-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.insight-item {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.insight-item h3 {
    font-size: 1.7em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.insight-item p {
    font-size: 1.05em;
    color: #34495e;
    line-height: 1.7;
}

.form-section {
    padding: 100px 60px;
    background-color: #2c3e50;
}

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

.form-container h2 {
    font-size: 2.3em;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ecf0f1;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-size: 1em;
    background-color: #ffffff;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials-inline {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.testimonials-inline h2 {
    font-size: 2.3em;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.testimonial-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 15px;
}

.disclaimer-section {
    padding: 60px;
    background-color: #fff3cd;
    border-left: 5px solid #f39c12;
}

.disclaimer-section p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.95em;
    color: #2c3e50;
    line-height: 1.7;
}

.references-section {
    padding: 50px 60px;
    background-color: #ecf0f1;
}

.references-section h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.references-section ol {
    max-width: 900px;
    margin: 0 auto;
}

.references-section ol li {
    margin-bottom: 10px;
    font-size: 0.95em;
    color: #34495e;
}

.references-section a {
    color: #3498db;
    text-decoration: none;
}

.references-section a:hover {
    text-decoration: underline;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col h4 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    font-size: 0.9em;
    color: #95a5a6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 25px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #7f8c8d;
}

.page-hero {
    padding: 80px 60px;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.2em;
    color: #ecf0f1;
}

.about-story {
    display: flex;
    gap: 60px;
    padding: 80px 60px;
    align-items: center;
}

.story-left {
    flex: 1;
}

.story-left h2 {
    font-size: 2.2em;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-left p {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

.story-right {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.philosophy-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

.philosophy-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.phil-block {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
}

.phil-block h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.phil-block p {
    font-size: 1em;
    color: #34495e;
    line-height: 1.6;
}

.team-section {
    padding: 80px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.team-section h2 {
    font-size: 2.2em;
    margin-bottom: 25px;
    color: #2c3e50;
}

.team-section p {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

.values-section {
    padding: 80px 60px;
    background-color: #ecf0f1;
}

.values-section h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.values-list {
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
}

.values-list li {
    padding: 20px;
    margin-bottom: 15px;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
    font-size: 1.05em;
    color: #34495e;
    border-radius: 4px;
}

.services-detailed {
    padding: 60px 40px;
}

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

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-info p {
    font-size: 1.05em;
    margin-bottom: 15px;
    color: #34495e;
    line-height: 1.7;
}

.service-info h3 {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-info ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-info ul li {
    margin-bottom: 10px;
    font-size: 1em;
    color: #34495e;
}

.service-price {
    font-size: 2em;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0;
}

.service-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

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

.comparison-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.comparison-section h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.comparison-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.comp-block {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
}

.comp-block h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.comp-block p {
    font-size: 1em;
    color: #34495e;
    line-height: 1.6;
}

.contact-split {
    display: flex;
    gap: 60px;
    padding: 80px 60px;
}

.contact-info {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 1.4em;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1.05em;
    color: #34495e;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

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

.contact-faq {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.contact-faq h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.faq-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

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

.faq-item p {
    font-size: 1em;
    color: #34495e;
    line-height: 1.6;
}

.thanks-section {
    padding: 100px 60px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.8em;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.15em;
    margin-bottom: 20px;
    color: #34495e;
}

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

.next-steps {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.next-steps h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.steps-blocks {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.step-item {
    flex: 1;
    max-width: 350px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    text-align: center;
}

.step-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #3498db;
}

.step-item p {
    font-size: 1em;
    color: #34495e;
    line-height: 1.6;
}

.legal-page {
    padding: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 1em;
    margin-bottom: 15px;
    color: #34495e;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li,
.legal-page ol li {
    margin-bottom: 10px;
    font-size: 1em;
    color: #34495e;
    line-height: 1.6;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

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

sup a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

sup a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-asymmetric,
    .problem-amplification,
    .about-story,
    .service-detail,
    .contact-split {
        flex-direction: column;
    }

    .hero-content,
    .intro-block,
    .service-info,
    .contact-info {
        padding: 40px 20px;
    }

    .services-grid,
    .insights-section,
    .form-section,
    .testimonials-inline {
        padding: 60px 20px;
    }

    .service-card {
        width: 100%;
    }

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

    .nav-right {
        flex-direction: column;
        gap: 15px;
    }
}