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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #c0392b;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero-asymmetric {
    display: flex;
    min-height: 100vh;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    max-width: 600px;
    padding: 80px 40px 40px 0;
    z-index: 2;
}

.hero-title-large {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.hero-image-overlap {
    position: absolute;
    right: -10%;
    top: 15%;
    width: 55%;
    height: 70%;
    z-index: 1;
    transform: rotate(-3deg);
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta-primary, .cta-secondary, .btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.cta-primary:hover, .btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

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

.cta-secondary:hover, .btn-secondary:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.3);
}

.intro-offset {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    align-items: center;
    background: var(--bg-light);
}

.intro-narrow {
    flex: 1;
    max-width: 500px;
}

.intro-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

.intro-stats-floating {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

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

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

.problem-amplify {
    display: flex;
    padding: 100px 5%;
    gap: 50px;
    align-items: center;
}

.problem-text-irregular {
    flex: 1.2;
    padding-right: 40px;
}

.problem-text-irregular h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.problem-text-irregular p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.problem-visual-split {
    flex: 0.8;
}

.problem-visual-split img {
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.trust-building-cards {
    padding: 120px 5%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.section-title-offset {
    font-size: 3rem;
    margin-bottom: 3rem;
    padding-left: 5%;
}

.cards-irregular-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 300px;
}

.card-medium {
    flex: 1 1 calc(45% - 15px);
    min-width: 280px;
}

.card-small {
    flex: 1 1 calc(35% - 15px);
    min-width: 250px;
}

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

.trust-card p {
    line-height: 1.6;
}

.testimonial-inline {
    padding: 80px 10%;
    background: var(--bg-white);
}

.testimonial-offset {
    border-left: 5px solid var(--secondary-color);
    padding: 2rem 3rem;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 0 10%;
}

.testimonial-offset cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
}

.services-asymmetric {
    padding: 120px 5%;
    background: var(--bg-light);
}

.services-title-offset {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    transform: translateX(-2%);
}

.services-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    transform: translateX(-2%);
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    flex: 1 1 calc(50% - 20px);
    min-width: 320px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-featured {
    flex: 1 1 100%;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white;
}

.service-featured .service-price {
    color: white;
}

.service-popular {
    position: relative;
    border: 3px solid var(--secondary-color);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 20px;
}

.service-header h3 {
    font-size: 1.6rem;
    flex: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    white-space: nowrap;
}

.service-features {
    margin: 2rem 0;
    flex-grow: 1;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
}

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

.service-featured .service-features li::before {
    color: white;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

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

.service-featured .btn-select-service:hover {
    background: var(--bg-light);
}

.cta-sticky-trigger {
    padding: 100px 8%;
    background: var(--bg-white);
}

.cta-content-irregular {
    max-width: 700px;
    margin-left: 10%;
}

.cta-content-irregular h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

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

.guarantee-section {
    padding: 80px 5%;
    background: var(--bg-light);
}

.guarantee-box-offset {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: 10%;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.guarantee-box-offset h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.form-section-asymmetric {
    padding: 120px 5%;
    background: var(--bg-white);
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-container-offset {
    flex: 1.5;
    max-width: 600px;
}

.form-container-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    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: var(--secondary-color);
}

.btn-submit {
    padding: 1.2rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

.form-trust-elements {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.trust-badge span {
    font-size: 2rem;
    color: var(--secondary-color);
}

.trust-badge p {
    font-weight: 600;
}

.final-push {
    padding: 100px 5%;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
}

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

.final-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.final-content p {
    font-size: 1.3rem;
}

.footer-asymmetric {
    background: var(--primary-color);
    color: white;
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-main {
    flex: 1.5;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta-btn {
    display: block;
    padding: 1.2rem 2rem;
    background: var(--secondary-color);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #d35400;
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(230, 126, 34, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem 5%;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: #d35400;
}

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

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

.about-hero {
    padding: 150px 5% 80px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.about-hero-content p {
    font-size: 1.4rem;
    max-width: 700px;
}

.about-story {
    padding: 100px 5%;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-block-offset {
    flex: 1;
}

.story-block-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.story-block-offset p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.story-image {
    flex: 0.8;
}

.story-image img {
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.about-expertise {
    padding: 100px 5%;
    background: var(--bg-light);
}

.section-title-centered {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.expertise-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.expertise-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.about-numbers {
    padding: 100px 5%;
    background: var(--primary-color);
    color: white;
}

.numbers-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.number-stat {
    text-align: center;
    flex: 1 1 200px;
}

.stat-big {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.number-stat p {
    font-size: 1.1rem;
}

.about-team {
    padding: 100px 5%;
    text-align: center;
}

.about-team h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.team-description {
    max-width: 900px;
    margin: 0 auto;
}

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

.about-approach {
    padding: 100px 5%;
    background: var(--bg-light);
}

.approach-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.approach-step {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 20px;
}

.approach-step h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.about-cta {
    padding: 100px 5%;
}

.cta-box {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    color: white;
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-hero {
    padding: 150px 5% 80px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.services-hero-subtitle {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.service-detail-header {
    background: var(--bg-light);
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.service-detail-header h2 {
    font-size: 2.2rem;
}

.price-large {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.service-detail-body {
    padding: 3rem;
}

.service-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.service-detail-body h3 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

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

.detailed-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.detailed-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.highlighted-service {
    border: 3px solid var(--secondary-color);
}

.badge-popular {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.services-guarantee {
    padding: 80px 5%;
    background: var(--bg-light);
}

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

.guarantee-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.guarantee-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.services-cta {
    padding: 100px 5%;
    text-align: center;
}

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

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

.contact-hero {
    padding: 150px 5% 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.3rem;
}

.contact-main {
    padding: 80px 5%;
    display: flex;
    gap: 60px;
}

.contact-info-section {
    flex: 1;
}

.contact-info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-info-block {
    margin-bottom: 2.5rem;
}

.contact-info-block h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.contact-detail {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-detail a {
    color: var(--secondary-color);
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-map-placeholder {
    flex: 1;
}

.map-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-faq {
    padding: 80px 5%;
    background: var(--bg-light);
}

.contact-faq h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-cta {
    padding: 80px 5%;
}

.cta-final {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

.cta-final p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-hero {
    padding: 150px 5% 80px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    background: white;
    color: #27ae60;
    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.3rem;
}

.thanks-details {
    padding: 80px 5%;
}

.thanks-info-box {
    max-width: 900px;
    margin: 0 auto;
}

.thanks-info-box h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.thanks-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
}

.step-icon {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    min-width: 60px;
}

.step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.thanks-service-info {
    padding: 60px 5%;
    background: var(--bg-light);
}

.service-selected-box {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-selected-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-reminder {
    color: var(--text-light);
}

.thanks-extra-info {
    padding: 80px 5%;
}

.extra-info-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.extra-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
}

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

.thanks-contact-reminder {
    padding: 60px 5%;
    background: var(--primary-color);
    color: white;
}

.contact-reminder-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-reminder-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-reminder-box a {
    color: var(--secondary-color);
}

.thanks-cta {
    padding: 80px 5%;
}

.legal-hero {
    padding: 150px 5% 60px;
    background: var(--primary-color);
    color: white;
}

.legal-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 1.1rem;
    opacity: 0.8;
}

.legal-content {
    padding: 80px 5%;
}

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

.legal-container h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--secondary-color);
}

.legal-container h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.legal-container p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-container ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-contact-final {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
}

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

.cookies-table thead {
    background: var(--bg-light);
}

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

.cookies-table th {
    font-weight: 600;
}

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

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        transform: none;
        margin-top: 40px;
    }

    .intro-offset,
    .problem-amplify,
    .about-story,
    .contact-main,
    .form-section-asymmetric {
        flex-direction: column;
    }

    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 2.5rem;
    }

    .services-title-offset,
    .section-title-offset {
        font-size: 2rem;
    }

    .service-card,
    .expertise-item,
    .approach-step,
    .faq-item {
        flex: 1 1 100%;
    }

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

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

    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        display: none;
    }
}