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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2c7ac4;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #2ecc71;
    --max-width: 1400px;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

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

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    text-align: center;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-accept {
    background: var(--success-color);
    color: white;
}

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

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

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

.main-nav {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

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

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-left p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

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

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.cta-primary {
    background: var(--primary-color);
    color: white;
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 84, 144, 0.3);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.trust-indicators {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.split-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.left-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.right-block {
    flex: 1;
}

.stat-box {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stat-box h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.right-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.right-block p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
}

.problem-amplify {
    padding: 5rem 2rem;
    background: var(--text-dark);
    color: white;
}

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

.content-narrow h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.content-narrow p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.services-grid-split {
    padding: 6rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.service-card-split {
    display: flex;
    margin-bottom: 4rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

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

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

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

.service-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.service-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.select-service {
    align-self: flex-start;
}

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

.testimonial-block {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.testimonial-split {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.testimonial-text {
    flex: 1.2;
}

.testimonial-text blockquote {
    font-size: 1.6rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.testimonial-text cite {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: normal;
}

.testimonial-image {
    flex: 1;
}

.testimonial-image img {
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.how-we-work {
    padding: 6rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.how-we-work h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.process-split {
    display: flex;
    gap: 2.5rem;
}

.process-step {
    flex: 1;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.process-step:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-section-mid {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

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

.cta-content-box h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-content-box p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.why-different {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.split-content-alt {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.left-content {
    flex: 1;
}

.left-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.left-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.right-content {
    flex: 1;
}

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

.feature-list li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-light);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.industries-served {
    padding: 6rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.industries-served h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

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

.industry-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition);
}

.industry-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.industry-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.industry-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.form-section-split {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.form-section-split .split-container,
.form-section-split > div {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
}

.form-right {
    flex: 1;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 1.2rem 2.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 84, 144, 0.3);
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-col a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 1.2rem 2rem;
    background: var(--accent-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(243, 156, 18, 0.4);
    transition: var(--transition);
}

.sticky-btn:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(243, 156, 18, 0.5);
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
    background: var(--bg-light);
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
}

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

.story-section {
    padding: 5rem 2rem;
}

.story-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-section p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-split {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.value-block {
    max-width: var(--max-width);
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.value-block.reverse {
    flex-direction: row-reverse;
}

.value-image {
    flex: 1;
}

.value-image img {
    border-radius: 10px;
}

.value-content {
    flex: 1;
}

.value-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.value-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 6rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.team-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

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

.team-member {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
    text-align: center;
}

.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;
}

.team-member .role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.6;
}

.credentials-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.credentials-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.credential-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: white;
    border-radius: 10px;
}

.credential-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.credential-item p {
    color: var(--text-light);
}

.commitment-section {
    padding: 5rem 2rem;
}

.split-commitment {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.commitment-text {
    flex: 1;
}

.commitment-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.commitment-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.commitment-image {
    flex: 1;
}

.commitment-image img {
    border-radius: 10px;
}

.page-hero-centered {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--bg-light);
}

.page-hero-centered h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.page-hero-centered p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-split {
    max-width: var(--max-width);
    margin: 0 auto 5rem;
    display: flex;
    gap: 3rem;
    padding: 0 2rem;
}

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

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

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

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

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

.service-detail-content li {
    margin-bottom: 0.7rem;
    color: var(--text-light);
}

.pricing-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.pricing-box .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-box .price-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.custom-solutions {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

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

.content-centered p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.pricing-philosophy {
    padding: 5rem 2rem;
}

.simple-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.simple-list li {
    margin-bottom: 0.7rem;
    color: var(--text-light);
}

.note-text {
    font-style: italic;
    color: var(--text-light);
    margin-top: 1rem;
}

.contact-hero {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--bg-light);
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-split-section {
    padding: 5rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.contact-detail-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-detail-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-detail-block a {
    color: var(--primary-color);
}

.contact-detail-block a:hover {
    text-decoration: underline;
}

.note-small {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-form-side {
    flex: 1;
}

.contact-form-side h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.location-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.location-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.location-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.map-placeholder img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.faq-contact {
    padding: 5rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
}

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

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-hero {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--bg-light);
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.success-icon svg {
    margin: 0 auto;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-selected {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: white;
    border-radius: 8px;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
}

.next-steps-section {
    padding: 5rem 2rem;
}

.next-steps-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.steps-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.step-box {
    flex: 1;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.step-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-box p {
    color: var(--text-light);
}

.while-you-wait {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.split-content-simple {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.left-side {
    flex: 1;
}

.left-side h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.left-side p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.right-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-button {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

.link-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.urgent-notice {
    padding: 4rem 2rem;
}

.notice-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background: #fff3cd;
    border-left: 5px solid var(--accent-color);
    border-radius: 8px;
}

.notice-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.notice-box p {
    color: var(--text-dark);
    line-height: 1.7;
}

.notice-box a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-page {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--secondary-color);
}

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

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

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table td {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-split,
    .split-container,
    .split-content-alt,
    .service-card-split,
    .testimonial-split,
    .process-split,
    .value-block,
    .split-commitment,
    .service-detail-split,
    .contact-split-section,
    .split-content-simple {
        flex-direction: column;
    }

    .service-card-split.reverse,
    .value-block.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-left h1,
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: var(--transition);
        gap: 1.5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-left h1,
    .hero-content h1,
    .page-hero-centered h1 {
        font-size: 2rem;
    }

    .section-header h2,
    .how-we-work h2,
    .industries-served h2 {
        font-size: 2rem;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .sticky-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

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

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

    .cookies-table {
        font-size: 0.9rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero-left,
    .hero-content,
    .service-content {
        padding: 2rem 1.5rem;
    }

    .industry-item,
    .credential-item,
    .faq-item {
        min-width: 100%;
    }
}
