* {
    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-disclosure {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
}

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

.nav-left .brand {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

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

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

.nav-right a:hover {
    color: #007bff;
}

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

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

.hero-left h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.7;
    color: #ecf0f1;
}

.hero-right {
    flex: 1;
    background-color: #95a5a6;
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #2c3e50;
    cursor: pointer;
    font-size: 16px;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

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

.content-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

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

.content-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.content-text a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.content-text a:hover {
    text-decoration: underline;
}

.insight-panel {
    padding: 70px 100px;
    background-color: #ecf0f1;
}

.panel-content {
    max-width: 900px;
    margin: 0 auto;
}

.panel-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.panel-content p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.8;
    color: #495057;
}

.services-split {
    padding: 80px 40px;
    background-color: #ffffff;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 18px;
    color: #6c757d;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    padding: 35px 30px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
}

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

.service-card p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #495057;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 80px 40px;
    background-color: #2c3e50;
}

.form-container-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.form-left h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.form-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #ecf0f1;
}

.form-right {
    flex: 1;
}

.form-right form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-right input,
.form-right select,
.form-right textarea {
    padding: 14px 16px;
    border: 1px solid #95a5a6;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
}

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

.btn-submit {
    padding: 14px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.testimonial-content {
    flex: 1;
    padding: 60px 50px;
    background-color: #ecf0f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content blockquote {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.testimonial-image {
    flex: 1;
    background-color: #95a5a6;
}

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

.research-basis {
    padding: 70px 100px;
    background-color: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
}

.research-basis h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.research-basis p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #495057;
}

.research-basis a {
    color: #3498db;
    text-decoration: none;
}

.research-basis a:hover {
    text-decoration: underline;
}

.footer-split {
    display: flex;
    padding: 50px 40px;
    background-color: #34495e;
    color: #ecf0f1;
}

.footer-left {
    flex: 1;
}

.footer-left h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 14px;
    color: #bdc3c7;
}

.footer-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-center a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
}

.footer-center a:hover {
    color: #3498db;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-right p {
    font-size: 14px;
    margin-bottom: 5px;
    color: #bdc3c7;
}

.references {
    padding: 40px 100px;
    background-color: #f8f9fa;
    max-width: 1000px;
    margin: 0 auto;
}

.references h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.references ol {
    margin-left: 20px;
}

.references li {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #495057;
}

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

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

.disclaimer {
    padding: 30px 100px;
    background-color: #fff3cd;
    border-top: 2px solid #ffc107;
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #856404;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px 40px;
    display: none;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

.cookie-banner p {
    flex: 1;
    margin-right: 20px;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

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

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

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

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

.about-left {
    flex: 1;
    background-color: #95a5a6;
}

.about-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-right {
    flex: 1;
    padding: 60px 50px;
    background-color: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-right h1 {
    font-size: 42px;
    margin-bottom: 25px;
}

.about-right p {
    font-size: 18px;
    line-height: 1.7;
    color: #ecf0f1;
}

.story-section {
    padding: 70px 100px;
    background-color: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

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

.team-text {
    flex: 1;
    padding: 60px 50px;
    background-color: #ecf0f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.team-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #495057;
}

.team-image {
    flex: 1;
    background-color: #95a5a6;
}

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

.values-panel {
    padding: 70px 40px;
    background-color: #ffffff;
}

.values-panel h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 30px;
}

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

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

.cta-about {
    padding: 80px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 30px;
}

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

.services-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.services-hero p {
    font-size: 18px;
    color: #ecf0f1;
}

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

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

.detail-left {
    flex: 1;
    padding: 60px 50px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.detail-left p {
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.7;
    color: #495057;
}

.detail-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-right {
    flex: 1;
    background-color: #95a5a6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
}

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

.detail-right p {
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.7;
    color: #495057;
}

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

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.services-cta {
    padding: 70px 40px;
    background-color: #ecf0f1;
    text-align: center;
}

.services-cta h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-cta p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #495057;
}

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

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 18px;
    color: #ecf0f1;
}

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

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

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

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

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

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

.contact-image {
    flex: 1;
    background-color: #95a5a6;
}

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

.location-info {
    padding: 70px 100px;
    background-color: #f8f9fa;
    max-width: 1000px;
    margin: 0 auto;
}

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

.location-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #495057;
}

.thanks-container {
    display: flex;
    min-height: 500px;
    padding: 80px 40px;
}

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

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

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

.service-confirm {
    padding: 20px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin-bottom: 25px;
}

.service-confirm p {
    margin-bottom: 0;
    color: #155724;
}

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

.thanks-image {
    flex: 1;
    background-color: #95a5a6;
}

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

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

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

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

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

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

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

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

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

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

.legal-page em {
    color: #6c757d;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-split,
    .split-reverse,
    .testimonial-split,
    .about-hero-split,
    .team-split,
    .service-detail-split,
    .contact-split,
    .thanks-container,
    .form-container-split {
        flex-direction: column;
    }

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

    .services-grid {
        flex-direction: column;
    }

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

    .footer-split {
        flex-direction: column;
        gap: 30px;
    }

    .footer-right {
        text-align: left;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-banner p {
        margin-right: 0;
    }

    .hero-left,
    .content-text,
    .team-text,
    .detail-left,
    .detail-right,
    .about-right,
    .contact-info,
    .thanks-content {
        padding: 40px 30px;
    }

    .panel-content,
    .research-basis,
    .story-section,
    .location-info,
    .references,
    .disclaimer,
    .legal-page {
        padding: 40px 30px;
    }

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

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