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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

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

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

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

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

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e74c3c;
}

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

.btn-sticky {
    background: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s;
    display: block;
}

.btn-sticky:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(231, 76, 60, 0.6);
}

.hero-asymmetric {
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1;
    min-width: 300px;
    transform: translateX(-30px);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #555;
    font-weight: 300;
}

.hero-image-overlap {
    flex: 1;
    min-width: 350px;
    position: relative;
    transform: translateY(40px) translateX(20px);
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
}

.hero-cta-float {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.btn-hero {
    background: #2c3e50;
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-hero:hover {
    background: #1a252f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

.story-intro {
    padding: 6rem 2rem;
    background: white;
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-offset-left {
    flex: 1.2;
    min-width: 300px;
    padding-left: 5%;
}

.intro-offset-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-offset-left p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.intro-image-right {
    flex: 1;
    min-width: 300px;
    transform: translateX(30px);
}

.intro-image-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.problem-amplification {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.problem-irregular {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.problem-block-1 {
    flex: 1;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    transform: translateY(-30px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.problem-block-1 h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.problem-block-2 {
    flex: 0.8;
    transform: translateY(40px);
}

.problem-block-2 img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.image-caption {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.problem-stats {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    background: #e74c3c;
    color: white;
    padding: 2.5rem 3rem;
    border-radius: 12px;
    text-align: center;
    min-width: 250px;
    transform: rotate(-1deg);
}

.stat-card:nth-child(2) {
    transform: rotate(1deg);
}

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

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

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

.insight-content-asymmetric {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-text {
    flex: 1;
    transform: translateX(50px);
}

.insight-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.insight-text p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.insight-visual {
    flex: 1;
}

.insight-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.insight-cta {
    text-align: center;
}

.btn-inline {
    color: #e74c3c;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 0.3rem;
    transition: all 0.3s;
}

.btn-inline:hover {
    color: #c0392b;
    border-color: #c0392b;
}

.trust-building {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.section-title-offset {
    max-width: 1400px;
    margin: 0 auto 3rem;
    font-size: 2.8rem;
    transform: translateX(-40px);
}

.trust-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.trust-item.large {
    flex: 1 1 55%;
    min-width: 300px;
}

.trust-item.medium {
    flex: 1 1 40%;
    min-width: 300px;
    transform: translateY(30px);
}

.trust-item.small {
    flex: 1 1 35%;
    min-width: 280px;
    background: #2c3e50;
    color: white;
    transform: translateY(-20px);
}

.trust-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.trust-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.trust-item p {
    line-height: 1.7;
    color: #666;
}

.trust-item.small p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-flow {
    padding: 5rem 2rem;
    background: #2c3e50;
    color: white;
}

.testimonial-offset-1,
.testimonial-offset-2,
.testimonial-offset-3 {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
}

.testimonial-offset-1 {
    transform: translateX(-60px);
}

.testimonial-offset-2 {
    transform: translateX(60px);
}

.testimonial-offset-3 {
    transform: translateX(-30px);
}

blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
}

cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
}

.benefits-stagger {
    padding: 6rem 2rem;
    background: white;
}

.benefits-stagger h2 {
    max-width: 1400px;
    margin: 0 auto 3rem;
    font-size: 2.8rem;
    text-align: center;
}

.benefits-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.benefit-left {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transform: translateY(-40px);
}

.benefit-left h3,
.benefit-center h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-left p,
.benefit-center p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.benefit-right-image {
    flex: 1;
    min-width: 300px;
    transform: translateY(30px) rotate(2deg);
}

.benefit-right-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.benefit-center {
    flex: 1 1 100%;
    padding: 3rem;
    background: #e74c3c;
    color: white;
    border-radius: 12px;
    transform: translateX(50px);
}

.benefit-center p {
    color: rgba(255, 255, 255, 0.95);
}

.social-proof {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.proof-stats-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.proof-stat {
    text-align: center;
    min-width: 200px;
}

.proof-stat:nth-child(2) {
    transform: translateY(-30px);
}

.proof-stat h3 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.proof-stat p {
    font-size: 1.2rem;
}

.services-reveal {
    padding: 6rem 2rem;
    background: white;
}

.services-title {
    max-width: 1400px;
    margin: 0 auto 1rem;
    font-size: 3rem;
    text-align: center;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: #666;
    text-align: center;
}

.services-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 400px;
    transition: all 0.3s;
}

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

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

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

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

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

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

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

.service-card h3 {
    font-size: 1.8rem;
    margin: 1.5rem 1.5rem 1rem;
}

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

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 1.5rem;
}

.service-features span {
    font-size: 0.9rem;
    color: #27ae60;
    font-weight: 600;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 1.5rem 1.5rem 1rem;
}

.btn-select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: #1a252f;
}

.urgency-block {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%);
    color: white;
}

.urgency-content-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    transform: translateX(-30px);
}

.urgency-content-asymmetric h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.urgency-content-asymmetric p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.urgency-timer {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: inline-block;
}

.btn-urgency {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #e74c3c;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-urgency:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

.guarantee-section {
    padding: 6rem 2rem;
    background: white;
}

.guarantee-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.guarantee-text {
    flex: 1;
    min-width: 300px;
}

.guarantee-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.guarantee-text p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.guarantee-badges {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    background: #27ae60;
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    transform: rotate(-1deg);
}

.badge:nth-child(2) {
    transform: rotate(1deg);
}

.badge:nth-child(3) {
    transform: rotate(-2deg);
}

.form-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(-20px);
}

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

.form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    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: #e74c3c;
}

.btn-submit {
    padding: 1.2rem;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

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

.final-cta {
    padding: 5rem 2rem;
    background: #2c3e50;
    color: white;
}

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

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

.btn-final {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-final:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 2rem 1rem;
}

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

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

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.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: rgba(255, 255, 255, 0.6);
}

.about-hero,
.services-hero,
.contact-hero {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

.about-hero p,
.services-hero p,
.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-story {
    padding: 6rem 2rem;
    background: white;
}

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

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

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

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.values-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.values-section h2 {
    max-width: 1400px;
    margin: 0 auto 3rem;
    font-size: 2.8rem;
    text-align: center;
}

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

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.value-card.large {
    flex: 1 1 55%;
    min-width: 300px;
    background: #2c3e50;
    color: white;
}

.value-card.medium {
    flex: 1 1 40%;
    min-width: 280px;
}

.value-card.small {
    flex: 1 1 35%;
    min-width: 280px;
}

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

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

.value-card.large p {
    color: rgba(255, 255, 255, 0.9);
}

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

.approach-content-offset {
    flex: 1;
    min-width: 300px;
}

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

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

.approach-image {
    flex: 1;
    min-width: 300px;
}

.approach-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.commitment-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.commitment-section h2 {
    max-width: 1400px;
    margin: 0 auto 3rem;
    font-size: 2.8rem;
    text-align: center;
}

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

.commitment-block {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.commitment-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.commitment-block p {
    color: #666;
    line-height: 1.7;
}

.cta-about {
    padding: 5rem 2rem;
    background: #2c3e50;
    color: white;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

.services-intro-section {
    padding: 4rem 2rem;
    background: white;
}

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

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

.services-intro-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.services-list {
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.service-item-detail {
    max-width: 1400px;
    margin: 4rem auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
}

.offset-layout-1 .service-detail-image {
    order: 1;
}

.offset-layout-1 .service-detail-content {
    order: 2;
}

.offset-layout-2 .service-detail-image {
    order: 2;
}

.offset-layout-2 .service-detail-content {
    order: 1;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.service-features-list li {
    padding: 0.5rem 0;
    color: #27ae60;
    font-weight: 600;
    position: relative;
    padding-left: 1.5rem;
}

.service-features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
}

.service-detail-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

.btn-service:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.services-guarantee {
    padding: 6rem 2rem;
    background: white;
}

.guarantee-services-content h2 {
    max-width: 1400px;
    margin: 0 auto 3rem;
    font-size: 2.8rem;
    text-align: center;
}

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

.guarantee-item {
    flex: 1;
    min-width: 250px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

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

.guarantee-item p {
    color: #666;
    line-height: 1.6;
}

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

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

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

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

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

.contact-info-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.contact-info-block h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

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

.contact-detail-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-detail-item p {
    color: #666;
    line-height: 1.8;
}

.contact-detail-item a {
    color: #e74c3c;
    text-decoration: none;
}

.contact-detail-item a:hover {
    text-decoration: underline;
}

.contact-image-block {
    flex: 1;
    min-width: 300px;
}

.contact-image-block img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.contact-cta-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

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

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

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

.contact-faq h2 {
    max-width: 1400px;
    margin: 0 auto 3rem;
    font-size: 2.8rem;
    text-align: center;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

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

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

.thanks-section {
    margin-top: 80px;
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1rem;
}

.service-selected {
    font-size: 1.2rem;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 3rem;
}

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

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.step-number {
    display: block;
    width: 50px;
    height: 50px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

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

.thanks-bonus {
    background: #fff3cd;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 4px solid #f39c12;
}

.thanks-bonus p {
    color: #856404;
    font-size: 1.1rem;
    margin: 0;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #2c3e50;
    text-decoration: none;
    border: 2px solid #2c3e50;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: white;
}

.legal-page {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: white;
    min-height: 70vh;
}

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

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

.last-updated {
    color: #999;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.legal-content p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

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

.legal-content a {
    color: #e74c3c;
    text-decoration: none;
}

.legal-content a:hover {
    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-bottom: 1px solid #e0e0e0;
}

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

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

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

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

    .hero-content-offset,
    .story-intro,
    .problem-irregular,
    .insight-content-asymmetric,
    .benefits-asymmetric,
    .guarantee-asymmetric,
    .story-block-offset,
    .team-approach {
        flex-direction: column;
    }

    .hero-text-block,
    .intro-offset-left,
    .insight-text {
        transform: none;
        padding-left: 0;
    }

    .hero-image-overlap,
    .intro-image-right {
        transform: none;
    }

    .section-title-offset {
        transform: none;
    }

    .testimonial-offset-1,
    .testimonial-offset-2,
    .testimonial-offset-3 {
        transform: none;
    }

    .benefit-left,
    .benefit-right-image,
    .benefit-center {
        transform: none;
    }

    .urgency-content-asymmetric {
        transform: none;
    }

    .form-container-offset {
        transform: none;
    }

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

    .offset-1,
    .offset-2,
    .offset-3,
    .offset-4,
    .offset-5 {
        transform: none;
    }
}
