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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.ad-disclosure {
    background-color: #fef3c7;
    color: #78350f;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #fcd34d;
}

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

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
}

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

.nav-right a {
    font-size: 16px;
    font-weight: 500;
    color: #4a5568;
    position: relative;
}

.nav-right a:hover {
    color: #2d3748;
}

.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3182ce;
    transition: width 0.3s ease;
}

.nav-right a:hover::after {
    width: 100%;
}

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

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

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

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 540px;
}

.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 32px;
    background-color: #3182ce;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.cta-primary:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: #3182ce;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #3182ce;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.cta-secondary:hover {
    background-color: #3182ce;
    color: #ffffff;
    transform: translateY(-2px);
}

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

.intro-visual {
    flex: 1;
    overflow: hidden;
}

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

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

.intro-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.services-grid {
    padding: 80px 60px;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

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

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

.service-card {
    flex: 0 1 calc(33.333% - 24px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #3182ce;
    margin-bottom: 16px;
}

.select-service {
    width: 100%;
    padding: 12px 24px;
    background-color: #edf2f7;
    color: #2d3748;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #3182ce;
    color: #ffffff;
}

.cta-split {
    display: flex;
    min-height: 400px;
}

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

.cta-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.cta-visual {
    flex: 1;
    overflow: hidden;
}

.cta-visual img {
    width: 100%;
    height: 100%;
}

.form-section {
    padding: 80px 60px;
    background-color: #f7fafc;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.form-container > p {
    font-size: 16px;
    color: #718096;
    margin-bottom: 32px;
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

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

.btn-submit:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

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

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

.trust-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
}

.trust-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 17px;
    color: #2d3748;
    padding: 12px 0 12px 28px;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: 700;
    font-size: 18px;
}

.trust-visual {
    flex: 1;
    overflow: hidden;
}

.trust-visual img {
    width: 100%;
    height: 100%;
}

.split-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 40px 24px;
}

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

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

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

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

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

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

.footer-col ul li a {
    font-size: 14px;
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3182ce;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 24px;
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #a0aec0;
    margin-bottom: 16px;
}

.footer-bottom p {
    font-size: 14px;
    color: #718096;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 24px 40px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

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

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

.cookie-btn.accept {
    background-color: #3182ce;
    color: #ffffff;
}

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

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

.cookie-btn.reject:hover {
    background-color: #4a5568;
}

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

.story-split {
    display: flex;
    min-height: 450px;
}

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

.story-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.story-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.story-visual {
    flex: 1;
    overflow: hidden;
}

.story-visual img {
    width: 100%;
    height: 100%;
}

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

.values-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 48px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.value-item {
    flex: 0 1 calc(50% - 16px);
    min-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

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

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

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

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

.approach-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.team-section {
    padding: 80px 60px;
    background-color: #edf2f7;
    text-align: center;
}

.team-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.team-intro {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

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

.service-info h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

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

.service-features li {
    font-size: 16px;
    color: #2d3748;
    padding: 10px 0 10px 28px;
    position: relative;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: 700;
}

.service-pricing {
    margin-bottom: 24px;
}

.price-label {
    font-size: 14px;
    color: #718096;
    margin-right: 8px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #3182ce;
}

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

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

.process-section {
    padding: 80px 60px;
    background-color: #f7fafc;
}

.process-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 48px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3182ce;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

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

.cta-full h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background-color: #f7fafc;
}

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

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

.info-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.email-text {
    color: #4a5568;
    font-weight: 500;
}

.response-time {
    font-size: 14px;
    color: #718096;
    font-style: italic;
}

.contact-map {
    flex: 1;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
}

.approach-info {
    padding: 80px 60px;
    background-color: #ffffff;
}

.approach-info h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 48px;
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 260px;
    padding: 32px;
    background-color: #f7fafc;
    border-radius: 8px;
}

.step-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

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

.faq-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 48px;
}

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

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

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

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.service-confirmation {
    font-weight: 600;
    color: #3182ce;
}

.next-steps {
    margin-bottom: 32px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

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

.what-happens {
    padding: 80px 60px;
    background-color: #ffffff;
}

.what-happens h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 48px;
}

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

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.timeline-marker {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #3182ce;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

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

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.updated {
    font-size: 14px;
    color: #718096;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2d3748;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 8px;
}

.legal-content a {
    color: #3182ce;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2c5282;
}

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

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

.cookie-table th {
    background-color: #f7fafc;
    font-weight: 700;
    color: #1a202c;
}

.cookie-table td {
    font-size: 15px;
    color: #4a5568;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .cta-split,
    .trust-split,
    .story-split,
    .approach-split,
    .service-detail-split,
    .contact-split,
    .thanks-split,
    .page-hero-split {
        flex-direction: column;
    }

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

    .hero-content,
    .intro-text,
    .cta-content,
    .trust-text,
    .story-text,
    .approach-text,
    .service-info,
    .contact-info,
    .thanks-content {
        padding: 48px 32px;
    }

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

    .nav-right {
        gap: 20px;
    }

    .service-cards {
        flex-direction: column;
    }

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

    .footer-main {
        flex-direction: column;
    }

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

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

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

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