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

html {
    font-size: 16px;
    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;
}

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

a {
    color: #2c5282;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a365d;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    display: block;
    padding: 0.8rem 20px;
    color: #2c3e50;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2c5282;
    background: #f7fafc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-hero,
.btn-service,
.btn-select,
.btn-primary-large,
.sticky-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #2c5282;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1a365d;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2c5282;
    border: 2px solid #2c5282;
}

.btn-secondary:hover {
    background: #2c5282;
    color: #ffffff;
}

.btn-hero {
    background: #2c5282;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-hero:hover {
    background: #1a365d;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-service,
.btn-select {
    background: #e2e8f0;
    color: #2c5282;
    width: 100%;
    margin-top: 1rem;
}

.btn-service:hover,
.btn-select:hover {
    background: #2c5282;
    color: #ffffff;
}

.btn-primary-large {
    background: #2c5282;
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    font-size: 1.15rem;
}

.btn-primary-large:hover {
    background: #1a365d;
    color: #ffffff;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.hero-left {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

/* Intro Split Section */
.intro-split {
    display: flex;
    flex-direction: column;
}

.intro-split.reverse {
    flex-direction: column-reverse;
}

.intro-image,
.intro-text {
    flex: 1;
    padding: 3rem 1.5rem;
}

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

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.link-arrow {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: #2c5282;
}

.link-arrow:hover {
    color: #1a365d;
}

/* Problem Section */
.problem-section {
    background: #f7fafc;
    padding: 4rem 0;
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.problem-left,
.problem-right {
    flex: 1;
}

.problem-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
}

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

.problem-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    font-size: 1.05rem;
    border-bottom: 1px solid #e2e8f0;
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e53e3e;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #2c5282;
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: #4a5568;
    font-size: 1rem;
}

/* Approach Split */
.approach-split {
    display: flex;
    flex-direction: column;
}

.approach-text,
.approach-image {
    flex: 1;
    padding: 3rem 1.5rem;
}

.section-label {
    display: inline-block;
    background: #edf2f7;
    color: #2c5282;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.approach-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
}

.approach-text p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.approach-steps {
    margin-top: 2rem;
}

.step {
    padding: 1rem 0;
    border-left: 3px solid #2c5282;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.step strong {
    display: block;
    color: #1a365d;
    margin-bottom: 0.3rem;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Services Preview */
.services-preview {
    padding: 4rem 0;
    background: #ffffff;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a365d;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border-color: #2c5282;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2c5282;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #2c5282;
    margin-bottom: 1rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Case Split */
.case-split {
    display: flex;
    flex-direction: column;
    background: #f7fafc;
}

.case-split.reverse {
    flex-direction: column-reverse;
}

.case-image,
.case-text {
    flex: 1;
    padding: 3rem 1.5rem;
}

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

.case-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

.case-intro {
    font-size: 1.15rem;
    color: #2c5282;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.case-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #4a5568;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: #ffffff;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item {
    padding: 2rem;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #2c5282;
}

.trust-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a365d;
}

.trust-item p {
    color: #4a5568;
    font-size: 1rem;
}

/* Testimonial Split */
.testimonial-split {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.testimonial-content {
    flex: 1;
    padding: 3rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-content blockquote {
    max-width: 600px;
}

.testimonial-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-content cite {
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
}

/* Final CTA Split */
.final-cta-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 0;
    background: #f7fafc;
}

.cta-left,
.cta-right {
    flex: 1;
    padding: 2rem 1.5rem;
}

.cta-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

.cta-left p {
    font-size: 1.1rem;
    color: #4a5568;
}

.inline-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inline-form input,
.inline-form select,
.inline-form textarea {
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.inline-form input:focus,
.inline-form select:focus,
.inline-form textarea:focus {
    outline: none;
    border-color: #2c5282;
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-section a {
    color: #cbd5e0;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section p {
    color: #cbd5e0;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #cbd5e0;
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    background: #2c5282;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.sticky-btn:hover {
    background: #1a365d;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

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

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

.page-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 0;
}

.service-detail {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    background: #f7fafc;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-detail-content,
.service-detail-image {
    flex: 1;
    padding: 2.5rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

.service-desc {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #4a5568;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.service-timeline {
    color: #2c5282;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c5282;
}

.popular-badge {
    display: inline-block;
    background: #2c5282;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

/* Comparison Section */
.comparison-section {
    padding: 4rem 0;
    background: #ffffff;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a365d;
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comparison-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #2c5282;
}

.comparison-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a365d;
}

.comparison-card p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.comparison-recommend {
    color: #2c5282;
    font-weight: 700;
    font-size: 1.1rem;
}

/* CTA Form Section */
.cta-form-section {
    padding: 4rem 0;
    background: #f7fafc;
}

.cta-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-text,
.cta-form {
    flex: 1;
}

.cta-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

.cta-text p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.cta-benefits {
    list-style: none;
}

.cta-benefits li {
    padding: 0.5rem 0;
    color: #2c5282;
    font-weight: 600;
}

.cta-form form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Story Split */
.story-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 0;
}

.story-text,
.story-image {
    flex: 1;
    padding: 2rem 1.5rem;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
}

.story-text p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: #f7fafc;
}

.values-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a365d;
}

.values-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.values-split.reverse {
    flex-direction: column-reverse;
}

.value-item {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c5282;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

.value-item p {
    color: #4a5568;
    font-size: 1.05rem;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
}

.team-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

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

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
}

.member-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a365d;
}

.member-role {
    display: block;
    color: #2c5282;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    color: #4a5568;
}

/* Experience Split */
.experience-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 0;
    background: #f7fafc;
}

.experience-left,
.experience-right {
    flex: 1;
    padding: 2rem 1.5rem;
}

.experience-left h2,
.experience-right h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a365d;
}

.stat-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c5282;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: #4a5568;
    font-size: 0.95rem;
}

