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

.ad-disclosure {
    background-color: #f8f8f8;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

.nav-right a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #1a1a1a;
}

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

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

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

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a4a4a;
    max-width: 560px;
}

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

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #3a3a3a;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid #1a1a1a;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.intro-image {
    flex: 0.8;
    position: relative;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.services-preview {
    padding: 100px 60px;
    background-color: #f5f5f5;
}

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 600;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.service-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    padding: 32px;
}

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

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.cta-center {
    text-align: center;
}

.approach-section {
    padding: 100px 0;
}

.approach-split {
    display: flex;
}

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

.approach-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.approach-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #fafafa;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 600;
}

.step {
    margin-bottom: 32px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 600;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.cta-section {
    padding: 100px 60px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-section > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #cccccc;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 1px solid #3a3a3a;
    background-color: #2a2a2a;
    color: #ffffff;
    font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888888;
}

.contact-form button {
    align-self: center;
    cursor: pointer;
}

footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 60px 20px 60px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

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

.footer-col a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 24px;
    display: none;
    z-index: 1000;
}

.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;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

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

.btn-reject:hover {
    background-color: #3a3a3a;
}

.page-hero {
    padding: 120px 60px 80px 60px;
    background-color: #fafafa;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-hero p {
    font-size: 20px;
    color: #5a5a5a;
}

.about-story {
    padding: 100px 60px;
}

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

.story-text {
    flex: 1;
}

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

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

.story-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.values-section {
    padding: 100px 60px;
    background-color: #f5f5f5;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    padding: 40px;
    background-color: #ffffff;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.team-approach {
    padding: 100px 60px;
}

.approach-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.cta-inline {
    display: inline-block;
    margin-top: 12px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-bottom: 2px solid #1a1a1a;
    transition: opacity 0.3s;
}

.cta-inline:hover {
    opacity: 0.7;
}

.cta-simple {
    padding: 100px 60px;
    text-align: center;
    background-color: #fafafa;
}

.cta-simple h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

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

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

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

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

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

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

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-details > p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 24px;
}

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

.service-features li {
    padding: 10px 0;
    font-size: 16px;
    color: #5a5a5a;
    position: relative;
    padding-left: 24px;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
    font-size: 20px;
}

.pricing-info {
    background-color: #fafafa;
    padding: 24px;
}

.price-tag {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: #666666;
}

.consultation-cta {
    padding: 80px 60px;
    text-align: center;
    background-color: #1a1a1a;
    color: #ffffff;
}

.consultation-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 600;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 600;
}

.info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.no-link {
    cursor: default;
}

.info-note {
    background-color: #f5f5f5;
    padding: 20px;
    margin-top: 32px;
}

.info-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a5a5a;
}

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

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.faq-section {
    padding: 100px 60px;
    background-color: #fafafa;
}

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.faq-item {
    flex: 1 1 calc(50% - 20px);
    padding: 32px;
    background-color: #ffffff;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.thanks-section {
    display: flex;
    min-height: 600px;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
    max-width: 560px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

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

.thanks-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
}

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

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

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #4a4a4a;
}

.legal-page a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-update {
    margin-top: 40px;
    font-style: italic;
    color: #666666;
}

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

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

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #4a4a4a;
}

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

    .nav-right {
        gap: 20px;
    }

    .hero-split,
    .intro-asymmetric,
    .approach-split,
    .story-split,
    .approach-layout,
    .contact-layout,
    .thanks-section {
        flex-direction: column;
    }

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

    .services-grid,
    .values-grid,
    .faq-grid {
        flex-direction: column;
    }

    .service-card,
    .value-item,
    .faq-item {
        flex: 1 1 100%;
    }

    .hero-content,
    .approach-content {
        padding: 60px 30px;
    }

    .hero-content h1,
    .page-hero h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .services-preview,
    .about-story,
    .values-section,
    .team-approach,
    .services-detailed,
    .contact-layout,
    .faq-section,
    .cta-section,
    .cta-simple,
    .consultation-cta {
        padding: 60px 30px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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