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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-primary,
.btn-secondary {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

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

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.hero-text {
    max-width: 600px;
}

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

.hero-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
}

.btn-hero {
    display: inline-block;
    padding: 16px 32px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52,152,219,0.3);
}

.hero-right {
    background-color: #34495e;
    overflow: hidden;
}

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

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

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

.info-image,
.info-content {
    flex: 1;
}

.info-image {
    background-color: #95a5a6;
    overflow: hidden;
}

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

.info-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

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

.info-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
}

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

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

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 18px;
    color: #666;
}

.service-card-split {
    display: flex;
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-height: 350px;
}

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

.service-image,
.service-info {
    flex: 1;
}

.service-image {
    background-color: #bdc3c7;
    overflow: hidden;
}

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

.service-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

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

.btn-select-service {
    padding: 14px 28px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52,152,219,0.3);
}

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

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

.form-left {
    padding: 80px 60px;
    background-color: #34495e;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.form-left p {
    font-size: 17px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    font-size: 20px;
    color: #27ae60;
}

.form-right {
    padding: 80px 60px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
}

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

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

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

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

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

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

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52,152,219,0.3);
}

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

.trust-content,
.trust-image {
    flex: 1;
}

.trust-content {
    padding: 80px 60px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.trust-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

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

.stat-label {
    font-size: 16px;
    color: #666;
}

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

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

.disclaimer-section {
    padding: 60px 80px;
    background-color: #ecf0f1;
}

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

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

.disclaimer-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.footer-split {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 60px 20px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

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

.page-hero-split {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 60px;
}

.page-hero-split .hero-content {
    max-width: 800px;
    text-align: center;
}

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

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

.services-hero {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.contact-hero {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.about-split,
.values-split,
.expertise-split {
    display: flex;
    min-height: 500px;
}

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

.about-image,
.about-content,
.values-image,
.values-content,
.expertise-image,
.expertise-content {
    flex: 1;
}

.about-image,
.values-image,
.expertise-image {
    background-color: #95a5a6;
    overflow: hidden;
}

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

.about-content,
.values-content,
.expertise-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.about-content h2,
.values-content h2,
.expertise-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-content p,
.expertise-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    color: #666;
}

.services-detail-split {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.service-detail-card {
    display: flex;
    margin-bottom: 60px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    min-height: 400px;
}

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

.service-detail-image,
.service-detail-content {
    flex: 1;
}

.service-detail-image {
    background-color: #bdc3c7;
    overflow: hidden;
}

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

.service-detail-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #555;
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 16px;
    color: #666;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

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

.cta-content h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 40px;
    background-color: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

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

.contact-info-side,
.contact-map-side {
    flex: 1;
}

.contact-info-side {
    padding: 80px 60px;
    background-color: #34495e;
    color: #fff;
}

.contact-info-side h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

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

.contact-detail-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #3498db;
}

.contact-detail-block p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
}

.contact-map-side {
    background-color: #95a5a6;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

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

.contact-reasons-split {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.reasons-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.reason-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.reason-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.reason-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.thanks-split {
    display: flex;
    min-height: 700px;
}

.thanks-content,
.thanks-image {
    flex: 1;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #fff;
    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: 16px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 24px;
}

.service-confirmation {
    margin-bottom: 40px;
}

.selected-service-info {
    font-size: 16px;
    color: #666;
    padding: 16px;
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
    border-radius: 4px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.step-list {
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-text p {
    font-size: 15px;
    color: #666;
}

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

.thanks-image {
    background-color: #95a5a6;
    overflow: hidden;
}

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

.legal-page {
    padding: 80px 60px;
    background-color: #fff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #34495e;
}

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

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

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .info-split,
    .form-split,
    .trust-split,
    .service-card-split,
    .service-detail-card,
    .about-split,
    .values-split,
    .expertise-split,
    .contact-split-main,
    .thanks-split {
        flex-direction: column;
    }

    .service-card-split.reverse,
    .service-detail-card.reverse,
    .info-split.reverse,
    .values-split.reverse {
        flex-direction: column;
    }

    .header-split {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-stats {
        flex-direction: column;
        align-items: center;
    }

    .reason-grid {
        flex-direction: column;
    }

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

    .hero-text h1,
    .page-hero-split h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .info-content h2,
    .trust-content h2,
    .about-content h2 {
        font-size: 28px;
    }
}