.industries-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.industries-list li {
    padding: 0.8rem 1rem;
    background: #ffffff;
    border-radius: 6px;
    border-left: 3px solid #2c5282;
    color: #4a5568;
}

/* References Section */
.references-section {
    padding: 4rem 0;
}

.references-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a365d;
}

.references-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reference-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #2c5282;
}

.reference-quote {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.reference-author strong {
    display: block;
    color: #1a365d;
    margin-bottom: 0.3rem;
}

.reference-author span {
    color: #718096;
    font-size: 0.9rem;
}

/* Approach Detailed */
.approach-detailed {
    padding: 4rem 0;
}

.approach-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a365d;
}

.approach-steps-detailed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-detail {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 8px;
}

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

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a365d;
}

.step-content p {
    color: #4a5568;
    font-size: 1.05rem;
}

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

.cta-content-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content-centered p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Contact Main */
.contact-main {
    padding: 4rem 0;
}

.contact-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a365d;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a365d;
}

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

.contact-item a {
    color: #2c5282;
    font-weight: 600;
}

.contact-note {
    display: block;
    font-size: 0.9rem;
    color: #718096;
    margin-top: 0.5rem;
    font-style: italic;
}

.contact-map {
    width: 100%;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(44, 82, 130, 0.9);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 6px;
}

/* Contact Why */
.contact-why {
    padding: 4rem 0;
    background: #f7fafc;
}

.contact-why h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a365d;
}

.why-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c5282;
}

.why-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a365d;
}

.why-item p {
    color: #4a5568;
    font-size: 1.05rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a365d;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a365d;
}

.faq-item p {
    color: #4a5568;
    font-size: 1.05rem;
}

/* Contact CTA */
.contact-cta {
    padding: 4rem 0;
    background: #f7fafc;
}

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Thanks Hero */
.thanks-hero {
    padding: 4rem 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #48bb78;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.service-info {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.service-info strong {
    color: #2c5282;
}

.thanks-next h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a365d;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.next-step {
    display: flex;
    gap: 1.5rem;
    text-align: left;
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
}

.step-num {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #2c5282;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a365d;
}

.step-text p {
    color: #4a5568;
    font-size: 1rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

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

.thanks-extra h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
}

.extra-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.extra-link {
    display: block;
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2c5282;
    transition: all 0.3s ease;
}

.extra-link:hover {
    background: #edf2f7;
}

.extra-link strong {
    display: block;
    color: #1a365d;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.extra-link span {
    color: #4a5568;
    font-size: 0.95rem;
}

.thanks-contact {
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 8px;
}

.thanks-contact p {
    color: #4a5568;
    font-size: 1rem;
}

.thanks-contact a {
    color: #2c5282;
    font-weight: 600;
}

/* Legal Page */
.legal-page {
    padding: 4rem 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a365d;
}

.updated {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

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

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: #2c5282;
}

.legal-section p {
    color: #4a5568;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: #f7fafc;
}

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

.cookie-table th {
    background: #2c5282;
    color: #ffffff;
    font-weight: 600;
}

.cookie-table td {
    color: #4a5568;
}

.link-button {
    background: none;
    border: none;
    color: #2c5282;
    text-decoration: underline;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
}

.link-button:hover {
    color: #1a365d;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.legal-links a {
    background: #f7fafc;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    color: #2c5282;
    font-weight: 600;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    background: #2c5282;
    color: #ffffff;
}

/* Tablet and Up */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
        gap: 1rem;
    }

    .nav-menu a {
        padding: 0.5rem 1rem;
    }

    .hero-split,
    .intro-split,
    .approach-split,
    .case-split,
    .testimonial-split,
    .final-cta-split,
    .story-split,
    .experience-split,
    .contact-split,
    .cta-split,
    .service-detail {
        flex-direction: row;
    }

    .intro-split.reverse,
    .case-split.reverse,
    .service-detail.reverse {
        flex-direction: row-reverse;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .services-grid {
        flex-direction: row;
    }

    .split-content,
    .trust-grid,
    .comparison-grid,
    .why-grid,
    .team-grid,
    .references-grid {
        flex-direction: row;
    }

    .values-split {
        flex-direction: row;
    }

    .values-split.reverse {
        flex-direction: row-reverse;
    }

    .stat-row {
        flex-direction: row;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .thanks-actions,
    .extra-links {
        flex-direction: row;
        justify-content: center;
    }

    .sticky-cta {
        display: block;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

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