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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

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

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

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

/* Sidebar Navigation */
.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 240px;
    background: #1a252f;
    color: #fff;
    padding: 2rem 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.nav-brand {
    padding: 0 1.5rem;
    margin-bottom: 3rem;
}

.nav-brand a {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.nav-links {
    flex: 1;
    padding: 0 1.5rem;
}

.nav-links li {
    margin-bottom: 0.5rem;
}

.nav-links a {
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #3498db;
}

.nav-cta {
    padding: 0 1.5rem;
    margin-top: 2rem;
}

.nav-btn {
    display: block;
    text-align: center;
    padding: 0.9rem 1.2rem;
    background: #3498db;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

/* Main Content */
.main-content {
    margin-left: 240px;
    min-height: 100vh;
}

/* Hero Asymmetric */
.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
}

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

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

.hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: #fff;
    color: #667eea;
    font-weight: 700;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.hero-visual {
    flex: 1;
    min-width: 320px;
    transform: translateY(40px) translateX(20px);
}

.hero-visual img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Offset Intro */
.offset-intro {
    padding: 6rem 2rem;
    background: #fff;
    position: relative;
}

.intro-narrow {
    max-width: 720px;
    margin: 0 0 0 8%;
    margin-bottom: 4rem;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 700;
}

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

.intro-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-left: 15%;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services Highlight */
.services-highlight {
    padding: 6rem 2rem;
    background: #f5f7fa;
}

.services-intro-block {
    max-width: 650px;
    margin: 0 auto 4rem 10%;
}

.services-intro-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 700;
}

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

.service-cards-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-card.offset-left {
    margin-left: 5%;
    margin-right: 10%;
}

.service-card.offset-right {
    margin-left: 10%;
    margin-right: 5%;
}

.service-visual {
    flex: 1;
    min-width: 280px;
}

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

.service-content {
    flex: 1.2;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 700;
}

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.price-label {
    font-size: 0.9rem;
    color: #777;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #3498db;
}

.price-unit {
    font-size: 0.95rem;
    color: #777;
}

.service-cta {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #3498db;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.service-cta:hover {
    background: #2980b9;
    transform: translateX(5px);
}

/* Process Flow */
.process-flow {
    padding: 6rem 2rem;
    background: #fff;
}

.process-flow h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a252f;
    font-weight: 700;
}

.process-steps {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.step-item {
    flex: 1;
    min-width: 240px;
    position: relative;
    padding-left: 4rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 3rem;
    font-weight: 800;
    color: #e8eef3;
    line-height: 1;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a252f;
    font-weight: 700;
}

.step-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Testimonials Asymmetric */
.testimonials-asymmetric {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.testimonials-header h2 {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 2.5rem;
    border-left: 4px solid #fff;
}

.testimonial.offset-left {
    margin-left: 5%;
    margin-right: 15%;
}

.testimonial.offset-right {
    margin-left: 15%;
    margin-right: 5%;
}

.testimonial p {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial cite {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    font-weight: 600;
}

/* CTA Floating */
.cta-floating {
    padding: 5rem 2rem;
    background: #1a252f;
    position: relative;
    overflow: hidden;
}

.cta-content-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content-block h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content-block p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #3498db;
    color: #fff;
    font-weight: 700;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.3);
}

.cta-large:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(52, 152, 219, 0.4);
}

/* Benefits Grid */
.benefits-grid {
    padding: 6rem 2rem;
    background: #f5f7fa;
}

.benefits-grid h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a252f;
    font-weight: 700;
}

.benefits-items {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.benefit-item {
    flex: 1;
    min-width: 260px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 700;
}

.benefit-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Form Wrapper */
.form-wrapper {
    padding: 6rem 2rem;
    background: #fff;
}

.form-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 200px;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a252f;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: #f5f7fa;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a252f;
    font-weight: 700;
}

.faq-items {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 700;
}

.faq-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* Footer */
.site-footer {
    background: #1a252f;
    color: #fff;
    padding: 4rem 2rem 2rem;
    margin-left: 240px;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.page-hero-simple h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    padding: 6rem 2rem;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
}

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

.story-block.offset-left {
    transform: translateX(-20px);
}

.story-block h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 700;
}

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

.story-visual {
    flex: 1;
    min-width: 320px;
}

.story-visual img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Values Asymmetric */
.values-asymmetric {
    padding: 6rem 2rem;
    background: #f5f7fa;
}

.values-asymmetric h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a252f;
    font-weight: 700;
}

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

.value-item {
    flex: 1;
    min-width: 260px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #3498db;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 700;
}

.value-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* Team Intro */
.team-intro {
    padding: 6rem 2rem;
    background: #fff;
}

.team-intro h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 700;
}

.team-lead {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.team-members {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.member-card {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.member-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.member-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a252f;
    font-weight: 700;
}

.member-role {
    display: block;
    font-size: 0.9rem;
    color: #3498db;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

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

.numbers-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
    font-weight: 700;
}

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

.number-box {
    flex: 1;
    min-width: 240px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 10px;
}

.big-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.number-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.approach-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a252f;
    font-weight: 700;
}

.approach-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.approach-text {
    flex: 1;
    min-width: 280px;
}

.approach-text h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 700;
}

