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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

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

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a365d;
    letter-spacing: -0.5px;
}

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

.nav-right a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a5568;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #2563eb;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 6%;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 100%);
}

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

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.8rem;
    font-weight: 700;
}

.hero-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.2rem;
    background: #f59e0b;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.2rem;
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #2563eb;
    color: #ffffff;
}

.cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.cta-large:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.insight-section {
    padding: 5rem 5%;
    background: #f8fafc;
}

.split-container {
    display: flex;
    gap: 5rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.split-right-text {
    flex: 1.2;
}

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

.split-right-text p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.3rem;
}

.split-left-visual {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.4;
}

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

.story-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.story-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

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

.custom-list li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1.05rem;
    color: #374151;
}

.custom-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.contrast-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.split-container-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 5rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.split-left-content {
    flex: 1;
}

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

.split-left-content p {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 1.8rem;
}

.key-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.point-item {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.point-item strong {
    color: #f59e0b;
    display: block;
    margin-bottom: 0.5rem;
}

.point-item {
    color: #e2e8f0;
    font-size: 1rem;
}

.split-right-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.trust-section {
    padding: 5rem 5%;
    background: #fafbfc;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.trust-intro {
    font-size: 1.1rem;
    color: #64748b;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.testimonial-card {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #2563eb;
}

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

.testimonial-author {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
    font-style: normal;
}

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

.split-services {
    display: flex;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: flex-start;
}

.services-left {
    flex: 1.3;
}

.services-left h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.services-left p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.3rem;
}

.services-right {
    flex: 0.7;
}

.service-preview {
    background: #f1f5f9;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #2563eb;
}

.service-preview h4 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 1.2rem;
}

.service-quick-list {
    list-style: none;
}

.service-quick-list li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #cbd5e1;
    color: #475569;
    font-size: 0.95rem;
}

.service-quick-list li:last-child {
    border-bottom: none;
}

.pricing-section {
    padding: 5rem 5%;
    background: #f8fafc;
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.pricing-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 320px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.pricing-card.featured {
    border: 3px solid #2563eb;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2563eb;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

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

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

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

.select-service {
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

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

.form-split {
    display: flex;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: flex-start;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.benefit-item {
    background: #f1f5f9;
    padding: 1.2rem;
    border-radius: 8px;
}

.benefit-item strong {
    color: #1a202c;
    display: block;
    margin-bottom: 0.3rem;
}

.form-right {
    flex: 1;
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 1.1rem;
    background: #f59e0b;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.final-cta {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 100%);
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.final-cta-content p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 3rem 5% 1.5rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto 2rem;
}

.footer-section {
    flex: 1;
}

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

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 0.6rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #64748b;
}

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

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

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

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

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

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

.btn-cookie {
    background: #10b981;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #059669;
}

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

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

.page-hero {
    padding: 5rem 5% 3rem;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.page-intro {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 5rem 5%;
    background: #ffffff;
}

.values-section {
    padding: 5rem 5%;
    background: #f8fafc;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.value-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

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

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.team-intro h2 {
    font-size: 2.4rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.team-intro p {
    font-size: 1.1rem;
    color: #64748b;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
}

.team-member h4 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 0.3rem;
}

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

.team-member p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

.track-record {
    padding: 5rem 5%;
    background: #f8fafc;
}

.track-record h2 {
    font-size: 2.4rem;
    color: #1a202c;
    text-align: center;
    margin-bottom: 3rem;
}

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

.project-item {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.project-header h4 {
    font-size: 1.4rem;
    color: #1a202c;
}

.project-value {
    font-size: 1.3rem;
    color: #2563eb;
    font-weight: 700;
}

.project-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

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

.cta-content h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.services-detailed {
    padding: 3rem 5%;
}

.service-block {
    padding: 4rem 0;
}

.service-block.alt-layout {
    background: #f8fafc;
}

.service-content-split {
    display: flex;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

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

.service-info {
    flex: 1;
}

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

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

.service-info p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.service-info h4 {
    font-size: 1.2rem;
    color: #1a202c;
    margin: 1.5rem 0 1rem;
}

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

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

.service-deliverables li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.delivery-time {
    font-size: 0.95rem;
    color: #64748b;
    font-style: italic;
}

.service-visual {
    flex: 1;
}

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

.service-highlight {
    background: #2563eb;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.service-highlight p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.services-cta {
    padding: 4rem 5%;
    background: #f8fafc;
    text-align: center;
}

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

.services-cta p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.contact-content {
    padding: 3rem 5%;
}

.contact-split {
    display: flex;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

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

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

.contact-block h4 {
    font-size: 1.2rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

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

.contact-block a {
    color: #2563eb;
}

.contact-note {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
}

.map-placeholder img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.map-description {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 1rem;
    line-height: 1.6;
}

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

.contact-faq h2 {
    font-size: 2.2rem;
    color: #1a202c;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.faq-item p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-hero {
    padding: 5rem 5% 4rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

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

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

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

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

.thanks-info {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-info p {
    color: #ffffff;
    font-size: 1.05rem;
}

.next-steps {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    text-align: left;
}

.next-steps h3 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.step-number {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.thanks-additional {
    padding: 4rem 5%;
    background: #f8fafc;
}

.additional-content {
    max-width: 1200px;
    margin: 0 auto;
}

.additional-content h3 {
    font-size: 2rem;
    color: #1a202c;
    text-align: center;
    margin-bottom: 2.5rem;
}

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

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

.resource-card h4 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 0.8rem;
}

.resource-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.resource-card a {
    color: #2563eb;
    font-weight: 600;
    transition: color 0.3s;
}

.resource-card a:hover {
    color: #1d4ed8;
}

.legal-page {
    padding: 3rem 5% 5rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-intro {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2.5rem;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}

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

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

.legal-content ol {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    font-style: italic;
    color: #64748b;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table thead {
    background: #f1f5f9;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-size: 0.95rem;
    color: #1a202c;
    font-weight: 600;
}

.cookie-table td {
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #4a5568;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .split-container,
    .split-container-reverse,
    .story-wrapper,
    .split-services,
    .form-split,
    .contact-split,
    .service-content-split {
        flex-direction: column;
        gap: 2.5rem;
    }

    .testimonials-grid,
    .resources-grid {
        flex-direction: column;
    }

    .pricing-card {
        flex: 1 1 100%;
    }
}

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

    .nav-right {
        gap: 1.5rem;
    }

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

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

    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
    }

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