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

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

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

/* Navigation - Split Layout */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

.nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-right a {
    font-size: 0.95rem;
    color: #333;
}

.nav-right a:hover {
    color: #0066cc;
}

.nav-right a.active {
    color: #0066cc;
    font-weight: 600;
}

.nav-cta {
    background: #0066cc;
    color: #ffffff !important;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    font-weight: 500;
}

.nav-cta:hover {
    background: #0052a3;
    color: #ffffff !important;
}

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

.hero-content {
    flex: 1;
    padding: 5% 5% 5% 8%;
}

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

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

.hero-visual {
    flex: 1;
    overflow: hidden;
}

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

.btn-hero {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

/* Intro Offset Section - Split Layout */
.intro-offset {
    display: flex;
    padding: 6rem 8%;
    gap: 5rem;
    background: #f8f9fa;
}

.intro-text {
    flex: 1.2;
}

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

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
    line-height: 1.8;
}

.intro-stat {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Challenge Section - Alternating Split */
.challenge-section {
    display: flex;
    padding: 6rem 8%;
    gap: 4rem;
    align-items: center;
}

.challenge-visual {
    flex: 0.9;
}

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

.challenge-content {
    flex: 1.1;
}

.challenge-content h2 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.challenge-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.challenge-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: #0066cc;
}

.challenge-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

/* Solution Reveal */
.solution-reveal {
    padding: 6rem 8%;
    background: #ffffff;
}

.solution-header {
    text-align: center;
    margin-bottom: 4rem;
}

.solution-header h2 {
    font-size: 2.6rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.solution-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.solution-block {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.solution-block:hover {
    transform: translateY(-5px);
}

.solution-block img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.solution-block h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 0.8rem;
    color: #1a1a1a;
}

.solution-block p {
    padding: 0 1.5rem 1.5rem;
    color: #4a4a4a;
    line-height: 1.7;
}

/* Case Study - Split Layout */
.case-study {
    display: flex;
    padding: 6rem 8%;
    gap: 4rem;
    background: #0a1628;
    color: #ffffff;
}

.case-content {
    flex: 1.3;
}

.case-label {
    display: inline-block;
    background: #0066cc;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.case-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

blockquote {
    border-left: 4px solid #0066cc;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.15rem;
    color: #ffffff;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #aaa;
}

.case-visual {
    flex: 0.7;
}

.case-visual img {
    border-radius: 12px;
    height: 100%;
    object-fit: cover;
}

/* Services Preview */
.services-preview {
    padding: 6rem 8%;
    background: #f8f9fa;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    color: #555;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #e8e8e8;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #0066cc;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
}

.service-card.featured {
    border-color: #0066cc;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
}

.service-card.featured::before {
    content: "Priporočeno";
    position: absolute;
    top: -12px;
    left: 2rem;
    background: #0066cc;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.service-header h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    flex: 1;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0066cc;
    white-space: nowrap;
}

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

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

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a4a4a;
    font-size: 0.95rem;
}

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

/* Trust Section */
.trust-section {
    padding: 6rem 8%;
    background: #ffffff;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.trust-reasons {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.reason-item {
    padding-left: 3rem;
    position: relative;
}

.reason-item::before {
    content: "▸";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    color: #0066cc;
}

.reason-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.reason-item p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
}

/* Testimonials Alt */
.testimonials-alt {
    padding: 6rem 8%;
    background: #f0f4f8;
}

.testimonials-alt h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.testimonials-container {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    color: #666;
    font-size: 0.9rem;
}

/* Form Section */
.form-section {
    padding: 6rem 8%;
    background: #ffffff;
    display: flex;
    gap: 5rem;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    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: #0066cc;
}

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

.btn-submit:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.3);
}

/* Final CTA */
.final-cta {
    padding: 6rem 8%;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    text-align: center;
}

.final-content h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.final-content p {
    font-size: 1.3rem;
    color: #e8f2ff;
    margin-bottom: 2.5rem;
}

.btn-final {
    display: inline-block;
    background: #ffffff;
    color: #0066cc;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #cccccc;
}

.footer-main {
    display: flex;
    gap: 3rem;
    padding: 4rem 8%;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    color: #cccccc;
}