.approach-text p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* CTA Simple */
.cta-simple {
    padding: 5rem 2rem;
    background: #fff;
    text-align: center;
}

.cta-simple h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 700;
}

.cta-simple p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Detail */
.services-detail {
    padding: 4rem 2rem;
}

.service-detail-item {
    max-width: 1300px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

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

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

.service-detail-content {
    flex: 1.3;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 700;
}

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

.service-detail-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: #1a252f;
    font-weight: 700;
}

.service-detail-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    margin-bottom: 0.7rem;
    color: #555;
    line-height: 1.6;
}

.service-pricing-box {
    background: #f5f7fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.price-main {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: #777;
}

.service-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Pricing Notes */
.pricing-notes {
    padding: 6rem 2rem;
    background: #f5f7fa;
}

.pricing-notes h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a252f;
    font-weight: 700;
}

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

.note-item {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.note-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 700;
}

.note-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* Process Overview */
.process-overview {
    padding: 6rem 2rem;
    background: #fff;
}

.process-overview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a252f;
    font-weight: 700;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.timeline-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
}

.step-num {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 60px;
    margin-bottom: 1rem;
}

.timeline-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a252f;
    font-weight: 700;
}

.timeline-step p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* CTA Services */
.cta-services {
    padding: 5rem 2rem;
    background: #1a252f;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.cta-services p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Contact Info Section */
.contact-info-section {
    padding: 6rem 2rem;
    background: #fff;
}

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

.contact-block {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 700;
}

.contact-block p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-block a {
    color: #3498db;
    font-weight: 600;
}

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

.contact-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 1rem;
}

/* Contact Directions */
.contact-directions {
    padding: 6rem 2rem;
    background: #f5f7fa;
}

.contact-directions h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a252f;
    font-weight: 700;
}

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

.directions-text {
    flex: 1;
    min-width: 320px;
}

.directions-text h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #1a252f;
    font-weight: 700;
}

.directions-text h3:first-child {
    margin-top: 0;
}

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

.directions-map {
    flex: 1;
    min-width: 320px;
}

.directions-map img {
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Contact FAQ */
.contact-faq {
    padding: 6rem 2rem;
    background: #fff;
}

.contact-faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a252f;
    font-weight: 700;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.cta-contact p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Thanks Section */
.thanks-section {
    padding: 6rem 2rem;
    background: #fff;
    min-height: 60vh;
}

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

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

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 800;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.thanks-info {
    background: #f5f7fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-info p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

.service-note {
    font-style: italic;
    color: #3498db;
    font-weight: 600;
}

.thanks-next h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 700;
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.next-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.next-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: 700;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #3498db;
    color: #fff;
}

/* Thanks Extra */
.thanks-extra {
    padding: 6rem 2rem;
    background: #f5f7fa;
}

.thanks-extra h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
    font-weight: 700;
}

.extra-links {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.extra-item {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.extra-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 700;
}

.extra-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.extra-item a {
    color: #3498db;
    font-weight: 600;
    transition: color 0.3s ease;
}

.extra-item a:hover {
    color: #2980b9;
}

/* Legal Page */
.legal-page {
    padding: 4rem 2rem;
    background: #fff;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 800;
    text-align: center;
}

.legal-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 700;
}

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

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

.legal-content ul li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

.legal-content a {
    color: #3498db;
    font-weight: 600;
}

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

.legal-update {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

.info-table {
    width: 100%;
    margin-bottom: 2rem;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid #eee;
}

.info-table td {
    padding: 1rem 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.info-table td:first-child {
    width: 35%;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .sidebar-nav {
        width: 200px;
    }

    .main-content {
        margin-left: 200px;
    }

    .site-footer {
        margin-left: 200px;
    }

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

@media (max-width: 768px) {
    .sidebar-nav {
        width: 100%;
        height: auto;
        position: relative;
        flex-direction: row;
        padding: 1rem;
        align-items: center;
        justify-content: space-between;
    }

    .nav-brand {
        margin-bottom: 0;
        padding: 0;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        margin-top: 0;
        padding: 0;
    }

    .nav-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .main-content {
        margin-left: 0;
    }

    .site-footer {
        margin-left: 0;
    }

    .hero-text-block {
        transform: none;
    }

    .hero-visual {
        transform: none;
    }

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

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

    .intro-narrow {
        margin-left: 0;
    }

    .intro-stats {
        margin-left: 0;
    }

    .services-intro-block {
        margin-left: 0;
    }

    .service-card.offset-left,
    .service-card.offset-right {
        margin-left: 0;
        margin-right: 0;
    }

    .service-card {
        flex-direction: column;
    }

    .testimonial.offset-left,
    .testimonial.offset-right {
        margin-left: 0;
        margin-right: 0;
    }

    .story-block.offset-left {
        transform: none;
    }

    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
    }

    .service-detail-content {
        padding: 2rem;
    }
}

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

    .form-row {
        flex-direction: column;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .page-hero-simple h1 {
        font-size: 2rem;
    }

    .cta-content-block h2 {
        font-size: 2rem;
    }
}