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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.header-nav a {
    color: #5a6c7d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.hero-content-left {
    flex: 1;
    padding: 80px 60px;
    background: #f8f9fa;
}

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

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

.hero-image-right {
    flex: 1;
    background-color: #e8f0f7;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

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

.trust-markers {
    background: #1a252f;
    padding: 50px 20px;
}

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

.marker-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.marker-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

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

.marker-label {
    font-size: 16px;
    color: #cbd5e0;
}

.intro-section {
    padding: 100px 20px;
}

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

.content-left-narrow {
    flex: 1;
}

.content-left-narrow h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

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

.content-right-wide {
    flex: 1;
    background-color: #f0f4f8;
}

.content-right-wide img {
    width: 100%;
    height: auto;
    display: block;
}

.services-pricing {
    padding: 100px 20px;
    background: #f8f9fa;
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
}

.services-pricing h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a252f;
}

.services-split-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-image-bg {
    width: 100%;
    height: 220px;
}

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

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a252f;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
    display: block;
}

.btn-select {
    padding: 14px 28px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 16px;
}

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

.form-section {
    padding: 80px 20px;
    background: #ffffff;
}

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

.claim-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.form-row label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-row input,
.form-row textarea {
    padding: 14px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #3498db;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.testimonials-inline {
    padding: 100px 20px;
    background: #1a252f;
}

.testimonials-inline h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #ffffff;
}

.testimonial-item {
    background: #2c3e50;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial-item p {
    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e0;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: #3498db;
    font-weight: 600;
}

.disclaimer-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    text-align: center;
}

.footer-main {
    background: #1a252f;
    padding: 60px 20px 20px;
}

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

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

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

.footer-col a {
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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: 30px;
}

.cookie-content p {
    color: #ffffff;
    font-size: 15px;
    flex: 1;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie-accept {
    background: #3498db;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background: #4a5568;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background: #2c3e50;
}

.page-header {
    background: #1a252f;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 16px;
}

.page-header p {
    color: #cbd5e0;
    font-size: 18px;
}

.content-section {
    padding: 80px 20px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.content-section h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.content-section ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #4a5568;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

.service-item-full {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.service-item-full:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item-image {
    flex: 1;
    background-color: #f0f4f8;
}

.service-item-image img {
    width: 100%;
    height: 280px;
    border-radius: 6px;
}

.service-item-content {
    flex: 1;
}

.service-item-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a252f;
}

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

.service-item-price {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

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

.contact-info {
    flex: 1;
}

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

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

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

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

.contact-map {
    flex: 1;
    background-color: #e8f0f7;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    text-align: center;
    padding: 100px 20px;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a252f;
}

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

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        padding: 20px;
    }

    .header-nav {
        margin-top: 20px;
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-content-left {
        padding: 40px 20px;
    }

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

    .marker-grid {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .service-item-full {
        flex-direction: column !important;
    }

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
}