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

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

/* Ad Notice - Mandatory */
.ad-notice {
    background: #f8f9fa;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

/* Navigation - Asymmetric */
.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

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

/* Hero Section - Asymmetric */
.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    padding: 80px 8% 60px;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.hero-content-offset {
    flex: 1;
    max-width: 580px;
    padding-right: 60px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.65;
    color: #555;
    margin-bottom: 38px;
    font-weight: 400;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    object-fit: cover;
    background-color: #e8eaed;
}

.cta-primary {
    display: inline-block;
    padding: 16px 42px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.3);
}

/* Intro Section - Irregular */
.intro-irregular {
    display: flex;
    padding: 100px 8%;
    gap: 80px;
    background: #ffffff;
}

.intro-block-left {
    flex: 1.2;
    padding-top: 30px;
}

.intro-block-left h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 28px;
    line-height: 1.3;
}

.intro-block-left p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.intro-block-right {
    flex: 1;
    padding-top: 60px;
}

.intro-block-right p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 28px;
}

.link-arrow {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    padding-right: 25px;
}

.link-arrow::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: right 0.3s;
}

.link-arrow:hover::after {
    right: -5px;
}

/* Problem Amplification Section */
.problem-amplification {
    display: flex;
    padding: 80px 8%;
    background: #f8f9fa;
    gap: 60px;
    align-items: center;
}

.problem-visual {
    flex: 0.9;
}

.problem-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: #e8eaed;
}

.problem-content {
    flex: 1.1;
    padding-left: 40px;
}

.problem-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.problem-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: #444;
}

.problem-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-size: 28px;
    line-height: 1;
}

/* Approach Section - Offset */
.approach-offset {
    padding: 100px 8%;
    background: #ffffff;
}

.approach-header {
    max-width: 680px;
    margin-bottom: 60px;
    margin-left: 12%;
}

.approach-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.approach-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.approach-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.card-approach {
    flex: 1;
    min-width: 280px;
    padding: 40px 35px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
}

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

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

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

.card-approach:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.card-approach h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.card-approach p {
    font-size: 16px;
    color: #555;
    line-height: 1.65;
}

/* Services Preview - Irregular */
.services-preview-irregular {
    padding: 100px 8%;
    background: #f8f9fa;
}

.section-title-offset {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    margin-left: 8%;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-large {
    flex: 1 1 100%;
    display: flex;
}

.service-small {
    flex: 1 1 calc(50% - 15px);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e8eaed;
}

.service-large img {
    width: 50%;
    height: auto;
}

.service-info {
    padding: 35px 30px;
}

.service-large .service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.btn-service {
    padding: 12px 28px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.view-all-services {
    display: inline-block;
    padding: 14px 36px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    margin-left: 8%;
    transition: all 0.3s;
}

.view-all-services:hover {
    background: #2c3e50;
    transform: translateY(-2px);
}

/* Trust Building Section */
.trust-building {
    display: flex;
    padding: 100px 8%;
    gap: 70px;
    background: #ffffff;
    align-items: center;
}

.trust-content {
    flex: 1.1;
    padding-right: 40px;
}

.trust-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 28px;
}

.trust-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.trust-content a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
}

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

.trust-image {
    flex: 0.9;
}

.trust-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    object-fit: cover;
    background-color: #e8eaed;
}

/* Testimonials - Offset */
.testimonials-offset {
    padding: 100px 8%;
    background: #f8f9fa;
}

.testimonials-offset h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
}

.testimonial-blocks {
    display: flex;
    gap: 50px;
}

.testimonial {
    flex: 1;
    padding: 45px 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

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

.testimonial p {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

/* Form Section - Asymmetric */
.form-section-asymmetric {
    padding: 100px 8%;
    background: #2c3e50;
    color: #ffffff;
}

.form-intro {
    max-width: 580px;
    margin-bottom: 50px;
    margin-left: 6%;
}

.form-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #e0e0e0;
}

.lead-form {
    max-width: 620px;
    margin-left: 6%;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255,255,255,0.15);
}

.form-group select option {
    background: #2c3e50;
    color: #ffffff;
}

