* {
    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: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #ffffff;
    box-shadow: 0 2px 8px 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: 30px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    padding: 0;
}

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

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

.hero-left p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-right {
    flex: 1;
    background: #dfe6ed;
    overflow: hidden;
}

.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;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

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

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

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

.split-text {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.split-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.split-image {
    flex: 1;
    background: #e8eef3;
    overflow: hidden;
}

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

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

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

.stats-split {
    display: flex;
    padding: 60px 5%;
    background: #2c3e50;
    justify-content: space-around;
}

.stat-card {
    text-align: center;
    color: #ffffff;
}

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

.stat-card p {
    font-size: 16px;
    color: #ecf0f1;
}

.testimonials-section {
    padding: 80px 5%;
    background: #f8f9fa;
}

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

.testimonials-grid {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.services-select {
    padding: 80px 5%;
    background: #ffffff;
}

.services-intro {
    text-align: center;
    margin-bottom: 48px;
}

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

.services-intro p {
    font-size: 17px;
    color: #5a6c7d;
}

.contact-form-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 48px;
    background: #f8f9fa;
    padding: 48px;
    border-radius: 8px;
}

.form-left,
.form-right {
    flex: 1;
}

.form-left h3,
.form-right h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #1a252f;
}

.form-left input,
.form-left textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid #dfe6ed;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.service-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #ffffff;
    border: 2px solid #e8eef3;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.service-option:hover {
    border-color: #3498db;
    background: #f8fbfd;
}

.service-option input[type="radio"] {
    margin-right: 12px;
}

.service-name {
    flex: 1;
    font-weight: 600;
    color: #2c3e50;
}

.service-price {
    color: #3498db;
    font-weight: 700;
    font-size: 16px;
}

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

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

.disclaimer-section {
    background: #ecf0f1;
}

.disclaimer-text {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.8;
    padding: 16px;
    background: #ffffff;
    border-left: 4px solid #e67e22;
}

.footer-split {
    display: flex;
    padding: 60px 5%;
    background: #1a252f;
    color: #ecf0f1;
    gap: 48px;
}

.footer-column {
    flex: 1;
}

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

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

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 24px 5%;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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: 32px;
}

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

.cookie-content a {
    color: #3498db;
}

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

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

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

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

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

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

.page-hero-split {
    display: flex;
    min-height: 400px;
}

.page-hero-split .hero-left {
    background: #3498db;
    color: #ffffff;
}

.page-hero-split .hero-left h1 {
    color: #ffffff;
}

.page-hero-split .hero-left p {
    color: #ecf0f1;
}

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

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

.values-grid {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.value-card p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-detailed {
    padding: 40px 5%;
}

.service-detail-split {
    display: flex;
    margin-bottom: 80px;
    gap: 48px;
    align-items: center;
}

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

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.service-detail-left h2,
.service-detail-right h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a252f;
}

.service-price-large {
    font-size: 28px;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 24px;
}

.service-detail-left p,
.service-detail-right p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-top: 24px;
}

.service-features li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: #34495e;
    font-size: 15px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-detail-left img,
.service-detail-right img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.cta-section-split {
    display: flex;
    padding: 60px 5%;
    background: #f8f9fa;
    align-items: center;
    gap: 48px;
}

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a252f;
}

.cta-left p {
    font-size: 17px;
    color: #5a6c7d;
}

.cta-right {
    flex: 0 0 auto;
}

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

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

.contact-split {
    display: flex;
    padding: 80px 5%;
    gap: 48px;
}

.contact-info {
    flex: 1;
}

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

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

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

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

.contact-map {
    flex: 1;
    background: #e8eef3;
    border-radius: 8px;
    overflow: hidden;
}

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

.thanks-split {
    display: flex;
    min-height: 600px;
    padding: 80px 5%;
    gap: 48px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin-bottom: 32px;
}

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

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.thanks-service {
    font-size: 16px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 24px;
}

.thanks-info {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

.btn-secondary {
    background: #ecf0f1;
    color: #2c3e50;
}

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

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

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a252f;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-page ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-page li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-update {
    margin-top: 40px;
    font-size: 14px;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .hero-split,
    .content-split,
    .contact-form-split,
    .stats-split,
    .testimonials-grid,
    .values-grid,
    .service-detail-split,
    .cta-section-split,
    .contact-split,
    .thanks-split,
    .footer-split,
    .cookie-content {
        flex-direction: column;
    }

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

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

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

    .split-text h2 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 42px;
    }
}