/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background: #fff;
    color: #1a1a1a;
}

/* Header - Asymmetric Creative */
.header-asymmetric {
    position: relative;
    padding: 1.5rem 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ad-disclosure {
    background: #f8f9fa;
    color: #555;
    padding: 0.6rem 2rem;
    text-align: center;
    font-size: 0.85rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.logo-offset {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    font-weight: 500;
    color: #555;
    position: relative;
}

.nav-menu a:hover {
    color: #2c3e50;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

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

/* Hero - Irregular Asymmetric */
.hero-irregular {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-overlay-block {
    position: absolute;
    top: 15%;
    left: 8%;
    max-width: 600px;
    z-index: 2;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
}

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

.hero-subtitle-float {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
}

.hero-image-diagonal {
    position: absolute;
    right: -10%;
    top: 10%;
    width: 55%;
    transform: rotate(5deg);
    overflow: hidden;
    box-shadow: -30px 30px 80px rgba(0, 0, 0, 0.15);
}

.hero-image-diagonal img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Intro Curiosity Section */
.intro-curiosity {
    padding: 8rem 2rem;
    background: #ffffff;
}

.content-zigzag {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.text-block-left {
    flex: 1;
    padding-right: 2rem;
}

.text-block-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.text-block-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.insight-block-right {
    flex: 1;
    background: #f8f9fa;
    padding: 2.5rem;
    border-left: 5px solid #3498db;
    transform: translateY(60px);
}

.insight-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2c3e50;
    font-style: italic;
}

/* Problem Amplification */
.problem-amplification {
    padding: 6rem 2rem;
    background: #2c3e50;
    color: #ffffff;
}

.overlap-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.problem-card-one {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    backdrop-filter: blur(10px);
    border-radius: 8px;
    z-index: 2;
}

.problem-card-one h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.problem-card-one p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ecf0f1;
}

.problem-visual-two {
    flex: 1;
    transform: translateX(-40px) rotate(-3deg);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.problem-visual-two img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Story Scenario */
.story-scenario {
    padding: 7rem 2rem;
    background: #ecf0f1;
}

.scenario-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.narrative-intro {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3rem;
    line-height: 1.6;
    padding-left: 2rem;
    border-left: 4px solid #e74c3c;
}

.scenario-columns {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.scenario-left,
.scenario-right {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.scenario-left h4,
.scenario-right h4 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.scenario-left ul,
.scenario-right ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.scenario-left li,
.scenario-right li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: #555;
}

.cta-inline-one {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 2rem;
    margin-left: 2rem;
}

.cta-inline-one:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Trust Building */
.trust-building {
    padding: 7rem 2rem;
    background: #ffffff;
}

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

.credentials-offset {
    max-width: 700px;
    margin-bottom: 4rem;
}

.credentials-offset h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.credentials-offset p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

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

.stat-card-a,
.stat-card-b,
.stat-card-c {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2.5rem;
    border-radius: 8px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-card-b {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    transform: translateY(-20px);
}

.stat-card-c {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials Inline */
.testimonials-inline {
    padding: 7rem 2rem;
    background: #f8f9fa;
}

.testimonials-title-offset {
    max-width: 1200px;
    margin: 0 auto 3rem 2rem;
    font-size: 2.3rem;
    color: #1a1a1a;
}

.testimonials-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card-overlap,
.testimonial-card-offset,
.testimonial-card-diagonal {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-card-offset {
    margin-left: 10%;
    max-width: 80%;
}

.testimonial-card-diagonal {
    margin-left: auto;
    margin-right: 5%;
    max-width: 75%;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #3498db;
    font-size: 1rem;
}

/* Benefits Reveal */
.benefits-reveal {
    padding: 7rem 2rem;
    background: #ffffff;
}

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

.benefits-heading {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    text-align: center;
}

.benefits-layout-irregular {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefit-block-one,
.benefit-block-two,
.benefit-block-three {
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 5px solid #3498db;
}

.benefit-block-two {
    margin-left: 15%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-left-color: #e74c3c;
}

.benefit-block-three {
    margin-left: auto;
    max-width: 80%;
    background: #ecf0f1;
    border-left-color: #27ae60;
}

.benefit-block-one h4,
.benefit-block-two h4,
.benefit-block-three h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-block-one p,
.benefit-block-two p,
.benefit-block-three p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Sticky CTA */
.cta-block-sticky {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #3498db;
    padding: 1.2rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.cta-message {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

.cta-button-sticky {
    padding: 0.9rem 2rem;
    background: #ffffff;
    color: #3498db;
    font-weight: 700;
    border-radius: 5px;
}

.cta-button-sticky:hover {
    background: #ecf0f1;
    transform: translateY(-2px);
}

/* Insight Section */
.insight-section {
    padding: 7rem 2rem;
    background: #2c3e50;
    color: #ffffff;
}

.insight-wrapper-diagonal {
    max-width: 1100px;
    margin: 0 auto;
}

.insight-wrapper-diagonal h3 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.insight-wrapper-diagonal p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.insight-visual-offset {
    margin: 3rem 0;
    transform: rotate(-2deg);
    overflow: hidden;
    border-radius: 8px;
}

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

.insight-conclusion {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-top: 2rem;
}

/* Pricing Reveal */
.pricing-reveal {
    padding: 7rem 2rem;
    background: #f8f9fa;
}

.pricing-intro-offset {
    max-width: 800px;
    margin: 0 auto 4rem 5%;
}

.pricing-intro-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.pricing-cards-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.price-card-alpha,
.price-card-beta,
.price-card-gamma,
.price-card-delta {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #3498db;
}

.price-card-beta {
    margin-left: 10%;
    border-top-color: #e74c3c;
}

.price-card-gamma {
    margin-left: auto;
    max-width: 85%;
    border-top-color: #27ae60;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.price-card-delta {
    margin-left: 5%;
    max-width: 90%;
    border-top-color: #f39c12;
}

.price-card-alpha h4,
.price-card-beta h4,
.price-card-gamma h4,
.price-card-delta h4 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.price-card-alpha p,
.price-card-beta p,
.price-card-gamma p,
.price-card-delta p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 1.5rem 0;
}

.select-service-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 1rem;
}

.select-service-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Form Section */
.form-section {
    padding: 7rem 2rem;
    background: #ffffff;
}

.form-container-irregular {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-title-offset {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group-offset,
.form-group-diagonal,
.form-group-wide,
.form-group-full {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.main-form label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.main-form input,
.main-form select,
.main-form textarea {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.main-form input:focus,
.main-form select:focus,
.main-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-submit-btn {
    padding: 1.2rem 3rem;
    background: #27ae60;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

/* Final CTA */
.final-cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.final-cta-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.final-cta-asymmetric h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cta-button-final {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: #ffffff;
    color: #764ba2;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 5px;
}

.cta-button-final:hover {
    background: #ecf0f1;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Disclaimer */
.disclaimer-section {
    padding: 3rem 2rem;
    background: #ecf0f1;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    text-align: center;
    font-style: italic;
}

/* Footer */
.footer-irregular {
    background: #1a1a1a;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

.footer-content-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-block-one,
.footer-block-two,
.footer-block-three {
    flex: 1;
}

.footer-block-one h4,
.footer-block-two h5,
.footer-block-three h5 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.3rem;
}

.footer-block-one p {
    color: #bbb;
    line-height: 1.6;
}

.footer-block-two ul,
.footer-block-three ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-block-two a,
.footer-block-three a {
    color: #bbb;
}

.footer-block-two a:hover,
.footer-block-three a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
}

/* Page Hero Offset */
.page-hero-offset {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

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

.page-hero-offset .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-story {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

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

.story-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.story-image-diagonal {
    flex: 1;
    transform: rotate(-3deg);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-image-diagonal img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Mission Section */
.mission-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.mission-container-irregular h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.mission-container-irregular > p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
}

.mission-points-offset {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-point-a,
.mission-point-b,
.mission-point-c {
    padding: 2rem;
    background: #ffffff;
    border-radius: 6px;
    border-left: 5px solid #3498db;
}

.mission-point-b {
    margin-left: 10%;
    border-left-color: #e74c3c;
}

.mission-point-c {
    margin-left: auto;
    max-width: 85%;
    border-left-color: #27ae60;
}

.mission-point-a h4,
.mission-point-b h4,
.mission-point-c h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.mission-point-a p,
.mission-point-b p,
.mission-point-c p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Team Section */
.team-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.team-layout-asymmetric {
    max-width: 1100px;
    margin: 0 auto;
}

.team-layout-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-layout-asymmetric > p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
}

.team-experience-blocks {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.experience-block-one,
.experience-block-two,
.experience-block-three {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2.5rem;
    border-radius: 8px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.experience-block-two {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.experience-block-three {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.exp-number {
    font-size: 3rem;
    font-weight: 800;
}

.exp-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Approach Section */
.approach-section {
    padding: 6rem 2rem;
    background: #ecf0f1;
}

.approach-wrapper-diagonal {
    max-width: 1100px;
    margin: 0 auto;
}

.approach-wrapper-diagonal h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-wrapper-diagonal > p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
}

.approach-steps-irregular {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step-offset-a,
.step-offset-b,
.step-offset-c,
.step-offset-d {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-offset-b {
    margin-left: 8%;
}

.step-offset-c {
    margin-left: auto;
    max-width: 85%;
}

.step-offset-d {
    margin-left: 5%;
    max-width: 90%;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-offset-a h4,
.step-offset-b h4,
.step-offset-c h4,
.step-offset-d h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step-offset-a p,
.step-offset-b p,
.step-offset-c p,
.step-offset-d p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Values Section */
.values-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.values-container-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    text-align: center;
}

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

.value-card-alpha,
.value-card-beta,
.value-card-gamma {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 5px solid #3498db;
}

.value-card-beta {
    border-top-color: #e74c3c;
}

.value-card-gamma {
    border-top-color: #27ae60;
}

.value-card-alpha h4,
.value-card-beta h4,
.value-card-gamma h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card-alpha p,
.value-card-beta p,
.value-card-gamma p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* CTA About */
.cta-about-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-about-irregular {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-about-irregular h3 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
}

.cta-button-about {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: #ffffff;
    color: #764ba2;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 5px;
}

.cta-button-about:hover {
    background: #ecf0f1;
    transform: translateY(-2px);
}

/* Services Page Styles */
.services-intro {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.intro-asymmetric-layout {
    max-width: 900px;
    margin: 0 auto;
}

.intro-asymmetric-layout p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.services-detailed {
    padding: 4rem 2rem;
    background: #ffffff;
}

.service-block-irregular-one,
.service-block-irregular-two,
.service-block-irregular-three,
.service-block-irregular-four,
.service-block-irregular-five,
.service-block-irregular-six {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-content-left,
.service-content-right {
    flex: 1;
}

.service-content-left h2,
.service-content-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.service-content-left p,
.service-content-right p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-content-left h4,
.service-content-right h4 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: #2c3e50;
}

.service-content-left ul,
.service-content-right ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-content-left li,
.service-content-right li {
    margin-bottom: 0.7rem;
    color: #555;
    font-size: 1.05rem;
}

.service-duration {
    font-weight: 600;
    color: #3498db;
    font-size: 1.05rem;
    margin: 1rem 0;
}

.service-price-display {
    margin: 1.5rem 0;
}

.price-label {
    font-size: 1.1rem;
    color: #555;
    margin-right: 0.5rem;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c3e50;
}

.service-select-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 1rem;
}

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

.service-image-left,
.service-image-right {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-image-left img,
.service-image-right img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-image-left {
    transform: rotate(-2deg);
}

.service-image-right {
    transform: rotate(2deg);
}

/* Services Guarantee */
.services-guarantee {
    padding: 5rem 2rem;
    background: #ecf0f1;
}

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

.guarantee-container-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.guarantee-container-asymmetric > p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
}

.guarantee-points-irregular {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.guarantee-point-a,
.guarantee-point-b,
.guarantee-point-c {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 5px solid #3498db;
}

.guarantee-point-b {
    border-left-color: #e74c3c;
}

.guarantee-point-c {
    border-left-color: #27ae60;
}

.guarantee-point-a h4,
.guarantee-point-b h4,
.guarantee-point-c h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.guarantee-point-a p,
.guarantee-point-b p,
.guarantee-point-c p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

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

.cta-services-irregular {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-services-irregular h3 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
}

.cta-button-services {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: #ffffff;
    color: #764ba2;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 5px;
}

.cta-button-services:hover {
    background: #ecf0f1;
    transform: translateY(-2px);
}

/* Contact Page Styles */
.contact-info {
    padding: 5rem 2rem;
    background: #ffffff;
}

.contact-layout-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-details-block {
    flex: 1;
}

.contact-details-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.contact-item-offset,
.contact-item-diagonal,
.contact-item-wide {
    margin-bottom: 2.5rem;
}

.contact-item-offset h4,
.contact-item-diagonal h4,
.contact-item-wide h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 700;
}

.contact-item-offset p,
.contact-item-diagonal p,
.contact-item-wide p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.contact-visual-block {
    flex: 1;
}

.contact-visual-block img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
}

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

.contact-note a {
    color: #3498db;
    text-decoration: underline;
}

/* Contact Additional */
.contact-additional {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.additional-info-asymmetric {
    max-width: 1100px;
    margin: 0 auto;
}

.additional-info-asymmetric h3 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    text-align: center;
}

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

.contact-step-one,
.contact-step-two,
.contact-step-three {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
}

.step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-step-one h4,
.contact-step-two h4,
.contact-step-three h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-step-one p,
.contact-step-two p,
.contact-step-three p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Contact CTA */
.contact-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-contact-irregular {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-contact-irregular h3 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
}

.cta-button-contact {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: #ffffff;
    color: #764ba2;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 5px;
}

.cta-button-contact:hover {
    background: #ecf0f1;
    transform: translateY(-2px);
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
}

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

.thanks-content-asymmetric h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.thanks-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.thanks-details {
    padding: 6rem 2rem;
    background: #ffffff;
}

.thanks-layout-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.thanks-info-block {
    flex: 1.2;
}

.thanks-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.next-steps-offset {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.next-step-one,
.next-step-two,
.next-step-three {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid #27ae60;
}

.next-step-two {
    margin-left: 8%;
    border-left-color: #3498db;
}

.next-step-three {
    margin-left: auto;
    max-width: 90%;
    border-left-color: #e74c3c;
}

.step-icon {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.next-step-one h4,
.next-step-two h4,
.next-step-three h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.next-step-one p,
.next-step-two p,
.next-step-three p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.thanks-visual-block {
    flex: 0.8;
}

.thanks-visual-block img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.thanks-service-reference {
    padding: 4rem 2rem;
    background: #ecf0f1;
}

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

.service-ref-container h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.selected-service-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.service-ref-note {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.thanks-additional {
    padding: 5rem 2rem;
    background: #ffffff;
}

.additional-links-asymmetric {
    max-width: 1100px;
    margin: 0 auto;
}

.additional-links-asymmetric h3 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    text-align: center;
}

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

.link-card-a,
.link-card-b,
.link-card-c {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    border-top: 5px solid #3498db;
}

.link-card-b {
    border-top-color: #e74c3c;
}

.link-card-c {
    border-top-color: #27ae60;
}

.link-card-a h4,
.link-card-b h4,
.link-card-c h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.link-card-a p,
.link-card-b p,
.link-card-c p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.link-card-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
}

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

/* Legal Pages */
.legal-content {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.legal-text-container h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.2rem;
    color: #1a1a1a;
}

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

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

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

.legal-text-container li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

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

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #ecf0f1;
    font-style: italic;
    color: #888;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .cookie-content {
        flex-direction: column;
    }

    .hero-irregular {
        min-height: auto;
        padding: 4rem 0;
    }

    .hero-overlay-block {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: 2rem;
    }

    .hero-image-diagonal {
        position: relative;
        right: 0;
        top: 0;
        width: 90%;
        margin: 2rem auto;
        transform: none;
    }

    .content-zigzag,
    .overlap-container,
    .scenario-columns,
    .stats-grid-irregular,
    .content-asymmetric-layout,
    .contact-layout-asymmetric,
    .thanks-layout-irregular {
        flex-direction: column;
    }

    .insight-block-right {
        transform: none;
        margin-left: 0;
    }

    .problem-visual-two {
        transform: none;
    }

    .service-block-irregular-one,
    .service-block-irregular-two,
    .service-block-irregular-three,
    .service-block-irregular-four,
    .service-block-irregular-five,
    .service-block-irregular-six {
        flex-direction: column;
    }

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

    .footer-content-asymmetric {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-title-offset {
        font-size: 2rem;
    }

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

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

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

    .testimonial-card-offset,
    .testimonial-card-diagonal {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .benefit-block-two,
    .benefit-block-three {
        margin-left: 0;
        max-width: 100%;
    }

    .price-card-beta,
    .price-card-gamma,
    .price-card-delta {
        margin-left: 0;
        max-width: 100%;
    }

    .mission-point-b,
    .mission-point-c {
        margin-left: 0;
        max-width: 100%;
    }

    .step-offset-b,
    .step-offset-c,
    .step-offset-d {
        margin-left: 0;
        max-width: 100%;
    }

    .next-step-two,
    .next-step-three {
        margin-left: 0;
        max-width: 100%;
    }
}