* {
    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: #333;
    background: #fff;
}

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

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

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

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

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 32px;
}

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

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

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

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

.split-intro {
    display: flex;
    align-items: stretch;
}

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

.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: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 16px;
}

.benefits-grid {
    padding: 80px 60px;
    background: #f8f9fa;
}

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

.benefits-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.benefit-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.services-preview-split {
    display: flex;
    align-items: stretch;
}

.services-text {
    flex: 1;
    padding: 80px 60px;
    background: #fff;
}

.services-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.services-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 24px;
}

.service-list {
    list-style: none;
    margin: 24px 0 32px 0;
}

.service-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    font-size: 17px;
    color: #444;
}

.service-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.link-arrow {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
}

.link-arrow:hover {
    text-decoration: underline;
}

.services-visual {
    flex: 1;
    overflow: hidden;
    display: flex;
}

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

.form-section {
    padding: 80px 60px;
    background: #f8f9fa;
    max-width: 900px;
    margin: 0 auto;
}

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

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.inquiry-form {
    background: #fff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    flex: 1;
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

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

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

.trust-split {
    display: flex;
    align-items: stretch;
}

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

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

.trust-content {
    flex: 1;
    padding: 80px 60px;
    background: #fff;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.trust-content blockquote {
    margin-bottom: 32px;
    padding-left: 24px;
    border-left: 4px solid #3498db;
}

.trust-content blockquote p {
    font-size: 18px;
    font-style: italic;
    color: #444;
    margin-bottom: 8px;
}

.trust-content cite {
    font-size: 15px;
    color: #777;
    font-style: normal;
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #fff;
}

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

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

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

.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: 24px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

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

.disclaimer {
    font-size: 13px;
    color: #7f8c8d;
    max-width: 800px;
    margin: 16px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 24px;
    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;
}

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

.cookie-content a {
    color: #3498db;
}

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

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

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

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

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

.cookie-btn.reject:hover {
    background: #6c7a89;
}

.page-header {
    padding: 80px 60px 60px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.services-detailed {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    margin-bottom: 80px;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

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

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

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

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

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
}

.service-pricing {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid #e8e8e8;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    display: block;
    margin-bottom: 4px;
}

.price-note {
    font-size: 15px;
    color: #777;
}

.service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
}

.service-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.pricing-note {
    padding: 80px 60px;
    text-align: center;
    background: #f8f9fa;
}

.pricing-note h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pricing-note p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 32px;
}

.about-split {
    display: flex;
    align-items: stretch;
    padding: 80px 0;
}

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

.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-visual {
    flex: 1;
    overflow: hidden;
    display: flex;
}

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

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

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

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

.value-item {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

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

.approach-split {
    display: flex;
    align-items: stretch;
    padding: 80px 0;
}

.approach-split.reverse {
    flex-direction: row-reverse;
}

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

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

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

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.approach-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.team-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.team-intro {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 60px;
}

.team-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.8;
}

.mission-split {
    display: flex;
    align-items: stretch;
    padding: 80px 0;
}

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

.mission-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.mission-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.mission-visual {
    flex: 1;
    overflow: hidden;
    display: flex;
}

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

.cta-section {
    padding: 80px 60px;
    text-align: center;
    background: #f8f9fa;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.contact-split {
    display: flex;
    align-items: stretch;
    padding: 60px 0;
}

.contact-info {
    flex: 1;
    padding: 60px;
}

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

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

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

.contact-block p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

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

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

.location-section {
    padding: 80px 60px;
    background: #f8f9fa;
    max-width: 900px;
    margin: 0 auto;
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.location-section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

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

.thanks-container {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-confirmation {
    background: #e8f5e9;
    padding: 16px 24px;
    border-radius: 6px;
    margin-bottom: 32px;
    display: none;
}

.service-confirmation p {
    font-size: 16px;
    color: #2c3e50;
}

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

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 16px 0 16px 48px;
    position: relative;
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 12px;
    width: 32px;
    height: 32px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

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

.btn-primary {
    padding: 14px 28px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

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

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

.btn-secondary:hover {
    background: #bdc3c7;
}

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

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

.additional-resources {
    padding: 80px 60px;
    background: #f8f9fa;
}

.additional-resources h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.resource-card {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.resource-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.resource-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.resource-link:hover {
    text-decoration: underline;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-date {
    font-size: 16px;
    color: #777;
    margin-bottom: 40px;
}

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

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

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

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

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

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

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

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

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

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

.cookies-table td {
    font-size: 15px;
    color: #555;
}

@media (max-width: 768px) {
    .hero-split,
    .split-intro,
    .services-preview-split,
    .trust-split,
    .split-layout,
    .about-split,
    .approach-split,
    .mission-split,
    .contact-split,
    .thanks-container {
        flex-direction: column;
    }

    .split-layout.reverse,
    .approach-split.reverse {
        flex-direction: column;
    }

    .benefits-container,
    .values-grid,
    .team-stats,
    .resources-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 16px;
    }

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

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

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

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