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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
}

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

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

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

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

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

.btn-accept {
    background: var(--accent-color);
    color: var(--white);
}

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

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.main-nav {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

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

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

.nav-links a:hover {
    color: var(--accent-color);
}

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

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

.hero-left {
    background: var(--light-bg);
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.hero-right {
    padding: 0;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

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

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

.intro-split {
    display: flex;
    align-items: stretch;
}

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

.intro-image,
.intro-text {
    flex: 1;
}

.intro-image {
    overflow: hidden;
}

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

.intro-text {
    padding: 80px 60px;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.problem-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.split-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.card-item {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.card-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.card-item p {
    font-size: 16px;
    line-height: 1.6;
}

.insight-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
}

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

.insight-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.insight-left p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.insight-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.insight-list li {
    padding: 20px;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    font-size: 17px;
}

.services-grid {
    padding: 80px 20px;
    background: var(--white);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.service-card.featured {
    background: var(--primary-color);
    color: var(--white);
}

.service-card.featured h3,
.service-card.featured .price {
    color: var(--white);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 32px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.select-service {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.service-card.featured .select-service {
    background: var(--secondary-color);
}

.service-card.featured .select-service:hover {
    background: #c0392b;
}

.testimonial-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 40px;
}

.testimonial-block {
    flex: 1;
    padding: 40px;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

.quote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
}

.author {
    font-weight: 600;
    color: var(--primary-color);
}

.trust-section {
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--white);
}

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

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

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

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 16px;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.form-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.form-container p {
    margin-bottom: 30px;
    color: #666;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.final-cta-split {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px;
    background: var(--light-bg);
}

.final-left {
    flex: 2;
}

.final-left h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.final-right {
    flex: 1;
    text-align: right;
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    color: rgba(255,255,255,0.8);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.page-hero {
    background: var(--primary-color);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
}

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

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

.about-split {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 80px auto;
}

.about-text,
.about-image {
    flex: 1;
}

.about-text {
    padding: 60px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-image {
    overflow: hidden;
}

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

.values-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.team-split {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 80px auto;
}

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

.team-text,
.team-image {
    flex: 1;
}

.team-text {
    padding: 60px;
}

.team-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.team-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-image {
    overflow: hidden;
}

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

.experience-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

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

.experience-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.experience-list {
    display: flex;
    gap: 40px;
}

.exp-item {
    flex: 1;
}

.exp-item h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.exp-item p {
    font-size: 16px;
    line-height: 1.6;
}

.cta-about {
    padding: 80px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.services-detailed {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.service-detail-card {
    display: flex;
    align-items: stretch;
    margin-bottom: 60px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-left {
    overflow: hidden;
}

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

.service-detail-right {
    padding: 50px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail-right p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-price {
    font-size: 36px;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 24px 0;
}

.service-form-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.contact-split {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 60px auto;
}

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

.contact-info {
    padding: 60px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-block p {
    font-size: 16px;
    line-height: 1.6;
}

.info-block a {
    color: var(--accent-color);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

.contact-image {
    overflow: hidden;
}

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

.map-section {
    padding: 60px 20px;
    background: var(--light-bg);
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.map-placeholder p {
    font-size: 18px;
    color: #666;
}

.contact-cta {
    padding: 80px 20px;
    text-align: center;
}

.thanks-hero {
    padding: 100px 20px;
    background: var(--light-bg);
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-content > p {
    font-size: 20px;
    margin-bottom: 40px;
}

.thanks-details {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.thanks-details p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.next-steps {
    padding: 80px 20px;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.steps-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 40px;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.step-item p {
    font-size: 16px;
    line-height: 1.6;
}

.legal-page {
    padding: 60px 20px;
    background: var(--light-bg);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.legal-container h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.last-update {
    font-style: italic;
    color: #666;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-container p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-container a {
    color: var(--accent-color);
    text-decoration: none;
}

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

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .insight-split,
    .testimonial-split,
    .trust-grid,
    .experience-list,
    .steps-grid,
    .split-cards,
    .values-grid,
    .about-split,
    .team-split,
    .contact-split,
    .service-detail-card {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right,
    .intro-text,
    .intro-image,
    .about-text,
    .about-image,
    .team-text,
    .team-image,
    .contact-info,
    .contact-image,
    .service-detail-left,
    .service-detail-right {
        padding: 40px 20px;
    }

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

    .section-header h2,
    .intro-text h2,
    .about-text h2,
    .team-text h2 {
        font-size: 28px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .final-cta-split {
        flex-direction: column;
    }

    .final-right {
        text-align: center;
        margin-top: 20px;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta a {
        padding: 12px 24px;
        font-size: 14px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .form-container {
        padding: 30px 20px;
    }

    .legal-container {
        padding: 40px 20px;
    }
}

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

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

    .cookie-buttons {
        justify-content: center;
    }
}