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

:root {
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --accent-color: #e53e3e;
    --text-color: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #38a169;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-right {
    display: flex;
    gap: 2rem;
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 3rem 5%;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.split-layout {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    gap: 4rem;
}

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

.problem-section {
    background: var(--bg-light);
}

.problem-image,
.story-image,
.service-image,
.testimonial-visual,
.expertise-image,
.faq-image,
.page-hero-image,
.team-image,
.experience-image,
.contact-map,
.thanks-image,
.action-image {
    flex: 1;
}

.problem-image img,
.story-image img,
.service-image img,
.testimonial-visual img,
.expertise-image img,
.faq-image img,
.page-hero-image img,
.team-image img,
.experience-image img,
.contact-map img,
.thanks-image img,
.action-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.problem-text,
.story-content,
.service-details,
.testimonial-content,
.expertise-content,
.faq-content,
.page-hero-content,
.team-intro,
.experience-content,
.contact-details,
.thanks-details,
.action-content {
    flex: 1;
}

.problem-text h2,
.story-content h2,
.expertise-content h2,
.faq-content h2,
.page-hero-content h1,
.experience-content h2,
.thanks-details h2,
.action-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.problem-text p,
.story-content p,
.expertise-content p,
.experience-content p,
.action-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--text-color);
}

.trust-indicators {
    padding: 4rem 5%;
    background: var(--primary-color);
    color: white;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.trust-card h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.trust-card p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.services-preview {
    background: var(--bg-light);
}

.services-intro {
    flex: 1;
}

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

.services-intro p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.services-highlight {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.price {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
}

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

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

.testimonial-split {
    padding: 5rem 5%;
    background: var(--secondary-color);
    color: white;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1.125rem;
    font-style: normal;
    opacity: 0.9;
}

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

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

.process-split {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.process-step p {
    color: var(--text-light);
}

.cta-inline {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
    margin-top: 1rem;
    transition: opacity 0.3s;
}

.cta-inline:hover {
    opacity: 0.8;
}

.warning-section {
    padding: 5rem 5%;
    background: #fff5f5;
}

.warning-box {
    max-width: 800px;
    margin: 0 auto;
}

.warning-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.warning-box ul {
    list-style: none;
}

.warning-box li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: white;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    font-size: 1.125rem;
}

.form-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.form-container {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.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 select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    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 select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.cta-submit {
    width: 100%;
    background: var(--accent-color);
    color: white;
    padding: 1.125rem;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 62, 62, 0.3);
}

.final-cta {
    background: var(--primary-color);
    color: white;
    padding: 5rem 5%;
}

.final-cta-content {
    flex: 1;
}

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

.final-cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.final-cta-action {
    flex: 1;
    text-align: center;
}

.cta-large {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 8px;
    font-size: 1.375rem;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(229, 62, 62, 0.4);
}

.cta-note {
    margin-top: 1rem;
    opacity: 0.8;
}

.footer-split {
    background: #1a202c;
    color: white;
    padding: 3rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-info p {
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 32, 44, 0.98);
    color: white;
    padding: 1.5rem 5%;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-accept {
    background: var(--success-color);
    color: white;
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

.page-hero {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.values-section {
    padding: 5rem 5%;
}

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

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

.value-card {
    flex: 1;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.value-card p {
    color: var(--text-light);
}

.stats-banner {
    display: flex;
    justify-content: space-around;
    padding: 4rem 5%;
    background: var(--bg-light);
}

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

.stat-item h3 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.cta-about,
.cta-services,
.cta-contact,
.thanks-contact {
    padding: 5rem 5%;
    text-align: center;
    background: var(--primary-color);
    color: white;
}

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

.cta-about p,
.cta-services p,
.cta-contact p,
.thanks-contact p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-full {
    padding: 3rem 5%;
}

.service-item {
    margin-bottom: 4rem;
}

.service-details h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-details ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-details li {
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.service-price {
    margin: 1.5rem 0;
}

.price-label {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-right: 0.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.cta-service {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 62, 62, 0.3);
}

.service-guarantee {
    padding: 3rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.service-guarantee h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-guarantee p {
    font-size: 1.25rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-split {
    padding: 3rem 5%;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.125rem;
    color: var(--text-color);
    line-height: 1.8;
}

.contact-item a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-note {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-methods {
    padding: 4rem 5%;
    background: var(--bg-light);
}

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

.methods-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.method-card {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

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

.method-card p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.8;
}

.thanks-hero {
    padding: 5rem 5%;
    text-align: center;
    background: linear-gradient(135deg, var(--success-color) 0%, #2f855a 100%);
    color: white;
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    background: white;
    color: var(--success-color);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
}

.thanks-info {
    padding: 5rem 5%;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
}

.timeline-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--text-light);
}

.thanks-confirmation {
    padding: 3rem 5%;
    background: var(--bg-light);
}

.thanks-confirmation h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.confirmation-box {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.service-selected {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.confirmation-note {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.thanks-action {
    padding: 5rem 5%;
}

.action-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.action-content li {
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.action-note {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--text-light);
}

.legal-page {
    padding: 3rem 5%;
    background: var(--bg-light);
    min-height: 70vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.legal-date {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.375rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.legal-container p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.legal-container ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: var(--text-color);
}

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

.legal-container a:hover {
    opacity: 0.8;
}

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

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

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

@media (max-width: 768px) {
    .nav-right {
        gap: 1rem;
    }

    .hero-split,
    .split-layout,
    .split-reverse {
        flex-direction: column;
        gap: 2rem;
    }

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

    .hero-content p {
        font-size: 1.125rem;
    }

    .trust-grid,
    .values-grid,
    .methods-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

    .footer-split {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

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

    .stats-banner {
        flex-direction: column;
        gap: 2rem;
    }

    .legal-container {
        padding: 2rem 1.5rem;
    }
}