.footer-col a:hover {
    color: #0066cc;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 1.5rem 8%;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

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

.sticky-btn {
    display: block;
    background: #0066cc;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #0052a3;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 10000;
    box-shadow: 0 -4px 12px 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;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #66b3ff;
    text-decoration: underline;
}

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

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

.btn-primary {
    background: #0066cc;
    color: #ffffff;
}

.btn-primary:hover {
    background: #0052a3;
}

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

.btn-secondary:hover {
    border-color: #999;
}

/* Page Hero */
.page-hero {
    padding: 5rem 8%;
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-hero-content .lead {
    font-size: 1.3rem;
    color: #d4e6f7;
    max-width: 700px;
    margin: 0 auto;
}

/* About Page Styles */
.about-story {
    display: flex;
    padding: 6rem 8%;
    gap: 4rem;
    align-items: center;
}

.story-content {
    flex: 1.2;
}

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

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

.story-visual {
    flex: 0.8;
}

.story-visual img {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.about-turning {
    display: flex;
    padding: 6rem 8%;
    gap: 4rem;
    background: #f8f9fa;
}

.turning-visual {
    flex: 0.7;
}

.turning-visual img {
    border-radius: 12px;
}

.turning-content {
    flex: 1.3;
}

.turning-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.about-mission {
    padding: 6rem 8%;
    text-align: center;
}

.about-mission h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.mission-lead {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-blocks {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.mission-block {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
}

.mission-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.mission-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.about-team {
    padding: 6rem 8%;
    background: #f8f9fa;
}

.about-team h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.team-member {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

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

.team-role {
    display: block;
    color: #0066cc;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-member p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.about-values {
    padding: 6rem 8%;
}

.about-values h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.value-item {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 5px solid #0066cc;
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

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

.about-cta {
    padding: 6rem 8%;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.btn-large {
    display: inline-block;
    background: #ffffff;
    color: #0066cc;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Services Page */
.services-detail {
    padding: 4rem 8%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.service-detail-card:hover {
    border-color: #0066cc;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.12);
}

.featured-service {
    border-color: #0066cc;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.premium-service {
    border-color: #ff9900;
    background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-header h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    flex: 1;
}

.price-badge {
    background: #0066cc;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-size: 1.3rem;
    font-weight: 700;
}

.popular-badge,
.guarantee-badge {
    background: #ff9900;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-detail-intro {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-detail-includes h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-detail-includes ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-includes li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #4a4a4a;
}

.service-detail-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-detail-timeline {
    margin: 1.5rem 0;
    font-size: 1.05rem;
    color: #666;
}

.btn-service {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-service:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.3);
}

.services-comparison {
    padding: 4rem 8%;
    background: #f8f9fa;
}

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

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    align-items: center;
    gap: 2rem;
}

.comparison-label {
    font-size: 1.1rem;
    color: #333;
    flex: 1;
}

.comparison-recommendation {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0066cc;
    white-space: nowrap;
}

.services-faq {
    padding: 4rem 8%;
}

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

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

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

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

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

.services-cta {
    padding: 5rem 8%;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    text-align: center;
}

.services-cta .cta-content h2 {
    font-size: 2.6rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.services-cta .cta-content p {
    font-size: 1.2rem;
    color: #d4e6f7;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-main {
    display: flex;
    padding: 4rem 8%;
    gap: 4rem;
}

.contact-info {
    flex: 1.2;
}

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

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

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #0066cc;
}

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

.contact-block a {
    color: #0066cc;
    text-decoration: underline;
}

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

.contact-visual {
    flex: 0.8;
}

.contact-visual img {
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contact-cta-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #0066cc;
}

.contact-cta-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

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

.contact-map {
    padding: 4rem 8%;
    background: #f8f9fa;
}

.contact-map h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.map-info {
    text-align: center;
    margin-bottom: 2rem;
}

.map-info p {
    font-size: 1.05rem;
    color: #555;
}

.map-placeholder {
    background: #e8e8e8;
    padding: 4rem;
    text-align: center;
    border-radius: 10px;
    font-size: 1.2rem;
    color: #666;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 8%;
    background: #f8f9fa;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: #0066cc;
    margin-bottom: 1rem;
}

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

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

.thanks-info {
    padding: 4rem 8%;
}

.info-box {
    max-width: 900px;
    margin: 0 auto;
}

.info-box h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

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

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

.step-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.thanks-additional {
    padding: 4rem 8%;
    background: #f8f9fa;
}

.additional-content h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.link-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.link-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.link-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.link-btn {
    display: inline-block;
    color: #0066cc;
    font-weight: 600;
    text-decoration: underline;
}

.link-btn:hover {
    color: #0052a3;
}

.thanks-note {
    padding: 3rem 8%;
}

.note-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff9e6;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #ff9900;
}

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

.note-content p:last-child {
    margin-bottom: 0;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 8%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 10px;
}

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

.legal-update {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-content li {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #0066cc;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-split,
    .intro-offset,
    .challenge-section,
    .case-study,
    .about-story,
    .about-turning,
    .form-section,
    .contact-main {
        flex-direction: column;
    }

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

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

    .solution-grid,
    .services-list,
    .testimonials-container,
    .mission-blocks,
    .team-grid,
    .additional-links {
        flex-direction: column;
    }

    .service-card,
    .solution-block,
    .testimonial,
    .mission-block,
    .team-member,
    .link-card {
        min-width: 100%;
    }

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

    .sticky-btn {
        width: 100%;
        text-align: center;
    }

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

    .comparison-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}
