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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #28a745;
}

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

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

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

ul {
    list-style: none;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

.hero-asymmetric {
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-offset-content {
    width: 55%;
    padding: 4rem 2rem 4rem 8%;
    position: relative;
    z-index: 2;
}

.hero-text-block {
    background: var(--bg-white);
    padding: 3rem;
    box-shadow: -8px 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateX(-20px);
}

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

.hero-subtext {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.hero-visual-offset {
    position: absolute;
    right: 0;
    top: 15%;
    width: 50%;
    height: 70%;
    z-index: 1;
}

.hero-visual-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.intro-story {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.story-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.story-card-offset {
    flex: 1;
    background: var(--bg-white);
    padding: 4rem;
    box-shadow: 12px -8px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-30px);
}

.story-card-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.story-card-offset p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.story-visual-right {
    flex: 0.8;
    transform: translateY(40px);
}

.story-visual-right img {
    box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.2);
}

.problem-amplify {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: white;
}

.problem-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.problem-text-left {
    flex: 1.2;
}

.problem-text-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.problem-list li {
    font-size: 1.15rem;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.problem-cta-inline {
    flex: 0.6;
}

.cta-link {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.insight-reveal {
    padding: 6rem 2rem;
}

.insight-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.insight-visual-left {
    flex: 0.9;
    transform: translateX(-40px);
}

.insight-visual-left img {
    border-radius: 8px;
    box-shadow: 20px -10px 50px rgba(0, 0, 0, 0.15);
}

.insight-content-right {
    flex: 1.1;
    transform: translateX(20px);
}

.insight-content-right h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.insight-content-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.trust-builder {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.trust-container {
    max-width: 1300px;
    margin: 0 auto;
}

.trust-container h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.trust-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-left: 5px solid var(--accent-color);
    box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.08);
}

.trust-card-1 {
    flex: 1 1 55%;
    transform: translateY(-20px);
}

.trust-card-2 {
    flex: 1 1 40%;
    transform: translateY(30px);
}

.trust-card-3 {
    flex: 1 1 45%;
    transform: translateX(40px);
}

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

.testimonial-author {
    color: var(--text-light);
    font-weight: 600;
}

.benefits-section {
    padding: 6rem 2rem;
}

.benefits-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-header-offset {
    margin-bottom: 3rem;
    transform: translateX(60px);
}

.benefits-header-offset h2 {
    font-size: 2.6rem;
    color: var(--primary-color);
}

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

.benefit-item {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-8px);
}

.benefit-large {
    flex: 1 1 55%;
}

.benefit-medium {
    flex: 1 1 45%;
}

.benefit-small {
    flex: 1 1 35%;
}

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

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

.process-reveal {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

.process-container h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.process-steps-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.step {
    flex: 1 1 45%;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    position: relative;
}

.step-1 {
    transform: translateX(-30px);
}

.step-2 {
    transform: translateX(30px) translateY(20px);
}

.step-3 {
    transform: translateX(-20px) translateY(-15px);
}

.step-4 {
    transform: translateX(25px);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    display: block;
    margin-bottom: 0.5rem;
}

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

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

.showcase-gallery {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.showcase-gallery h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.gallery-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.15);
}

.gallery-large {
    flex: 1 1 55%;
    transform: translateY(-30px);
}

.gallery-medium {
    flex: 1 1 40%;
    transform: translateY(40px);
}

.gallery-small {
    flex: 1 1 35%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.urgency-section {
    padding: 5rem 2rem;
    background: var(--secondary-color);
    color: white;
}

.urgency-container {
    max-width: 1100px;
    margin: 0 auto;
}

.urgency-content-offset {
    transform: translateX(40px);
}

.urgency-content-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.urgency-content-offset p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.urgency-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 2rem;
    display: inline-block;
    border-radius: 5px;
    margin-top: 1rem;
}

.services-pricing {
    padding: 6rem 2rem;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

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

.pricing-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1 1 30%;
    min-width: 280px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 8px 12px 30px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

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

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

.service-desc {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    min-height: 80px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.btn-price-cta {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s;
}

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

.final-cta-section {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

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

.final-cta-wrapper p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.btn-final-cta {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: var(--secondary-color);
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 5px;
    transition: transform 0.3s;
}

.btn-final-cta:hover {
    transform: scale(1.05);
}

.order-form-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

.form-intro-offset {
    margin-bottom: 3rem;
    transform: translateX(-30px);
}

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

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

.order-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(20px);
}

.form-group {
    margin-bottom: 1.8rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    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(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--secondary-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #c0392b;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.sticky-cta-btn:hover {
    transform: translateY(-5px);
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

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

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

.btn-accept:hover,
.btn-reject:hover {
    transform: translateY(-2px);
}

.about-hero,
.services-hero,
.contact-hero {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-hero-subtitle,
.services-hero-subtitle,
.contact-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.story-section {
    padding: 6rem 2rem;
}

.story-container-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text-offset {
    flex: 1;
    transform: translateX(-30px);
}

.story-text-offset h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

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

.values-container {
    max-width: 1300px;
    margin: 0 auto;
}

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

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

.value-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.08);
    flex: 1 1 45%;
}

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

.value-card-2 {
    transform: translateY(15px);
}

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

.value-card-4 {
    transform: translateY(20px);
}

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

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

.team-section {
    padding: 6rem 2rem;
}

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

.team-container h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

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

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

.team-member {
    flex: 1 1 45%;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.team-member p {
    color: var(--text-light);
}

.achievements-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

.achievements-container-asymmetric h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.achievements-list-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.achievement-item {
    text-align: center;
    flex: 1 1 200px;
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.achievement-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.why-us-section {
    padding: 6rem 2rem;
}

.why-us-container {
    max-width: 1100px;
    margin: 0 auto;
}

.why-us-container h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.why-us-content-offset {
    transform: translateX(40px);
}

.why-us-list li {
    font-size: 1.15rem;
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-dark);
}

.why-us-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-size: 1.5rem;
    font-weight: 700;
}

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

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

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

.btn-cta-about {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: white;
    color: var(--accent-color);
    font-weight: 600;
    border-radius: 5px;
    transition: transform 0.3s;
}

.btn-cta-about:hover {
    transform: scale(1.05);
}

.services-detail {
    padding: 4rem 2rem;
}

.services-detail-container {
    max-width: 1300px;
    margin: 0 auto;
}

.service-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.service-block-offset-1 {
    box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.1);
}

.service-block-offset-2 {
    flex-direction: row-reverse;
    box-shadow: 10px -10px 40px rgba(0, 0, 0, 0.1);
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

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

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

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

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.service-timeline {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

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

.btn-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s;
}

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

.service-visual {
    flex: 0.8;
}

.service-visual img {
    border-radius: 8px;
    box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.15);
}

.service-process {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

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

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

.process-step-detail {
    flex: 1 1 45%;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

.process-step-detail p {
    color: var(--text-light);
    line-height: 1.7;
}

.faq-services {
    padding: 6rem 2rem;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

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

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

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

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

.cta-services {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

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

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

.btn-cta-services {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 5px;
    transition: transform 0.3s;
}

.btn-cta-services:hover {
    transform: scale(1.05);
}

.contact-info {
    padding: 6rem 2rem;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info-block {
    flex: 1 1 300px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

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

.contact-info-offset-2 {
    transform: translateY(15px);
}

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

.contact-info-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-address,
.contact-email {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-email a {
    color: var(--accent-color);
    text-decoration: underline;
}

.working-hours {
    list-style: none;
    margin-bottom: 1.5rem;
}

.working-hours li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

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

.contact-map {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.map-container {
    max-width: 1100px;
    margin: 0 auto;
}

.map-container h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.map-directions {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.direction-item {
    flex: 1 1 45%;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

.contact-faq {
    padding: 6rem 2rem;
}

.contact-faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-cta {
    padding: 5rem 2rem;
    background: var(--accent-color);
    color: white;
    text-align: center;
}

.contact-cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.btn-contact-cta {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: white;
    color: var(--accent-color);
    font-weight: 600;
    border-radius: 5px;
    transition: transform 0.3s;
}

.btn-contact-cta:hover {
    transform: scale(1.05);
}

.thanks-hero {
    margin-top: 80px;
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 120px;
    height: 120px;
}

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

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

.thanks-info {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-info strong {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.next-steps {
    list-style: none;
    margin-top: 1.5rem;
}

.next-steps li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

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

.btn-thanks-primary,
.btn-thanks-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s;
}

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

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

.btn-thanks-primary:hover,
.btn-thanks-secondary:hover {
    transform: translateY(-3px);
}

.thanks-extra {
    padding: 4rem 2rem;
}

.thanks-extra-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-extra-container p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.legal-page {
    margin-top: 80px;
    padding: 4rem 2rem;
}

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

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

.legal-updated {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-offset-content {
        width: 100%;
        padding: 2rem;
    }

    .hero-text-block {
        transform: none;
        padding: 2rem;
    }

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

    .hero-visual-offset {
        position: relative;
        width: 100%;
        height: 300px;
        top: 0;
    }

    .hero-visual-offset img {
        clip-path: none;
    }

    .story-wrapper,
    .problem-container,
    .insight-wrapper,
    .story-container-asymmetric,
    .contact-info-container {
        flex-direction: column;
    }

    .story-card-offset,
    .story-text-offset,
    .why-us-content-offset,
    .form-intro-offset,
    .order-form,
    .urgency-content-offset {
        transform: none;
    }

    .story-visual-right,
    .insight-visual-left {
        transform: none;
    }

    .trust-card-1,
    .trust-card-2,
    .trust-card-3 {
        flex: 1 1 100%;
        transform: none;
    }

    .benefit-large,
    .benefit-medium,
    .benefit-small {
        flex: 1 1 100%;
    }

    .step {
        flex: 1 1 100%;
        transform: none;
    }

    .gallery-large,
    .gallery-medium,
    .gallery-small {
        flex: 1 1 100%;
        transform: none;
    }

    .pricing-card {
        flex: 1 1 100%;
        transform: none;
    }

    .value-card {
        flex: 1 1 100%;
        transform: none;
    }

    .service-block {
        flex-direction: column;
        padding: 2rem;
    }

    .service-block-offset-2 {
        flex-direction: column;
    }

    .process-step-detail {
        flex: 1 1 100%;
    }

    .contact-info-block {
        transform: none;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

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