.btn-submit {
    padding: 16px 48px;
    background: #ffffff;
    color: #2c3e50;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 8%;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* Footer - Asymmetric */
.footer-asymmetric {
    background: #1a1a1a;
    color: #cccccc;
    padding: 70px 8% 30px;
}

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1.2;
}

.footer-brand h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.6;
    color: #999;
}

.footer-links,
.footer-legal {
    flex: 0.8;
}

.footer-links h4,
.footer-legal h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #ffffff;
}

.footer-references {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.footer-references h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-references ol {
    padding-left: 20px;
}

.footer-references li {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.6;
}

.footer-references a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-references a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #777;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 25px 8%;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: #e0e0e0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background: #2c3e50;
    color: #ffffff;
}

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

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

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

.cookie-policy-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 14px;
    white-space: nowrap;
}

.cookie-policy-link:hover {
    color: #e0e0e0;
}

/* Page Hero - Offset */
.page-hero-offset {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    padding: 100px 8% 80px;
    background: linear-gradient(to bottom, rgba(44, 62, 80, 0.8), rgba(26, 37, 47, 0.9)), #2c3e50;
    overflow: hidden;
}

.page-hero-offset img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3;
    background-color: #2c3e50;
}

.page-hero-content {
    max-width: 780px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #e0e0e0;
}

/* About Page Sections */
.about-philosophy {
    display: flex;
    padding: 100px 8%;
    gap: 70px;
    background: #ffffff;
}

.philosophy-main {
    flex: 1.5;
}

.philosophy-main h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 28px;
}

.philosophy-main p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.philosophy-aside {
    flex: 1;
    padding-top: 40px;
}

.insight-box {
    background: #f8f9fa;
    padding: 35px 30px;
    border-radius: 8px;
    border-left: 4px solid #2c3e50;
}

.insight-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.insight-box ul {
    list-style: none;
}

.insight-box li {
    padding: 10px 0;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

.insight-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: 700;
}

/* Methodology Section - Irregular */
.methodology-irregular {
    padding: 100px 8%;
    background: #f8f9fa;
}

.methodology-irregular h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
}

.method-blocks {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.method-block {
    display: flex;
    gap: 60px;
    align-items: center;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.method-secondary {
    flex-direction: row-reverse;
}

.method-block img {
    width: 45%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8eaed;
}

.method-text {
    flex: 1;
}

.method-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.method-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}

.method-text a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
}

.method-text a:hover {
    text-decoration: underline;
}

/* Process Section */
.process-section {
    padding: 100px 8%;
    background: #ffffff;
}

.process-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
}

.process-flow {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 240px;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
}

.step-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Principles Section */
.principles-section {
    padding: 100px 8%;
    background: #f8f9fa;
}

.principles-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
}

