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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #999;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1;
    min-width: 320px;
    transform: translateY(-40px);
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.hero-image-offset {
    flex: 1;
    min-width: 320px;
    transform: translateX(30px);
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-asymmetric {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 6rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.intro-block-left {
    flex: 2;
    min-width: 320px;
}

.intro-block-left h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.intro-block-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.intro-card-right {
    flex: 1;
    min-width: 250px;
    transform: translateY(60px);
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 2rem;
    border-radius: 12px;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
}

.problem-overlap {
    position: relative;
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.problem-visual {
    flex: 1;
    min-width: 320px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.problem-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.problem-text-overlap {
    flex: 1;
    min-width: 320px;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transform: translateX(-80px) translateY(40px);
}

.problem-text-overlap h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1.05rem;
}

.problem-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.insight-stacked {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
    margin: 6rem 0;
}

.insight-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.insight-container h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.insight-container p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-preview {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.section-title-offset {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 4rem;
    margin-left: 8%;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(50% - 1.5rem);
    min-width: 280px;
    max-width: 500px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.card-elevated {
    transform: translateY(-30px);
}

.card-offset-top {
    transform: translateY(-15px);
}

.card-offset-bottom {
    transform: translateY(20px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p {
    color: #666;
    margin: 0 1.5rem 1rem;
    line-height: 1.6;
}

.price-tag {
    font-size: 1.4rem;
    font-weight: bold;
    color: #3498db;
    margin: 1.5rem 1.5rem 1rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    margin: 1rem 1.5rem 1.5rem;
    background-color: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #d5dbdb;
}

.trust-split {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.trust-left {
    flex: 1;
    min-width: 320px;
}

.trust-left h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.trust-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.trust-right {
    flex: 1;
    min-width: 320px;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #3498db;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: block;
    color: #888;
    font-size: 0.95rem;
}

.benefits-overlap {
    position: relative;
    margin: 6rem 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.benefits-visual-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.benefits-content-card {
    position: relative;
    z-index: 2;
    background-color: white;
    max-width: 800px;
    margin: 0 2rem;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: translateX(100px);
}

.benefits-content-card h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

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

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.cta-primary-block h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-primary-block p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-section-asymmetric {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.form-container-offset {
    flex: 1;
    min-width: 320px;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    transform: translateY(-40px);
}

.form-container-offset h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    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 {
    padding: 1rem 2rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.form-side-visual {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(40px);
}

.form-side-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.disclaimer-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #f39c12;
    border-radius: 6px;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-col p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.btn-reject {
    background-color: #95a5a6;
    color: white;
}

.btn-reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.about-hero-offset,
.services-hero,
.contact-hero {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.about-hero-content h1,
.services-hero-content h1,
.contact-hero-content h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.3rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.about-story-asymmetric {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.story-block-right {
    flex: 1;
    min-width: 320px;
    order: 2;
}

.story-block-right h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.story-block-right p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.story-visual-left {
    flex: 1;
    min-width: 320px;
    order: 1;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(-30px);
}

.story-visual-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-stacked {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.mission-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-container h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.mission-container p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-grid-offset {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.section-title-center {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 4rem;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.value-card {
    flex: 0 1 calc(50% - 1.25rem);
    min-width: 280px;
    max-width: 500px;
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.card-offset-1 {
    transform: translateY(-20px);
}

.card-offset-2 {
    transform: translateY(20px);
}

.card-offset-3 {
    transform: translateY(-10px);
}

.card-offset-4 {
    transform: translateY(15px);
}

.team-asymmetric {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.team-intro {
    flex: 1;
    min-width: 320px;
}

.team-intro h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.team-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.team-visual {
    flex: 1;
    min-width: 320px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transform: translateX(30px);
}

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

.cta-about {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.cta-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content-centered p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.services-detailed {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.service-detail-card {
    margin-bottom: 6rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.service-offset-left {
    transform: translateX(-40px);
}

.service-offset-right {
    transform: translateX(40px);
}

.service-offset-center {
    transform: translateY(20px);
    justify-content: center;
}

.service-detail-visual {
    flex: 1;
    min-width: 320px;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
}

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

.service-detail-info {
    flex: 1;
    min-width: 320px;
}

.service-full-width {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
}

.service-detail-info h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-detail-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-detail-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 2rem 0 1rem;
}

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

.service-features li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

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

.pricing-tiers {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.tier {
    flex: 1;
    min-width: 160px;
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.tier:hover {
    border-color: #3498db;
    transform: translateY(-5px);
}

.tier h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.tier-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #3498db;
    margin: 0.5rem 0;
}

.tier-desc {
    font-size: 0.9rem;
    color: #888;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    margin-top: 1.5rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.services-faq {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

.faq-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

.contact-main-asymmetric {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 320px;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

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

.note-small {
    font-size: 0.9rem;
    color: #888;
}

.contact-visual-offset {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(-50px);
}

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

.contact-cta {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-cta-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-buttons-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-hero {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.thanks-content-centered {
    text-align: center;
}

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

.thanks-content-centered h1 {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.thanks-next-steps {
    margin: 4rem 0;
}

.thanks-next-steps h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.step-card {
    flex: 0 1 300px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.step-number {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

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

.thanks-info {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.info-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.info-box h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

.info-box ul li {
    padding: 0.5rem 0;
    color: #555;
}

.info-box ul li a {
    color: #3498db;
    text-decoration: none;
}

.info-box ul li a:hover {
    text-decoration: underline;
}

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

.legal-container {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
}

.legal-container h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legal-updated {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 2.5rem 0 1rem;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin: 1.5rem 0 0.8rem;
}

.legal-container p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
    color: #555;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

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

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

.cookies-table th,
.cookies-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 2rem;
    }

    .hero-offset,
    .intro-asymmetric,
    .problem-overlap,
    .trust-split,
    .form-section-asymmetric,
    .about-story-asymmetric,
    .team-asymmetric,
    .contact-main-asymmetric {
        flex-direction: column;
    }

    .problem-text-overlap {
        transform: none;
    }

    .benefits-content-card {
        transform: none;
    }

    .service-offset-left,
    .service-offset-right {
        transform: none;
    }

    .card-elevated,
    .card-offset-top,
    .card-offset-bottom {
        transform: none;
    }

    .section-title-offset {
        margin-left: 0;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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