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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-right a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #718096;
    padding: 4px 10px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    background: #f7fafc;
}

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

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

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

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

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #2d3748;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: #4a5568;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #2d3748;
}

.cta-text {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #cbd5e0;
    padding-bottom: 2px;
    transition: border-color 0.3s;
}

.cta-text:hover {
    border-bottom-color: #2d3748;
}

.intro-section {
    padding: 80px 0;
    background: #ffffff;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.intro-section p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.services-split {
    background: #ffffff;
}

.service-item {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

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

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

.service-text h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a202c;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin: 24px 0;
}

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

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

.btn-select {
    padding: 14px 28px;
    background: #2d3748;
    color: #ffffff;
    border: none;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-select:hover {
    background: #1a202c;
}

.value-section {
    padding: 80px 0;
    background: #2d3748;
    color: #ffffff;
}

.value-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

.value-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

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

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

.form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a202c;
}

.form-intro {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
}

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

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

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

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

.btn-submit {
    padding: 16px 40px;
    background: #2d3748;
    color: #ffffff;
    border: none;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

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

.trust-section {
    padding: 80px 0;
    background: #ffffff;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a202c;
}

.testimonials {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 32px;
    background: #f7fafc;
    border-left: 4px solid #2d3748;
}

.testimonial p {
    font-size: 17px;
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #718096;
    font-style: normal;
}

.footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #a0aec0;
    margin-bottom: 10px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    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;
    margin: 0;
    font-size: 15px;
}

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

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

.btn-accept {
    background: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background: #38a169;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #cbd5e0;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-hero {
    padding: 80px 0 60px;
    background: #f7fafc;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a202c;
}

.hero-subtitle {
    font-size: 20px;
    color: #4a5568;
}

.about-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

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

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

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

.about-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a202c;
}

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

.approach-section {
    padding: 80px 0;
    background: #ffffff;
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.approach-section > p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 48px;
}

.criteria-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.criteria-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d3748;
}

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

.process-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

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

.process-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a202c;
}

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

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

.process-steps li {
    font-size: 17px;
    color: #2d3748;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

.process-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a5568;
    font-weight: 700;
}

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

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

.values-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background: #f7fafc;
    border-top: 4px solid #2d3748;
}

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

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

.cta-simple {
    padding: 80px 0;
    background: #2d3748;
    text-align: center;
    color: #ffffff;
}

.cta-simple h2 {
    font-size: 36px;
    margin-bottom: 32px;
}

.cta-simple .cta-primary {
    background: #ffffff;
    color: #2d3748;
}

.cta-simple .cta-primary:hover {
    background: #f7fafc;
}

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

.service-detail {
    display: flex;
    min-height: 600px;
    align-items: stretch;
    margin-bottom: 80px;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a202c;
}

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

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

.service-detail-content h4 {
    font-size: 20px;
    color: #2d3748;
    margin-top: 32px;
    margin-bottom: 12px;
}

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 32px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.services-faq {
    padding: 80px 0;
    background: #ffffff;
}

.services-faq h2 {
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a202c;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 12px;
}

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

.cta-services {
    padding: 80px 0;
    background: #f7fafc;
    text-align: center;
}

.cta-services h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a202c;
}

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

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

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

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

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

.contact-block h4 {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 600;
}

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

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

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

.contact-details {
    padding: 80px 0;
    background: #ffffff;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a202c;
}

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

.contact-checklist {
    list-style: none;
    padding-left: 0;
    margin: 24px 0;
}

.contact-checklist li {
    font-size: 16px;
    color: #2d3748;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.contact-checklist li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a5568;
    font-size: 20px;
}

.contact-approach {
    padding: 80px 0;
    background: #f7fafc;
}

.contact-approach h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a202c;
}

.approach-steps {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #2d3748;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3748;
}

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

.thanks-hero {
    padding: 100px 0;
    background: #f7fafc;
    text-align: center;
}

.thanks-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a202c;
}

.thanks-message {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 48px;
}

.thanks-details {
    margin: 48px 0;
}

.submission-summary {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #48bb78;
}

.submission-summary h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a202c;
}

.selected-service {
    font-size: 20px;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 8px;
}

.selected-price {
    font-size: 28px;
    color: #48bb78;
    font-weight: 700;
}

.thanks-next {
    margin: 60px 0;
    text-align: left;
}

.thanks-next h3 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #1a202c;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.next-step {
    padding: 24px;
    background: #ffffff;
    border-radius: 6px;
}

.next-step strong {
    display: block;
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 8px;
}

.next-step p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.thanks-contact {
    margin: 48px 0;
    padding: 24px;
    background: #ffffff;
    border-radius: 6px;
}

.thanks-contact p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
}

.thanks-contact strong {
    color: #2d3748;
}

.thanks-cta {
    margin-top: 48px;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 60px 0 80px;
    background: #ffffff;
}

.legal-intro {
    font-size: 14px;
    color: #718096;
    margin-bottom: 40px;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a202c;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #1a202c;
}

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

.legal-page h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 10px;
    color: #2d3748;
}

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

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

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

.legal-page a {
    color: #2d3748;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1a202c;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: #ffffff;
}

.legal-table th {
    background: #f7fafc;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #2d3748;
    border-bottom: 2px solid #cbd5e0;
}

.legal-table td {
    padding: 12px;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    font-size: 15px;
}

.legal-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 968px) {
    .hero-split,
    .service-item,
    .about-split,
    .process-split,
    .service-detail,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-content,
    .service-text,
    .about-text,
    .process-text,
    .service-detail-content,
    .contact-info {
        padding: 40px 30px;
    }

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

    .hero-image,
    .service-image,
    .about-image,
    .process-image,
    .service-detail-image,
    .contact-image {
        min-height: 300px;
    }

    .value-grid,
    .testimonials,
    .values-grid,
    .approach-steps {
        flex-direction: column;
    }

    .nav-right {
        gap: 16px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .service-text h3,
    .about-text h2,
    .process-text h2,
    .service-detail-content h2 {
        font-size: 26px;
    }

    .value-section h2,
    .trust-section h2,
    .approach-section h2,
    .values-section h2,
    .services-faq h2,
    .cta-services h2,
    .contact-approach h2 {
        font-size: 28px;
    }

    .thanks-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .thanks-cta a {
        text-align: center;
    }
}
