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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px 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: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #60a5fa;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #2563eb;
    color: white;
}

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

.btn-reject {
    background-color: #444;
    color: white;
}

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

.header-split {
    display: flex;
    border-bottom: 1px solid #e8e8e8;
}

.header-left {
    flex: 1;
    padding: 25px 40px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
}

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

.header-right {
    flex: 1;
    padding: 25px 40px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ad-notice {
    font-size: 13px;
    color: #888;
    padding: 5px 12px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

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

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

.nav-horizontal a:hover {
    color: #2563eb;
}

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

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

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

.hero-right h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-right p {
    font-size: 19px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-primary {
    background-color: #2563eb;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #1d4ed8;
}

.cta-secondary {
    background-color: #1a1a1a;
    color: white;
    padding: 14px 35px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #333;
}

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

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

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

.split-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.3;
}

.split-text p {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.services-grid {
    padding: 100px 40px;
    background-color: #fafbfc;
}

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

.section-intro h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-intro p {
    font-size: 19px;
    color: #666;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

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

.card-content {
    padding: 35px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.card-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 16px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.btn-select {
    background-color: #1a1a1a;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 100px 40px;
    background-color: #f7f9fc;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a1a;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    width: 100%;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    background-color: #2563eb;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials-split {
    display: flex;
    background-color: #ffffff;
}

.testimonial-item {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
    border-left: 5px solid #2563eb;
}

.testimonial-item:first-child {
    background-color: #ffffff;
}

.testimonial-item blockquote {
    font-size: 19px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-item cite {
    font-weight: 600;
    color: #666;
    font-size: 15px;
    font-style: normal;
}

.footer-split {
    display: flex;
    background-color: #1a1a1a;
    color: #ffffff;
}

.footer-left {
    flex: 1;
    padding: 60px;
    background-color: #1a1a1a;
}

.footer-right {
    flex: 1;
    padding: 60px;
    background-color: #2a2a2a;
}

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-tagline {
    color: #aaa;
    margin-bottom: 30px;
    font-size: 16px;
}

.disclaimer {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-top: 30px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

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

.page-hero-split {
    display: flex;
    min-height: 350px;
    align-items: center;
    justify-content: center;
    background-color: #f7f9fc;
    padding: 60px 40px;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 20px;
    color: #666;
}

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

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 60px;
}

.service-split {
    display: flex;
    min-height: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

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

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

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

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

.price-tag {
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 25px;
}

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

.service-info ul {
    margin: 25px 0;
    padding-left: 20px;
}

.service-info ul li {
    margin-bottom: 12px;
    color: #444;
    line-height: 1.6;
}

.process-section {
    padding: 100px 40px;
    background-color: #f7f9fc;
}

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

.process-steps {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.process-step p {
    color: #666;
    line-height: 1.7;
}

.cta-section {
    padding: 100px 40px;
    background-color: #2563eb;
    text-align: center;
}

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

.cta-section p {
    font-size: 19px;
    color: #e0e7ff;
    margin-bottom: 35px;
}

.cta-section .cta-primary {
    background-color: #ffffff;
    color: #2563eb;
}

.cta-section .cta-primary:hover {
    background-color: #f0f0f0;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

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

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

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

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

.email-display {
    font-weight: 500;
    color: #2563eb;
}

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

.info-section {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
    background-color: #f7f9fc;
}

.info-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.thanks-section {
    padding: 120px 40px;
    background-color: #f7f9fc;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.thanks-icon {
    font-size: 64px;
    color: #10b981;
    margin-bottom: 25px;
}

.thanks-container h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-confirmation {
    background-color: #f0fdf4;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

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

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    background-color: #1a1a1a;
    color: white;
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #333;
}

.next-steps {
    padding: 100px 40px;
    background-color: #ffffff;
}

.next-steps h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.step-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 25px;
}

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

.step-card p {
    color: #666;
    line-height: 1.7;
}

.values-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.legal-content {
    padding: 80px 40px;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.legal-container ul,
.legal-container ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-container li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-split,
    .content-split,
    .testimonials-split,
    .footer-split,
    .service-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right,
    .split-text,
    .split-visual {
        min-height: 400px;
    }

    .header-split {
        flex-direction: column;
    }

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

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

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

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

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