* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-right a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-right a:hover {
    color: #667eea;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 5% 4rem 8%;
    background: #fafafa;
}

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

.hero-text p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.hero-image-placeholder {
    width: 100%;
    min-height: 600px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.2s, background 0.2s;
}

.cta-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

.intro-asymmetric {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background: #ffffff;
}

.intro-left {
    flex: 1.2;
}

.intro-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

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

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

.stat-block {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: #f8f8f8;
    border-left: 4px solid #667eea;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #667eea;
}

.stat-label {
    font-size: 0.95rem;
    color: #4a4a4a;
    margin-top: 0.5rem;
}

.insight-full {
    padding: 5rem 8%;
    background: #1a1a1a;
    color: #ffffff;
}

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

.insight-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    color: #e5e5e5;
}

.insight-image-placeholder {
    width: 100%;
    height: 400px;
    margin-top: 2rem;
}

.services-grid {
    padding: 6rem 5%;
    background: #fafafa;
}

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

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-intro p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #ffffff;
    padding: 2.5rem;
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.7;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 1.5rem;
    display: block;
}

.cta-service {
    padding: 0.9rem 1.8rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
    font-size: 0.95rem;
}

.cta-service:hover {
    background: #333;
}

.trust-split {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background: #ffffff;
}

.trust-content {
    flex: 1.3;
}

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

.testimonial {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #f8f8f8;
    border-left: 3px solid #1a1a1a;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-style: italic;
}

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

.trust-visual {
    flex: 0.7;
    display: flex;
    align-items: center;
}

.certification-badges {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    padding: 1.5rem;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    border-radius: 4px;
}

.process-flow {
    padding: 6rem 8%;
    background: #f8f8f8;
}

.process-flow h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.step {
    flex: 1 1 calc(25% - 2rem);
    min-width: 220px;
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

.application-showcase {
    display: flex;
    min-height: 500px;
}

.app-left {
    flex: 1;
    display: flex;
}

.app-image-placeholder {
    width: 100%;
}

.app-right {
    flex: 1;
    padding: 4rem 5%;
    background: #1a1a1a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.app-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e5e5e5;
}

.technical-depth {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background: #fafafa;
}

.tech-content {
    flex: 1.2;
}

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

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

.tech-specs {
    flex: 0.8;
    display: flex;
    align-items: center;
}

.tech-specs ul {
    list-style: none;
    padding: 2rem;
    background: #ffffff;
    border-left: 4px solid #667eea;
}

.tech-specs li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e5e5e5;
    color: #1a1a1a;
}

.tech-specs li:last-child {
    border-bottom: none;
}

.form-section {
    padding: 6rem 5%;
    background: #ffffff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-container > p {
    text-align: center;
    color: #4a4a4a;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #d5d5d5;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    padding: 1.1rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #333;
}

.footer-split {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

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

.footer-col p {
    color: #b5b5b5;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-col a {
    display: block;
    color: #b5b5b5;
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}

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

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

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

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #667eea;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-cookie-accept {
    background: #667eea;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #5568d3;
}

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

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

.page-hero {
    padding: 5rem 8% 3rem;
    background: #fafafa;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.2rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

.story-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    background: #ffffff;
}

.story-content {
    flex: 1;
}

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

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

.story-visual {
    flex: 1;
    display: flex;
}

.story-image-placeholder {
    width: 100%;
    min-height: 400px;
}

.milestone-section {
    padding: 5rem 8%;
    background: #f8f8f8;
}

.milestone-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.timeline-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background: #ffffff;
    border-left: 3px solid #667eea;
}

.timeline-item .year {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 1rem;
}

.timeline-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.timeline-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.values-grid {
    padding: 5rem 5%;
    background: #ffffff;
}

.values-grid h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #fafafa;
    border-top: 4px solid #1a1a1a;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: #4a4a4a;
    line-height: 1.7;
}

.team-approach {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    background: #f8f8f8;
}

.team-left {
    flex: 1.2;
}

.team-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.team-left p {
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.team-right {
    flex: 0.8;
    display: flex;
    align-items: center;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #ffffff;
}

.expertise-icon {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: 700;
}

.research-commitment {
    padding: 5rem 8%;
    background: #1a1a1a;
    color: #ffffff;
}

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

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

.cta-about {
    padding: 5rem 5%;
    background: #ffffff;
    text-align: center;
}

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

.cta-about p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.services-detailed {
    padding: 4rem 5%;
    background: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

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

.service-detail-content {
    flex: 1.2;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail-content p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-detail-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.service-detail-visual {
    flex: 0.8;
}

.service-image-placeholder {
    width: 100%;
    min-height: 400px;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: #f8f8f8;
    margin: 2rem 0;
    border-left: 4px solid #667eea;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
}

.comparison-section {
    padding: 4rem 8%;
    background: #f8f8f8;
}

.comparison-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.contact-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    background: #ffffff;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.contact-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-block p {
    color: #4a4a4a;
    line-height: 1.7;
}

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

.contact-approach {
    flex: 1;
}

.contact-approach h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-approach h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-approach p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.contact-approach ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.contact-approach ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-approach ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.industries-served {
    padding: 5rem 5%;
    background: #f8f8f8;
}

.industries-served h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.industry-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 260px;
    padding: 2rem;
    background: #ffffff;
    border-top: 3px solid #667eea;
}

.industry-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.industry-card p {
    color: #4a4a4a;
    line-height: 1.7;
}

.regional-coverage {
    padding: 4rem 8%;
    background: #ffffff;
}

.regional-coverage h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.faq-contact {
    padding: 5rem 5%;
    background: #f8f8f8;
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.faq-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 4rem 5%;
    background: #fafafa;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 4rem 3rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

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

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-reference {
    padding: 1.5rem;
    background: #f8f8f8;
    margin-bottom: 2rem;
    border-left: 4px solid #667eea;
    font-weight: 600;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background: #fafafa;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.step-simple {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #667eea;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.step-simple p {
    color: #4a4a4a;
    line-height: 1.7;
    margin: 0;
}

.thanks-info {
    margin: 2rem 0;
}

.thanks-info p {
    color: #666;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #333;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.legal-page {
    padding: 4rem 5%;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

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

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.legal-container p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #667eea;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #5568d3;
}

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

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

.cookie-table th {
    background: #f8f8f8;
    font-weight: 700;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-asymmetric,
    .trust-split,
    .application-showcase,
    .technical-depth,
    .story-split,
    .team-approach,
    .service-detail-card,
    .contact-split {
        flex-direction: column;
    }

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

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

    .nav-right {
        gap: 1.5rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .nav-right {
        flex-direction: column;
        gap: 1rem;
    }

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

    .service-card,
    .timeline-item,
    .value-card,
    .industry-card,
    .faq-item {
        flex: 1 1 100%;
    }

    .step {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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

    .thanks-container {
        padding: 2rem 1.5rem;
    }
}