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

:root {
    --primary-color: #1a365d;
    --secondary-color: #2563eb;
    --accent-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

.header-split {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding-right: 3rem;
}

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

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-right img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
    transition: var(--transition);
}

.btn-large:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--secondary-color);
    font-size: 1.125rem;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    border-radius: 6px;
    display: inline-block;
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-primary {
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-color);
}

.btn-secondary {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: var(--text-dark);
    font-weight: 600;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
}

.btn-sm {
    padding: 0.5rem 1rem;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 4px;
    display: inline-block;
    transition: var(--transition);
}

.btn-sm:hover {
    background-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-color);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.benefits-split {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    background-color: var(--bg-light);
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-left {
    flex: 1;
    padding-left: 3rem;
}

.benefits-right {
    flex: 1;
}

.benefits-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.benefits-left h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.benefits-left p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.link-arrow {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
}

.link-arrow::after {
    content: " →";
    transition: var(--transition);
}

.link-arrow:hover::after {
    transform: translateX(5px);
    display: inline-block;
}

.problem-section {
    padding: 6rem 5%;
    background-color: var(--primary-color);
    color: white;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.problem-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.problem-section p {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.problem-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    opacity: 0.9;
}

.solution-split {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.solution-left {
    flex: 1.2;
    padding-right: 3rem;
}

.solution-right {
    flex: 0.8;
}

.solution-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.solution-left h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.solution-left > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

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

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

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

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

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

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

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

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

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

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    min-width: 60px;
}

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

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

.cta-split {
    display: flex;
    align-items: stretch;
    padding: 6rem 5%;
    background-color: var(--bg-light);
    max-width: 1400px;
    margin: 0 auto;
    gap: 3rem;
}

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

.cta-left h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-left p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-benefits {
    list-style: none;
}

.cta-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.cta-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.cta-right {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: white;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

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

.sticky-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.sticky-btn:hover {
    background-color: #059669;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.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;
    opacity: 0.95;
}

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

.page-hero {
    padding: 4rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-light);
}

.story-split {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.story-left {
    flex: 1;
    padding-right: 3rem;
}

.story-right {
    flex: 1;
}

.story-left h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-left p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

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

.team-split {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.team-left {
    flex: 1;
    padding-left: 3rem;
}

.team-right {
    flex: 1;
}

.team-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.team-left h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.team-left p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.expertise-list {
    list-style: none;
    margin-bottom: 2rem;
}

.expertise-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.expertise-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.approach-section {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.approach-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.approach-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.approach-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.approach-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-about {
    padding: 6rem 5%;
    background-color: var(--secondary-color);
    text-align: center;
    color: white;
}

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

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

.services-main {
    padding: 4rem 5%;
}

.service-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 3rem 0;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1.2;
}

.service-image {
    flex: 0.8;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

.service-content > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-price {
    margin-bottom: 0.5rem;
}

.price-from {
    font-size: 1rem;
    color: var(--text-light);
}

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

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.service-cta {
    display: inline-block;
}

.pricing-info {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.pricing-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.pricing-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

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

.pricing-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.service-form-section {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.form-split {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-left {
    flex: 1;
}

.form-right {
    flex: 1;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

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

.form-left p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-split {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.response-info {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.response-info p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.response-info p:last-child {
    margin-bottom: 0;
}

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

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

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

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

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

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

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

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-info {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-info p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

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

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

.next-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.next-item p {
    color: var(--text-dark);
}

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

.thanks-resources {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

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

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

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

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

.resource-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content {
    padding: 4rem 5%;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.update-date {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

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

.legal-content h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

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

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

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

.cookies-table td {
    color: var(--text-dark);
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 1rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .benefits-split,
    .solution-split,
    .story-split,
    .team-split,
    .cta-split,
    .service-block,
    .form-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-left,
    .benefits-left,
    .solution-left,
    .story-left,
    .team-left,
    .cta-left,
    .service-content {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 2rem;
    }

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

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

    .problem-section h2,
    .trust-section h2,
    .process-section h2 {
        font-size: 1.75rem;
    }

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

    .testimonials-grid,
    .next-steps,
    .resources-grid {
        flex-direction: column;
    }

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

    .sticky-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn-large,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .problem-stats {
        flex-direction: column;
    }

    .approach-steps,
    .values-grid,
    .pricing-grid {
        flex-direction: column;
    }
}