* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

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

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

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

.hero-left p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background: #eceff1;
    position: relative;
}

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

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

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

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

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

.split-image {
    flex: 1;
    background: #eceff1;
}

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

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

.split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

.split-content p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.link-arrow {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    display: inline-block;
    transition: transform 0.3s;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.services-intro {
    background: #f8f9fa;
    padding: 80px 40px;
}

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

.section-header-centered h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a252f;
}

.section-header-centered p {
    font-size: 18px;
    color: #546e7a;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

.service-card.large {
    flex: 1 1 calc(66.666% - 20px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #eceff1;
}

.service-card h3 {
    padding: 25px 25px 10px;
    font-size: 22px;
    color: #1a252f;
}

.service-card p {
    padding: 0 25px 20px;
    color: #546e7a;
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.price-tag {
    padding: 0 25px 15px;
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
}

.btn-select-service {
    margin: 0 25px 25px;
    padding: 14px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

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

.form-left-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a252f;
}

.form-left-content p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.benefit-item {
    font-size: 16px;
    color: #27ae60;
    font-weight: 600;
}

.form-right {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

.service-display {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.service-display .label {
    font-weight: 600;
    color: #1976d2;
    margin-right: 10px;
}

.service-display .value {
    color: #1a252f;
    font-weight: 500;
}

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

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #cfd8dc;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.trust-section {
    background: #eceff1;
    padding: 80px 40px;
}

.trust-content-centered {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

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

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

.main-footer {
    background: #263238;
    color: #eceff1;
    padding: 60px 40px 30px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a {
    color: #b0bec5;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #37474f;
    color: #90a4ae;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #263238;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #64b5f6;
    text-decoration: underline;
}

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

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

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

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

.cookie-btn.reject {
    background: #546e7a;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #455a64;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-details {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
}

.thanks-details h3 {
    margin-bottom: 15px;
    color: #1a252f;
}

.detail-row {
    padding: 10px 0;
    border-bottom: 1px solid #eceff1;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #546e7a;
    margin-right: 10px;
}

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

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

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

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

    .form-container-split {
        flex-direction: column;
        gap: 40px;
    }

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

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

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