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

.ad-disclosure {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2d3748;
    border-radius: 2px;
    transition: all 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.hero-content p {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 35px;
    max-width: 520px;
}

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

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

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

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 60px;
}

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

.intro-image {
    flex: 1;
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a202c;
    font-weight: 700;
}

.intro-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

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

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

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

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

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card-split {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

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

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

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

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    background: #f9fafb;
    border-radius: 8px;
}

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

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

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

.service-select {
    padding: 14px 28px;
    background: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 16px;
}

.service-select:hover {
    background: #059669;
}

.contact-form-section {
    background: #f3f4f6;
    padding: 100px 60px;
    margin: 100px 0;
}

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 30px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #374151;
}

.benefit-icon {
    color: #10b981;
    font-weight: 700;
    font-size: 20px;
}

.form-wrapper {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    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: #2563eb;
}

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

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

.trust-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 60px;
}

.trust-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a202c;
    font-weight: 700;
}

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

.testimonial-card {
    flex: 1;
    padding: 35px;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1f2937;
    font-size: 15px;
}

.main-footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 60px 40px 20px;
}

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

.footer-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-section p {
    color: #9ca3af;
    font-size: 15px;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background: #374151;
    border-radius: 6px;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    padding: 25px 40px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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 {
    color: #d1d5db;
    font-size: 15px;
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

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

.cookie-btn.accept {
    background: #10b981;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background: #6b7280;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #4b5563;
}

.cookie-link {
    color: #93c5fd;
    text-decoration: none;
    font-size: 14px;
}

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

.page-header-split {
    display: flex;
    min-height: 500px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.header-content h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

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

.header-image {
    flex: 1;
    background: #e5e7eb;
    overflow: hidden;
}

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

.story-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 60px;
}

.story-image {
    flex: 1;
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

.story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a202c;
    font-weight: 700;
}

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

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 60px;
}

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

.values-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a202c;
    font-weight: 700;
}

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

.value-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1f2937;
    font-weight: 700;
}

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

.values-image {
    flex: 1;
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 60px;
}

.approach-header {
    text-align: center;
    margin-bottom: 60px;
}

.approach-header h2 {
    font-size: 38px;
    color: #1a202c;
    font-weight: 700;
}

.approach-steps-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-split {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e5e7eb;
    min-width: 80px;
}

.step-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 700;
}

.step-info p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.cta-section-split {
    background: #2563eb;
    padding: 80px 60px;
    margin: 100px 0;
}

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

.cta-content-center h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-center p {
    font-size: 18px;
    color: #bfdbfe;
    margin-bottom: 35px;
}

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

.cta-content-center .cta-primary:hover {
    background: #f3f4f6;
}

.services-hero {
    background: #f9fafb;
    padding: 100px 60px;
    text-align: center;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.services-hero-content p {
    font-size: 19px;
    color: #4a5568;
}

.services-detailed {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.service-includes {
    margin: 30px 0;
}

.service-includes h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1f2937;
    font-weight: 700;
}

.service-includes ul {
    list-style: none;
    padding: 0;
}

.service-includes li {
    padding: 8px 0 8px 30px;
    color: #4b5563;
    position: relative;
    font-size: 16px;
}

.service-includes li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.service-pricing-block {
    margin-top: 30px;
}

.price-large {
    font-size: 42px;
    font-weight: 700;
    color: #059669;
    margin-bottom: 20px;
}

.service-select-btn {
    padding: 16px 32px;
    background: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 16px;
}

.service-select-btn:hover {
    background: #059669;
}

.service-detail-image {
    flex: 1;
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

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

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

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

.contact-page-header {
    background: #f9fafb;
    padding: 80px 60px;
    text-align: center;
}

.contact-page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.contact-page-header p {
    font-size: 19px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 60px;
}

.contact-split-layout {
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a202c;
    font-weight: 700;
}

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

.contact-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1f2937;
    font-weight: 700;
}

.contact-value {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.contact-image-block {
    flex: 1;
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

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

.contact-additional-info {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 60px;
}

.info-split {
    display: flex;
    gap: 60px;
}

.info-content {
    flex: 1;
}

.info-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.info-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 30px;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-item {
    display: flex;
    gap: 20px;
}

.process-number {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    min-width: 40px;
}

.process-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1f2937;
    font-weight: 700;
}

.process-text p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

.info-image {
    flex: 1;
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

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

.thanks-service-info {
    background: #f3f4f6;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 35px;
    font-size: 16px;
    color: #374151;
}

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

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

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

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

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

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

.legal-container {
    background: #ffffff;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a202c;
    font-weight: 700;
}

.legal-updated {
    color: #6b7280;
    margin-bottom: 40px;
    font-size: 15px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1f2937;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #374151;
    font-weight: 700;
}

.legal-container p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-container ul {
    margin: 15px 0 20px 25px;
}

.legal-container li {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .hero-split,
    .page-header-split {
        flex-direction: column;
    }

    .hero-content,
    .header-content {
        padding: 60px 40px;
    }

    .intro-split,
    .story-split,
    .values-split,
    .service-detail-split,
    .contact-split-layout,
    .info-split {
        flex-direction: column;
    }

    .service-card-split,
    .form-container-split {
        flex-direction: column;
    }

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

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-content h1,
    .services-hero-content h1,
    .contact-page-header h1 {
        font-size: 36px;
    }

    .intro-content h2,
    .story-content h2,
    .values-content h2,
    .service-detail-content h2 {
        font-size: 28px;
    }

    .nav-container,
    .intro-split,
    .story-split,
    .values-split,
    .services-preview,
    .approach-section,
    .services-detailed,
    .contact-info-section,
    .contact-additional-info,
    .legal-page {
        padding: 0 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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