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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --success-color: #2ecc71;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.ad-label {
    background: #fff3cd;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.mobile-menu a {
    padding: 0.8rem 0;
    text-decoration: none;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu.active {
    display: flex;
}

.ad-label-mobile {
    background: #fff3cd;
    padding: 0.6rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #856404;
    border: 1px solid #ffeaa7;
    margin-top: 0.5rem;
    text-align: center;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background: var(--light-bg);
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    background: #2c3e50;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

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

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

.split-content {
    flex: 1;
    padding: 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.split-image {
    flex: 1;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

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

.link-arrow {
    display: inline-block;
    margin-top: 1rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.link-arrow::after {
    content: ' →';
}

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

.services-split {
    padding: 4rem 6rem;
    background: var(--light-bg);
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.services-intro p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card-split {
    flex: 1 1 calc(50% - 1rem);
    min-width: 450px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card-split:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 250px;
    overflow: hidden;
    background: var(--light-bg);
}

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

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-info p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.select-service {
    width: 100%;
    padding: 0.9rem;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.trust-points {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

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

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 1rem;
    color: #666;
}

.form-section-split {
    padding: 4rem 6rem;
    background: #fff;
}

.form-container-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.selected-service-display {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 6px;
    border-left: 4px solid var(--secondary-color);
}

.form-right {
    flex: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.disclaimer-section {
    padding: 3rem 6rem;
    background: #fff3cd;
}

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

.disclaimer-content h3 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.disclaimer-content p {
    color: #856404;
    line-height: 1.8;
    font-size: 0.95rem;
}

.main-footer {
    background: var(--primary-color);
    color: #fff;
    padding: 3rem 6rem 2rem;
}

.footer-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

.footer-column p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.ad-notice {
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--success-color);
    color: #fff;
}

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

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 4rem 6rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-split {
    display: flex;
    padding: 4rem 6rem;
    gap: 4rem;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    background: var(--light-bg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    padding: 4rem 6rem;
    background: var(--light-bg);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.team-split {
    display: flex;
    padding: 4rem 6rem;
    gap: 4rem;
    align-items: center;
    background: #fff;
}

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

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.team-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.team-image {
    flex: 1;
    background: var(--light-bg);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.process-section {
    padding: 4rem 6rem;
    background: var(--light-bg);
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    gap: 2rem;
}

.process-step {
    flex: 1;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.cta-about {
    padding: 4rem 6rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.services-detailed {
    padding: 2rem 6rem 4rem;
}

.service-detail-split {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-price-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.service-detail-image {
    flex: 1;
    background: var(--light-bg);
}

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

.guarantee-section {
    padding: 3rem 6rem;
    background: var(--light-bg);
    text-align: center;
}

.guarantee-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.guarantee-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1rem;
    color: #555;
}

.contact-split {
    display: flex;
    padding: 4rem 6rem;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contact-detail p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.contact-map {
    flex: 1;
    background: var(--light-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.map-placeholder {
    text-align: center;
}

.map-placeholder p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.contact-cta {
    padding: 4rem 6rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.thanks-section {
    padding: 4rem 6rem;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-details {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-details p {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.thanks-next h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.next-steps {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.next-step {
    flex: 1;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.next-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.legal-content {
    padding: 2rem 6rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-text {
    line-height: 1.8;
}

.legal-text h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-text h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 0.6rem;
}

.legal-text p {
    margin-bottom: 1rem;
    color: #555;
}

.legal-text ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-text a {
    color: var(--secondary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.cookie-table th {
    background: var(--light-bg);
    font-weight: 600;
}

@media (max-width: 1200px) {
    .hero-left,
    .split-content,
    .services-split,
    .form-section-split,
    .disclaimer-section,
    .main-footer,
    .page-hero,
    .about-split,
    .values-section,
    .team-split,
    .process-section,
    .cta-about,
    .services-detailed,
    .guarantee-section,
    .contact-split,
    .contact-cta,
    .thanks-section,
    .legal-content {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (max-width: 968px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .hero-right {
        min-height: 300px;
    }

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

    .split-content {
        padding: 3rem 2rem;
    }

    .split-image {
        min-height: 300px;
    }

    .services-split {
        padding: 3rem 2rem;
    }

    .service-card-split {
        min-width: 100%;
    }

    .trust-points {
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-container-split {
        flex-direction: column;
        gap: 2rem;
    }

    .form-section-split {
        padding: 3rem 2rem;
    }

    .footer-content {
        flex-direction: column;
    }

    .about-split,
    .team-split {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 2rem;
    }

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

    .value-card {
        min-width: 100%;
    }

    .process-steps {
        flex-direction: column;
    }

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

    .contact-split {
        flex-direction: column;
        padding: 3rem 2rem;
    }

    .next-steps {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .hero-left h1 {
        font-size: 1.8rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .split-content h2,
    .services-intro h2,
    .values-section h2,
    .process-section h2 {
        font-size: 1.8rem;
    }

    .header-container {
        padding: 1rem;
    }

    .hero-left,
    .split-content,
    .services-split,
    .form-section-split,
    .disclaimer-section,
    .main-footer,
    .about-split,
    .values-section,
    .team-split,
    .process-section,
    .cta-about,
    .services-detailed,
    .guarantee-section,
    .contact-split,
    .contact-cta,
    .thanks-section,
    .legal-content {
        padding: 2rem 1rem;
    }

    .page-hero {
        padding: 2rem 1rem;
    }
}