* {
    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-disclosure {
    background: #fef3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.split-nav {
    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);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
    max-width: 500px;
}

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

.cta-primary:hover {
    background: #d35400;
}

.hero-image {
    flex: 1;
    background: #34495e;
    overflow: hidden;
}

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

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

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

.intro-image {
    flex: 1;
    background: #ecf0f1;
    overflow: hidden;
}

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

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

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.services-grid {
    padding: 80px 60px;
    background: #f8f9fa;
}

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    height: 220px;
    background: #ecf0f1;
    overflow: hidden;
}

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 12px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.form-split {
    display: flex;
    background: #ffffff;
    min-height: 500px;
}

.form-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #34495e;
    color: #ffffff;
}

.form-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.form-content p {
    font-size: 17px;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    align-items: center;
}

form {
    width: 100%;
    max-width: 500px;
}

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

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

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

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

.form-group input[readonly] {
    background: #ecf0f1;
    color: #2c3e50;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.trust-split {
    display: flex;
    background: #f8f9fa;
    min-height: 500px;
}

.trust-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.testimonial {
    margin-bottom: 35px;
}

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

.testimonial cite {
    font-size: 15px;
    color: #888;
    font-style: normal;
}

.trust-image {
    flex: 1;
    background: #bdc3c7;
    overflow: hidden;
}

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

.cta-banner {
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

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

.cta-content p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: transform 0.3s;
}

.cta-secondary:hover {
    transform: scale(1.05);
}

footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 60px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 40px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

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

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    padding: 25px;
    background: rgba(0,0,0,0.2);
    border-radius: 6px;
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px;
    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;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

.btn-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background: #7f8c8d;
}

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

.contact-info {
    flex: 1;
    padding: 70px 60px;
    background: #f8f9fa;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.contact-visual {
    flex: 1;
    background: #34495e;
    overflow: hidden;
}

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

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 60px;
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.content-section {
    padding: 70px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.content-section h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #34495e;
}

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

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

.content-section li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-content .btn-home {
    display: inline-block;
    padding: 15px 35px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 20px;
    transition: background 0.3s;
}

.thanks-content .btn-home:hover {
    background: #2980b9;
}

@media (max-width: 968px) {
    .split-nav {
        padding: 15px 30px;
    }

    .nav-right {
        gap: 20px;
        font-size: 14px;
    }

    .hero-split,
    .intro-split,
    .form-split,
    .trust-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .form-content,
    .form-container,
    .trust-content,
    .contact-info {
        padding: 50px 30px;
    }

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

    .service-card {
        width: 100%;
    }

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

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