* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 14px;
}

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

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

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

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

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

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

.header-split {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

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

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

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

.nav-main a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: #f8f9fa;
}

.hero-text-content {
    max-width: 540px;
}

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

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

.hero-right {
    flex: 1;
    min-height: 600px;
}

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

.cta-primary {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

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

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

.intro-image {
    flex: 1;
}

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

.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: #1a1a1a;
    font-weight: 700;
}

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

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

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.section-header-center p {
    font-size: 18px;
    color: #4a5568;
}

.service-card-split {
    display: flex;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-visual {
    flex: 1;
}

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

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

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

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

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

.btn-service {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.form-section-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    background-color: #f8f9fa;
}

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

.form-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-left p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.benefits-list li {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.form-right {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
}

.contact-form {
    max-width: 100%;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

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

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

.disclaimer-section {
    background-color: #ecf0f1;
    padding: 40px;
}

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

.disclaimer-text {
    font-size: 13px;
    color: #5a6c7d;
    line-height: 1.6;
    text-align: center;
}

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

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

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

.thanks-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

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

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

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

.service-confirmation {
    background-color: #e8f5e9;
    padding: 16px;
    border-radius: 6px;
    margin: 20px 0;
}

.service-confirmation p {
    font-size: 15px;
    color: #27ae60;
    margin: 0;
}

.next-steps {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.btn-back {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.page-hero-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 18px;
    color: #bdc3c7;
}

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

.service-detail-card {
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.split-layout {
    display: flex;
}

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

.detail-visual {
    flex: 1;
}

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

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

.detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.feature-list li {
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 20px;
}

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

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

.cta-bottom-content h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.btn-cta-large {
    background-color: #ffffff;
    color: #3498db;
    padding: 16px 48px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

.about-hero-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.about-hero-image {
    flex: 1;
}

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

.about-content-split {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text-block {
    margin-bottom: 60px;
}

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

.about-text-block p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 800px;
}

.about-approach-split {
    display: flex;
    margin-top: 60px;
}

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

.approach-image {
    flex: 1;
}

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

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

.approach-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.team-values-split {
    display: flex;
    padding: 80px 40px;
    background-color: #f8f9fa;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.values-left,
.values-right {
    flex: 1;
}

.values-left h2,
.values-right h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.value-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 700;
}

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

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

.about-process-split {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-content h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.step-card {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

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

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

.about-cta-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.cta-about-left h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.cta-about-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: #34495e;
}

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

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.contact-info-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    gap: 40px;
}

.contact-left {
    flex: 1;
}

.contact-card {
    background-color: #f8f9fa;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.contact-card h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-detail {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.8;
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-right {
    flex: 1;
}

.contact-visual {
    height: 100%;
    min-height: 500px;
}

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

.contact-cta-section {
    background-color: #3498db;
    padding: 80px 40px;
}

.cta-contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-contact-content h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-contact-content p {
    font-size: 17px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

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

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

.legal-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
    font-weight: 700;
}

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

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

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .form-section-split,
    .split-layout,
    .about-hero-split,
    .about-approach-split,
    .team-values-split,
    .about-cta-split,
    .contact-info-split {
        flex-direction: column;
    }

    .service-card-split.reverse,
    .split-layout.reverse,
    .intro-split.reverse,
    .about-approach-split.reverse {
        flex-direction: column;
    }

    .hero-text-content h1,
    .about-hero-text h1,
    .page-hero-content h1 {
        font-size: 32px;
    }

    .section-header-center h2,
    .intro-text h2,
    .about-text-block h2 {
        font-size: 28px;
    }

    .hero-left,
    .form-left,
    .form-right,
    .intro-text,
    .service-info,
    .detail-content,
    .approach-text,
    .cta-about-left,
    .cta-about-right,
    .about-hero-text {
        padding: 40px 30px;
    }

    .header-content {
        padding: 20px;
    }

    .nav-main {
        flex-wrap: wrap;
        gap: 15px;
    }

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

    .step-card {
        min-width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}