.principles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.principle-card {
    flex: 1 1 calc(50% - 18px);
    min-width: 300px;
    padding: 40px 35px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.principle-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.principle-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* CTA Section - Offset */
.cta-section-offset {
    padding: 100px 8%;
    background: #2c3e50;
}

.cta-content-about {
    max-width: 680px;
    margin-left: 10%;
    color: #ffffff;
}

.cta-content-about h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-content-about p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #e0e0e0;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Services Page */
.services-hero {
    padding: 100px 8% 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.services-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 20px;
    color: #666;
    max-width: 680px;
    margin: 0 auto;
}

.services-full {
    padding: 80px 8%;
    background: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    align-items: center;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-container {
    flex: 0 0 45%;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #e8eaed;
}

.service-detail-content {
    flex: 1;
    padding: 50px 45px;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-detail-content > p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0;
    font-size: 16px;
    color: #444;
    position: relative;
    padding-left: 28px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: 700;
    font-size: 18px;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin: 30px 0 25px;
}

.price-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

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

.btn-select-service {
    padding: 14px 35px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}

/* Process Info Section */
.process-info {
    padding: 80px 8%;
    background: #f8f9fa;
}

.process-info h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
}

.process-steps-services {
    display: flex;
    gap: 45px;
    justify-content: center;
}

.step-info {
    flex: 0 1 300px;
    text-align: center;
}

.step-icon {
    display: inline-block;
    width: 70px;
    height: 70px;
    background: #2c3e50;
    color: #ffffff;
    border-radius: 50%;
    font-size: 32px;
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 20px;
}

.step-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.step-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Form Section Services */
.form-section-services {
    padding: 100px 8%;
    background: #ffffff;
}

.form-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.form-wrapper .lead-form .form-group label {
    color: #1a1a1a;
}

.form-wrapper .lead-form .form-group input,
.form-wrapper .lead-form .form-group select {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    color: #1a1a1a;
}

.form-wrapper .lead-form .form-group input:focus,
.form-wrapper .lead-form .form-group select:focus {
    border-color: #2c3e50;
    background: #ffffff;
}

.form-wrapper .btn-submit {
    background: #2c3e50;
    color: #ffffff;
}

.form-wrapper .btn-submit:hover {
    background: #1a252f;
}

/* Contact Page */
.contact-hero {
    padding: 100px 8% 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 20px;
    color: #666;
}

.contact-main {
    padding: 80px 8%;
    background: #ffffff;
}

.contact-content-irregular {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.contact-info-block > p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 45px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-item .note {
    display: block;
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

.contact-image-block {
    flex: 0.8;
}

.contact-image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    object-fit: cover;
    background-color: #e8eaed;
}

.location-info {
    padding: 80px 8%;
    background: #f8f9fa;
}

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

.location-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.location-content > p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.location-details {
    display: flex;
    gap: 50px;
}

.location-item {
    flex: 1;
}

.location-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.location-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-cta-section {
    padding: 100px 8%;
    background: #ffffff;
}

.cta-box {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    background: #2c3e50;
    padding: 60px 50px;
    border-radius: 8px;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #e0e0e0;
}

.btn-cta {
    display: inline-block;
    padding: 16px 45px;
    background: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 8%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.thanks-content {
    max-width: 720px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #2c3e50;
    color: #ffffff;
    border-radius: 50%;
    font-size: 48px;
    line-height: 80px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.thanks-main-text {
    font-size: 19px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-confirmation {
    margin: 30px 0;
}

.service-selected {
    font-size: 17px;
    color: #2c3e50;
    background: #e8f4f8;
    padding: 15px 25px;
    border-radius: 6px;
    display: inline-block;
}

.thanks-detail {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.thanks-next-steps {
    background: #f8f9fa;
    padding: 35px 40px;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps li {
    padding: 12px 0 12px 30px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    position: relative;
}

.thanks-next-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: 700;
    font-size: 20px;
}

.btn-back-home {
    display: inline-block;
    padding: 16px 42px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s;
}

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

/* Legal Pages */
.legal-page {
    padding: 80px 8%;
    background: #ffffff;
    min-height: 70vh;
}

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

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.last-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 45px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 25px;
}

.legal-content li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table thead {
    background: #f8f9fa;
}

.cookie-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 2px solid #e0e0e0;
}

.cookie-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 6%;
    }

    .hero-content-offset {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .intro-irregular {
        flex-direction: column;
        gap: 40px;
    }

    .problem-amplification {
        flex-direction: column;
    }

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

    .service-large img {
        width: 100%;
        height: 300px;
    }

    .testimonial-blocks {
        flex-direction: column;
    }

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

    .method-block {
        flex-direction: column;
    }

    .method-secondary {
        flex-direction: column;
    }

    .method-block img {
        width: 100%;
    }

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

    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .service-image-container {
        flex: 0 0 auto;
        width: 100%;
        height: 300px;
    }

    .contact-content-irregular {
        flex-direction: column;
    }

    .location-details {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 25px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .approach-cards {
        flex-direction: column;
    }

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

    .services-grid-asymmetric {
        flex-direction: column;
    }

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

    .trust-building {
        flex-direction: column;
    }

    .process-flow {
        flex-direction: column;
    }

    .principles-grid {
        flex-direction: column;
    }

    .process-steps-services {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }

    .about-philosophy {
        flex-direction: column;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
}
