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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5a8a;
}

/* Navigation - Floating Style */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background: #ecf0f1;
    border-radius: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.btn-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

/* Main Content Spacing */
main {
    margin-top: 80px;
}

/* Hero Section - Offset Asymmetric */
.hero-offset {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-left {
    flex: 1;
    padding-left: 3rem;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1a252f;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtext {
    font-size: 1.25rem;
    color: #546e7a;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image-right {
    flex: 1;
    position: relative;
    transform: translateY(-40px);
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2980b9;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-primary:hover {
    background: #1a5a8a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(41, 128, 185, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #2980b9;
    border: 2px solid #2980b9;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-secondary:hover {
    background: #2980b9;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Intro Section - Asymmetric */
.intro-asymmetric {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.intro-block-offset {
    flex: 1.2;
    padding-right: 2rem;
}

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

.intro-block-offset p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.intro-visual {
    flex: 0.8;
    transform: translateX(30px);
}

.intro-visual img {
    border-radius: 8px;
    box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.12);
}

/* Approach Section - Layered Cards */
.approach-layered {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%);
}

.approach-content {
    max-width: 1400px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 2.8rem;
    color: #1a252f;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.approach-cards-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.approach-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: calc(50% - 1rem);
    min-width: 280px;
}

.approach-card.card-1 {
    transform: rotate(-1deg);
}

.approach-card.card-2 {
    transform: translateY(-20px) rotate(1deg);
}

.approach-card.card-3 {
    transform: translateY(20px) rotate(-0.5deg);
}

.approach-card.card-4 {
    transform: rotate(0.5deg);
}

.approach-card:hover {
    transform: translateY(-10px) rotate(0deg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.approach-card h3 {
    font-size: 1.5rem;
    color: #2980b9;
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-card p {
    color: #546e7a;
    line-height: 1.7;
}

/* Services Preview - Offset */
.services-preview-offset {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.services-intro {
    flex: 0.8;
    padding-top: 2rem;
}

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

.services-intro p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.link-arrow {
    color: #2980b9;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(10px);
}

.services-highlight {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card-compact {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #2980b9;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card-compact:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.service-card-compact h4 {
    font-size: 1.3rem;
    color: #1a252f;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-card-compact p {
    color: #546e7a;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price-tag {
    display: inline-block;
    font-weight: 700;
    color: #27ae60;
    font-size: 1.2rem;
}

/* Why Us Split Section */
.why-us-split {
    padding: 6rem 2rem;
    background: #1a252f;
    color: #ffffff;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.why-image {
    flex: 1;
    transform: translateX(-40px);
}

.why-image img {
    border-radius: 10px;
    box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.4);
}

.why-content {
    flex: 1;
    padding-right: 3rem;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

/* Testimonials - Asymmetric Layout */
.testimonials-asymmetric {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-asymmetric h2 {
    font-size: 2.8rem;
    color: #1a252f;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.testimonials-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
    flex: 1;
    min-width: 280px;
}

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

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

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

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
}

/* CTA Section - Diagonal */
.cta-section-diagonal {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #2980b9 0%, #1a5a8a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-diagonal::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(15deg);
}

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

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

.cta-content-box p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-content-box .cta-primary {
    background: #ffffff;
    color: #2980b9;
}

.cta-content-box .cta-primary:hover {
    background: #ecf0f1;
    transform: translateY(-5px);
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    margin-left: 15%;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.form-container-offset h2 {
    font-size: 2.3rem;
    color: #1a252f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-container-offset > p {
    color: #546e7a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: #2980b9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1a5a8a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(41, 128, 185, 0.3);
}

/* Info Block Offset */
.info-block-offset {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    margin-right: 15%;
}

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

.info-content p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.7;
    color: #bdc3c7;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 1rem auto 0;
}

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

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: #27ae60;
    color: #ffffff;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #229954;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.5);
}

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

.page-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    margin-left: 20%;
}

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

.page-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Story Section - Asymmetric */
.story-section-asymmetric {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.story-block {
    flex: 1.3;
}

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

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

.story-image {
    flex: 0.7;
    transform: translateY(40px);
}

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

/* Values - Irregular Grid */
.values-irregular {
    padding: 6rem 2rem;
    background: #f8f9fa;
    max-width: 1400px;
    margin: 0 auto;
}

.values-irregular h2 {
    font-size: 2.8rem;
    color: #1a252f;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.value-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    transition: all 0.3s ease;
}

.value-card.value-1 {
    border-top: 5px solid #3498db;
}

.value-card.value-2 {
    border-top: 5px solid #e74c3c;
}

.value-card.value-3 {
    border-top: 5px solid #f39c12;
}

.value-card.value-4 {
    border-top: 5px solid #9b59b6;
}

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

.value-card h3 {
    font-size: 1.5rem;
    color: #1a252f;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Team Approach */
.team-approach {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-intro-offset {
    margin-left: 10%;
}

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

.team-intro-offset p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Expertise Section */
.expertise-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
}

.expertise-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

.expertise-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.expertise-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
    font-weight: 600;
}

.expertise-item p {
    line-height: 1.7;
    color: #ecf0f1;
}

/* Philosophy Offset */
.philosophy-offset {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.philosophy-content {
    flex: 1.2;
}

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

.philosophy-content p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.philosophy-visual {
    flex: 0.8;
    transform: translateX(-30px);
}

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

/* Approach Timeline */
.approach-timeline {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.approach-timeline h2 {
    font-size: 2.8rem;
    color: #1a252f;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.timeline-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2980b9;
    min-width: 60px;
}

.timeline-item h3 {
    font-size: 1.5rem;
    color: #1a252f;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.timeline-item p {
    color: #546e7a;
    line-height: 1.7;
}

/* CTA About */
.cta-about {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #16a085 0%, #27ae60 100%);
    color: #ffffff;
}

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

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

.cta-about .cta-primary {
    background: #ffffff;
    color: #16a085;
}

.cta-about .cta-primary:hover {
    background: #ecf0f1;
}

/* Services Detailed */
.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem;
    background: #ffffff;
    border-radius: 12px;
}

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

.service-offset-2 {
    transform: translateX(30px);
    background: #f8f9fa;
}

.service-offset-3 {
    transform: translateX(-20px);
}

.service-offset-4 {
    transform: translateX(20px);
    background: #f8f9fa;
}

.service-offset-5 {
    transform: translateX(-25px);
}

.service-offset-6 {
    transform: translateX(25px);
    background: #f8f9fa;
}

.service-content {
    flex: 1;
}

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

.service-content > p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-details ul {
    list-style: none;
    margin: 2rem 0;
}

.service-details li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #546e7a;
    line-height: 1.6;
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-pricing {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #ecf0f1;
}

.service-pricing .price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    display: block;
    margin-bottom: 0.5rem;
}

.price-info {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.service-image {
    flex: 0.7;
}

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

/* Pricing Transparency */
.pricing-transparency {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

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

.pricing-content > p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.pricing-factors {
    list-style: none;
    max-width: 700px;
    margin: 2rem auto;
    text-align: left;
}

.pricing-factors li {
    padding: 1rem 1.5rem;
    background: #ffffff;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: #2c3e50;
    font-weight: 500;
}

/* Service Packages */
.service-packages {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.packages-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.package-card {
    flex: 1;
    min-width: 280px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.4);
}

.package-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.package-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.package-benefit {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

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

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

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
    line-height: 1.7;
}

/* Contact Main Section */
.contact-main-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-details {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-item {
    flex: 1;
    min-width: 220px;
}

.contact-item h4 {
    font-size: 1.3rem;
    color: #2980b9;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-item p {
    color: #546e7a;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-note {
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #2980b9;
    border-radius: 6px;
    margin-top: 2rem;
}

.contact-note p {
    color: #546e7a;
    line-height: 1.7;
    margin: 0;
}

/* Location Section */
.location-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

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

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

.location-content p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* Expectations Section */
.expectations-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.expectation-item {
    flex: 1;
    min-width: 260px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #2980b9;
}

.expectation-item h4 {
    font-size: 1.4rem;
    color: #1a252f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.expectation-item p {
    color: #546e7a;
    line-height: 1.7;
}

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

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

.faq-items {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq-item h4 {
    font-size: 1.3rem;
    color: #2980b9;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* CTA Contact */
.cta-contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2980b9 0%, #1a5a8a 100%);
}

.contact-simple {
    margin-top: 2rem;
}

.contact-email-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Thanks Hero */
.thanks-hero {
    padding: 8rem 2rem 5rem;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    text-align: center;
    color: #ffffff;
}

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

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.thanks-service-info {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.thanks-service-info p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Next Steps */
.next-steps {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.next-steps h2 {
    font-size: 2.5rem;
    color: #1a252f;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.step-item {
    flex: 1;
    min-width: 260px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: #2980b9;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

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

.step-item p {
    color: #546e7a;
    line-height: 1.7;
}

/* Thanks Resources */
.thanks-resources {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

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

.thanks-resources > p {
    text-align: center;
    color: #546e7a;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.resource-links {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.resource-link {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.resource-link h4 {
    font-size: 1.4rem;
    color: #2980b9;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.resource-link p {
    color: #546e7a;
    line-height: 1.6;
}

/* Thanks Note */
.thanks-note {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.note-box {
    padding: 2rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}

.note-box h3 {
    font-size: 1.4rem;
    color: #856404;
    margin-bottom: 1rem;
    font-weight: 600;
}

.note-box p {
    color: #856404;
    line-height: 1.7;
    margin: 0;
}

/* Legal Page */
.legal-page {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.8rem;
    color: #1a252f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-updated {
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.legal-content p {
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.legal-content ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-content li {
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-note {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-top: 3rem;
    font-style: italic;
}

/* Services Intro Block */
.services-intro-block {
    padding: 3rem 2rem;
    background: #f8f9fa;
}

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

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

.services-intro-content p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-offset,
    .intro-asymmetric,
    .services-preview-offset,
    .why-us-split,
    .story-section-asymmetric,
    .philosophy-offset,
    .service-block {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-image-right,
    .intro-visual,
    .story-image,
    .philosophy-visual {
        transform: none;
    }

    .form-container-offset,
    .info-block-offset,
    .page-hero-content,
    .team-intro-offset {
        margin-left: auto;
        margin-right: auto;
    }

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-content-left h1 {
        font-size: 2.5rem;
    }

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

    .approach-card,
    .testimonial,
    .value-card,
    .expertise-item,
    .package-card {
        width: 100%;
    }

    .approach-card.card-1,
    .approach-card.card-2,
    .approach-card.card-3,
    .approach-card.card-4 {
        transform: none;
    }

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

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

    .sticky-cta a {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content-left {
        padding-left: 0;
    }

    .hero-content-left h1 {
        font-size: 2rem;
    }

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

    main {
        margin-top: 100px;
    }

    h2 {
        font-size: 1.8rem;
    }
}