/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

.nav-left .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0c4a6e;
}

.nav-right {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-right a {
    font-size: 1rem;
    color: #374151;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #0c4a6e;
}

.nav-cta {
    padding: 0.7rem 1.5rem;
    background-color: #0c4a6e;
    color: #ffffff !important;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background-color: #075985;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #1f2937;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem 5%;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu a {
    font-size: 1.1rem;
    color: #374151;
    padding: 0.5rem 0;
}

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

.hero-content {
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8fafc;
}

.hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image {
    width: 100%;
    overflow: hidden;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: #0c4a6e;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #e2e8f0;
    color: #0f172a;
}

.btn-secondary:hover {
    background-color: #cbd5e1;
}

.btn-submit {
    background-color: #0c4a6e;
    color: #ffffff;
    width: 100%;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background-color: #075985;
}

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

.intro-image {
    width: 100%;
    overflow: hidden;
}

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

.intro-text {
    padding: 3rem 5%;
}

.intro-text h2 {
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

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

/* Services Preview */
.services-preview {
    padding: 4rem 5%;
    background-color: #f1f5f9;
}

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

.services-header h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

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

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    color: #0c4a6e;
    margin-bottom: 1.2rem;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

.service-card .price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0c4a6e;
}

.services-cta {
    text-align: center;
}

/* Trust Split Section */
.trust-split {
    display: flex;
    flex-direction: column;
}

.trust-text {
    padding: 3rem 5%;
    background-color: #ffffff;
}

.trust-text h2 {
    font-size: 1.9rem;
    color: #0f172a;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.trust-list {
    margin-bottom: 2rem;
}

.trust-list li {
    font-size: 1.05rem;
    color: #475569;
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0c4a6e;
    font-weight: 700;
    font-size: 1.3rem;
}

.trust-image {
    width: 100%;
    overflow: hidden;
}

.trust-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Process Section */
.process-section {
    padding: 4rem 5%;
    background-color: #0f172a;
    color: #ffffff;
}

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

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

.step-item {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #0c4a6e;
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0c4a6e;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.step-item p {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-alt {
    padding: 4rem 5%;
    background-color: #f8fafc;
}

.testimonials-alt h2 {
    font-size: 2rem;
    text-align: center;
    color: #0f172a;
    margin-bottom: 3rem;
    font-weight: 700;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

/* Why Us Split */
.why-us-split {
    display: flex;
    flex-direction: column;
}

.why-image {
    width: 100%;
    overflow: hidden;
}

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

.why-content {
    padding: 3rem 5%;
    background-color: #f1f5f9;
}

.why-content h2 {
    font-size: 1.9rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

/* Stats Section */
.stats-section {
    padding: 4rem 5%;
    background-color: #0c4a6e;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.stat-item {
    text-align: center;
}

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

.stat-label {
    display: block;
    font-size: 1rem;
    color: #cbd5e1;
}

/* Form Section */
.form-section {
    padding: 4rem 5%;
    background-color: #f8fafc;
}

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

.form-container h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 2.5rem;
}

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

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

.form-group label {
    display: block;
    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;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    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: #0c4a6e;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

.form-checkbox a {
    color: #0c4a6e;
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-col a {
    font-size: 0.95rem;
    color: #cbd5e1;
    transition: color 0.3s ease;
}

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

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

/* Sticky CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: #0c4a6e;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(12, 74, 110, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #075985;
    transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1100;
}

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

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

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

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

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

.btn-accept {
    background-color: #0c4a6e;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #075985;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #64748b;
}

.btn-reject:hover {
    border-color: #ffffff;
}

.cookie-link {
    color: #94a3b8;
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Page Hero */
.page-hero {
    padding: 4rem 5%;
    background-color: #0f172a;
    text-align: center;
    color: #ffffff;
}

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

.page-hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
}

/* About Split */
.about-split {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.about-text {
    padding: 3rem 5%;
}

.about-text h2 {
    font-size: 1.9rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Timeline */
.timeline-section {
    padding: 4rem 5%;
    background-color: #f8fafc;
}

.timeline-section h2 {
    font-size: 2rem;
    text-align: center;
    color: #0f172a;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.timeline-item {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #0c4a6e;
}

.timeline-year {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #0c4a6e;
    margin-bottom: 0.8rem;
}

.timeline-item h3 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.timeline-item p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* Values Split */
.values-split {
    display: flex;
    flex-direction: column;
}

.values-image {
    width: 100%;
    overflow: hidden;
}

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

.values-text {
    padding: 3rem 5%;
    background-color: #f1f5f9;
}

.values-text h2 {
    font-size: 1.9rem;
    color: #0f172a;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.value-item h3 {
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

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

/* Team Section */
.team-section {
    padding: 4rem 5%;
    background-color: #ffffff;
}

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

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

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

.team-member {
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 10px;
}

.member-role {
    font-size: 0.9rem;
    color: #0c4a6e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.team-member h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.team-member p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* CTA Split */
.cta-split {
    display: flex;
    flex-direction: column;
}

.cta-content {
    padding: 3rem 5%;
    background-color: #0c4a6e;
    color: #ffffff;
    text-align: center;
}

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

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

.cta-content .btn-primary {
    background-color: #ffffff;
    color: #0c4a6e;
}

.cta-content .btn-primary:hover {
    background-color: #f1f5f9;
}

.cta-image {
    width: 100%;
    overflow: hidden;
}

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

/* Service Detail Split */
.service-detail-split {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}

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

.service-detail-text {
    padding: 3rem 5%;
    background-color: #ffffff;
}

.service-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0c4a6e;
    background-color: #dbeafe;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.service-detail-text h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-detail-text p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-features li {
    font-size: 1.05rem;
    color: #475569;
    padding: 0.5rem 0;
    list-style: disc;
    line-height: 1.6;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 10px;
    margin: 2rem 0;
}

.price-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
}

.price-value {
    font-size: 2.2rem;
    color: #0c4a6e;
    font-weight: 800;
}

.price-note {
    font-size: 0.9rem;
    color: #64748b;
}

.service-detail-image {
    width: 100%;
    overflow: hidden;
}

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

/* Additional Services */
.additional-services {
    padding: 4rem 5%;
    background-color: #f1f5f9;
}

.additional-services h2 {
    font-size: 2rem;
    text-align: center;
    color: #0f172a;
    margin-bottom: 3rem;
    font-weight: 700;
}

.additional-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.additional-card {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.additional-card h3 {
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

.additional-price {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0c4a6e;
}

/* Industries */
.industries-section {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.industries-section h2 {
    font-size: 2rem;
    text-align: center;
    color: #0f172a;
    margin-bottom: 3rem;
    font-weight: 700;
}

.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industry-item {
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.industry-item h3 {
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.industry-item p {
    font-size: 1rem;
    color: #64748b;
}

/* CTA Full */
.cta-full {
    padding: 4rem 5%;
    background-color: #0f172a;
    color: #ffffff;
}

.cta-content-center {
    text-align: center;
}

.cta-content-center h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* Contact Split */
.contact-split {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

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

.contact-info h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

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

.contact-block h3 {
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

.contact-block a {
    color: #0c4a6e;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem !important;
    color: #64748b !important;
    margin-top: 0.5rem;
}

.contact-map {
    width: 100%;
    min-height: 300px;
    background-color: #f1f5f9;
}

.map-placeholder {
    width: 100%;
    height: 300px;
}

/* Contact CTA */
.contact-cta-section {
    padding: 3rem 5%;
    background-color: #f8fafc;
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta-section p {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 2rem;
}

/* Thanks Section */
.thanks-section {
    padding: 5rem 5%;
    background-color: #f8fafc;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    color: #10b981;
    margin-bottom: 2rem;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    color: #10b981;
    margin-bottom: 1rem;
    font-weight: 600;
}

.thanks-content p {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.thanks-service {
    font-size: 1.1rem;
    color: #0c4a6e;
    font-weight: 600;
    margin: 1.5rem 0;
}

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

/* Legal Page */
.legal-page {
    padding: 3rem 5%;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.legal-container h2 {
    font-size: 1.8rem;
    color: #0f172a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

.legal-container ul,
.legal-container ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-container li {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    list-style: disc;
}

.legal-container ol li {
    list-style: decimal;
}

.legal-container a {
    color: #0c4a6e;
    text-decoration: underline;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

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

.cookies-table thead {
    background-color: #f1f5f9;
}

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

.cookies-table th {
    font-weight: 600;
    color: #0f172a;
}

.cookies-table td {
    font-size: 0.95rem;
    color: #475569;
}

/* Tablet and Desktop - 768px+ */
@media (min-width: 768px) {
    .nav-right {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .hero-split {
        flex-direction: row;
        min-height: 600px;
    }

    .hero-content,
    .hero-image {
        width: 50%;
    }

    .hero-content {
        padding: 4rem 5%;
    }

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

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

    .intro-image,
    .intro-text {
        width: 50%;
    }

    .intro-text {
        padding: 4rem 5%;
    }

    .intro-image img {
        height: 100%;
    }

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

    .service-card {
        width: calc(50% - 0.75rem);
    }

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

    .trust-text,
    .trust-image {
        width: 50%;
    }

    .trust-text {
        padding: 4rem 5%;
    }

    .trust-image img {
        height: 100%;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-item {
        width: calc(50% - 1rem);
    }

    .testimonials-container {
        flex-direction: row;
    }

    .testimonial-box {
        width: calc(33.33% - 1.34rem);
    }

    .why-us-split {
        flex-direction: row;
    }

    .why-image,
    .why-content {
        width: 50%;
    }

    .why-content {
        padding: 4rem 5%;
    }

    .why-image img {
        height: 100%;
    }

    .stats-section {
        flex-direction: row;
    }

    .stat-item {
        width: 25%;
    }

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

    .about-text,
    .about-image {
        width: 50%;
    }

    .about-text {
        padding: 4rem 5%;
    }

    .about-image img {
        height: 100%;
    }

    .timeline {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .timeline-item {
        width: calc(50% - 1rem);
    }

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

    .values-image,
    .values-text {
        width: 50%;
    }

    .values-text {
        padding: 4rem 5%;
    }

    .values-image img {
        height: 100%;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        width: calc(50% - 1rem);
    }

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

    .cta-content,
    .cta-image {
        width: 50%;
    }

    .cta-content {
        padding: 4rem 5%;
    }

    .cta-image img {
        height: 100%;
    }

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

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

    .service-detail-text,
    .service-detail-image {
        width: 50%;
    }

    .service-detail-text {
        padding: 4rem 5%;
    }

    .service-detail-image img {
        height: 100%;
    }

    .additional-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .additional-card {
        width: calc(50% - 0.75rem);
    }

    .industries-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .industry-item {
        width: calc(50% - 0.75rem);
    }

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

    .contact-info,
    .contact-map {
        width: 50%;
    }

    .contact-info {
        padding: 4rem 5%;
    }

    .map-placeholder {
        height: 100%;
        min-height: 500px;
    }

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

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

    .footer-col {
        width: calc(25% - 1.5rem);
    }

    .sticky-cta {
        display: block;
    }
}

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

    .services-grid {
        flex-wrap: nowrap;
    }

    .service-card {
        width: calc(25% - 1.125rem);
    }

    .process-steps {
        flex-wrap: nowrap;
    }

    .step-item {
        width: calc(25% - 1.5rem);
    }

    .timeline {
        flex-wrap: nowrap;
    }

    .timeline-item {
        width: calc(20% - 1.6rem);
    }

    .team-grid {
        flex-wrap: nowrap;
    }

    .team-member {
        width: calc(25% - 1.5rem);
    }

    .additional-grid {
        flex-wrap: wrap;
    }

    .additional-card {
        width: calc(33.33% - 1rem);
    }

    .industries-grid {
        flex-wrap: wrap;
    }

    .industry-item {
        width: calc(33.33% - 1rem);
    }
}
