/* 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: #2c3e50;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Navigation */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    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;
}

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

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

.nav-menu a {
    color: #5a6c7d;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    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: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

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

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

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

/* Split-Screen Hero Layout */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem 4rem 6rem;
    background: #f8f9fa;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #4a5568;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-primary-large {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #2c3e50;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #2c3e50;
    transition: all 0.3s;
}

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

/* Intro Split Section */
.intro-split {
    display: flex;
    align-items: stretch;
    min-height: 70vh;
}

.intro-image {
    flex: 1;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem 4rem 4rem;
    background: #ffffff;
}

.intro-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #4a5568;
}

/* Problem Block */
.problem-block {
    background: #1a252f;
    color: white;
    padding: 6rem 2rem;
}

.problem-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.problem-inner h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.problem-grid {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.problem-card {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.problem-card p {
    line-height: 1.7;
    color: #d5d8dc;
}

/* Technique Showcase */
.technique-showcase {
    display: flex;
    align-items: center;
    min-height: 75vh;
}

.technique-left {
    flex: 1;
    padding: 4rem 4rem 4rem 6rem;
    background: #ecf0f1;
}

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

.technique-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #4a5568;
}

.technique-list {
    list-style: none;
}

.technique-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
}

.technique-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.technique-right {
    flex: 1;
    overflow: hidden;
}

.technique-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.service-item:hover {
    border-color: #3498db;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.service-item.featured {
    background: #2c3e50;
    color: white;
}

.service-item.featured h3,
.service-item.featured p {
    color: white;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f39c12;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-item h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-item p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #4a5568;
}

.service-duration {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-item.featured .service-duration {
    color: #bdc3c7;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-item.featured .service-price {
    color: #3498db;
}

.btn-service,
.btn-service-page {
    display: block;
    width: 100%;
    background: #3498db;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Trust Split */
.trust-split {
    display: flex;
    align-items: stretch;
    min-height: 70vh;
}

.trust-content {
    flex: 1;
    padding: 4rem 6rem 4rem 4rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #4a5568;
}

blockquote {
    border-left: 4px solid #3498db;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #2c3e50;
    font-size: 1.05rem;
    line-height: 1.7;
}

cite {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.trust-image {
    flex: 1;
    overflow: hidden;
}

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

/* Methodology Block */
.methodology-block {
    padding: 6rem 2rem;
    background: #ffffff;
}

.methodology-block h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 700;
}

.method-steps {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.method-step {
    flex: 1;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    position: relative;
    padding-top: 4rem;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 2.5rem;
    width: 60px;
    height: 60px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.method-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.method-step p {
    line-height: 1.7;
    color: #4a5568;
}

/* Final CTA Split */
.final-cta-split {
    display: flex;
    align-items: stretch;
    min-height: 65vh;
}

.cta-image {
    flex: 1;
    overflow: hidden;
}

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

.cta-content {
    flex: 1;
    background: #1a252f;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

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

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

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

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

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

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

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

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

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

.btn-submit {
    background: #2c3e50;
    color: white;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1;
}

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

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

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

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

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 6rem 2rem 4rem;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: #bdc3c7;
    max-width: 700px;
    margin: 0 auto;
}

/* About Story */
.about-story {
    display: flex;
    padding: 6rem 2rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.story-content {
    flex: 1;
}

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

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

.story-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

/* Philosophy Block */
.philosophy-block {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.philosophy-block h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 700;
}

.philosophy-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
}

.phil-card {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

.phil-card p {
    line-height: 1.7;
    color: #5a6c7d;
}

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

.team-section h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.team-member {
    text-align: center;
    flex: 0 1 300px;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.team-member p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* Values Split */
.values-split {
    display: flex;
    align-items: stretch;
    min-height: 70vh;
}

.values-image {
    flex: 1;
    overflow: hidden;
}

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

.values-content {
    flex: 1;
    padding: 4rem 6rem 4rem 4rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-content h2 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.values-list li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.values-list strong {
    color: #2c3e50;
    font-size: 1.15rem;
}

/* Approach Section */
.approach-section {
    padding: 6rem 2rem;
    background: #ffffff;
    text-align: center;
}

.approach-section h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-section > p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.approach-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.approach-col {
    flex: 1;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.approach-col h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.approach-col p {
    line-height: 1.7;
    color: #5a6c7d;
    text-align: left;
}

/* CTA About */
.cta-about {
    padding: 5rem 2rem;
    background: #ecf0f1;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-detail {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    min-height: 70vh;
}

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

.service-detail-text {
    flex: 1;
    padding: 2rem;
}

.service-detail-text h2 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-tagline {
    font-size: 1.15rem;
    color: #3498db;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-detail-text > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #4a5568;
}

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

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #2c3e50;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-info p {
    margin: 0.5rem 0;
    color: #2c3e50;
}

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

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

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

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    flex: 1;
    padding: 1.5rem;
}

.comparison-cell.header {
    background: #2c3e50;
    color: white;
    font-weight: 700;
}

.comparison-row:not(:first-child) .comparison-cell:first-child {
    background: #f8f9fa;
    font-weight: 600;
}

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

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

.services-cta p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

/* Contact Split */
.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    gap: 4rem;
    padding: 0 2rem;
    align-items: stretch;
}

.contact-info {
    flex: 1;
    padding: 2rem;
}

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

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.contact-block p {
    line-height: 1.8;
    color: #4a5568;
    font-size: 1.05rem;
}

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

.contact-note {
    font-style: italic;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44,62,80,0.9);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

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

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

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

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

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

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

/* Contact CTA */
.contact-cta {
    padding: 5rem 2rem;
    background: #ffffff;
    text-align: center;
}

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

.contact-cta p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.contact-cta a {
    color: #3498db;
    text-decoration: underline;
    font-weight: 600;
}

/* Thanks Page */
.thanks-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 4rem 2rem;
}

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

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.service-confirmation {
    background: #e8f5e9;
    color: #27ae60;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    display: none;
}

.service-confirmation.show {
    display: block;
}

/* Next Steps */
.next-steps {
    padding: 6rem 2rem;
    background: #ffffff;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.step-card {
    flex: 1;
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    padding-top: 5rem;
}

.step-card .step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

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

.step-card p {
    line-height: 1.7;
    color: #5a6c7d;
}

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

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

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

.resource-card {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.resource-card p {
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

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

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

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

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

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

.legal-content ul li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #4a5568;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

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

.cookies-table tr:last-child td {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .technique-showcase,
    .trust-split,
    .final-cta-split,
    .values-split,
    .service-detail,
    .contact-split,
    .about-story {
        flex-direction: column;
    }

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

    .hero-text,
    .intro-content,
    .technique-left,
    .trust-content,
    .cta-content,
    .values-content {
        padding: 3rem 2rem;
    }

    .problem-grid,
    .method-steps,
    .approach-columns,
    .philosophy-grid,
    .team-grid,
    .steps-grid,
    .resources-grid {
        flex-direction: column;
    }

    .services-container {
        flex-direction: column;
    }

    .service-item {
        min-width: 100%;
    }
}

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

    .nav-menu {
        gap: 1.5rem;
        font-size: 0.95rem;
    }

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

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

    .cookie-content {
        flex-direction: column;
    }

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

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

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

    .nav-menu {
        display: none;
    }

    .btn-primary,
    .btn-primary-large {
        width: 100%;
        text-align: center;
    }
}
