/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

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

ul {
    list-style: none;
}

/* Navigation */
.nav-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #333;
    font-weight: 500;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0066cc;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Split Section */
.hero-split {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    color: white;
}

.hero-text-content {
    max-width: 600px;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-left p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    min-height: 500px;
    overflow: hidden;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-urgent,
.btn-sticky,
.btn-submit,
.btn-select-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

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

.btn-secondary:hover {
    background-color: #0066cc;
    color: white;
}

.btn-urgent {
    background-color: #d32f2f;
    color: white;
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

.btn-urgent:hover {
    background-color: #b71c1c;
}

.btn-select-service {
    background-color: #0066cc;
    color: white;
    width: 100%;
    margin-top: 1rem;
}

.btn-select-service:hover {
    background-color: #004a99;
}

.btn-submit {
    background-color: #ff6b35;
    color: white;
    width: 100%;
    font-size: 1.2rem;
    padding: 1.2rem;
}

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

/* Stats Split Section */
.stats-split {
    display: flex;
    min-height: 600px;
}

.stats-left {
    flex: 1;
    overflow: hidden;
}

.stats-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-right {
    flex: 1;
    padding: 5rem 4rem;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-right h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.stat-item {
    margin-bottom: 2.5rem;
}

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

.stat-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Problem Amplification */
.problem-amplification {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.problem-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.problem-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.problem-left {
    flex: 1;
}

.problem-left h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #d32f2f;
}

.problem-left p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.problem-right {
    flex: 1;
}

.problem-right img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Solution Reveal */
.solution-reveal {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
}

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

.solution-left {
    flex: 1;
}

.solution-left img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.solution-right {
    flex: 1;
}

.solution-right h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.solution-right p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

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

.feature-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Trust Building */
.trust-building {
    padding: 6rem 2rem;
    background-color: #1a1a1a;
    color: white;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
}

.trust-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

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

.trust-card {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.trust-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.trust-role {
    display: block;
    font-size: 0.95rem;
    opacity: 0.7;
    font-style: italic;
}

/* Technical Excellence */
.technical-excellence {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

.tech-left {
    flex: 1;
}

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

.tech-left p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cert-item {
    background-color: #0066cc;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

.tech-right {
    flex: 1;
}

.tech-right img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Services Showcase */
.services-showcase {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.services-header p {
    font-size: 1.3rem;
    color: #666;
}

.services-split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 400px;
    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: 1rem;
    color: #1a1a1a;
}

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

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.price-unit {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

/* Form Section */
.form-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    color: white;
}

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

.form-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.form-left {
    flex: 1;
}

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

.form-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.form-benefits {
    margin-top: 2rem;
}

.form-benefits li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.1rem;
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.3rem;
}

.form-right {
    flex: 1;
}

.contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
}

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

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

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

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

/* Urgency Block */
.urgency-block {
    padding: 5rem 2rem;
    background-color: #d32f2f;
    color: white;
    text-align: center;
}

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

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-split {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ff6b35;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

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

.btn-sticky {
    background-color: #ff6b35;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

.btn-cookie-accept {
    background-color: #0066cc;
    color: white;
}

.btn-cookie-accept:hover {
    background-color: #004a99;
}

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

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

/* Page Hero Split */
.page-hero-split {
    margin-top: 80px;
    min-height: 500px;
    display: flex;
}

.page-hero-split .hero-left {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

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

/* About Page */
.about-story,
.mission-section {
    padding: 6rem 2rem;
}

.story-container,
.mission-split {
    max-width: 1400px;
    margin: 0 auto;
}

.story-split,
.mission-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-left,
.mission-right {
    flex: 1;
}

.story-left img,
.mission-right img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.story-right,
.mission-left {
    flex: 1;
}

.story-right h2,
.mission-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-right p,
.mission-left p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.mission-section {
    background-color: #f8f9fa;
}

/* Values Section */
.values-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

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

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

/* Team Expertise */
.team-expertise {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

.expertise-left {
    flex: 1;
}

.expertise-left img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.expertise-right {
    flex: 1;
}

.expertise-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.expertise-list li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.expertise-list strong {
    color: #0066cc;
}

/* Certifications */
.certifications-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.cert-container {
    max-width: 1400px;
    margin: 0 auto;
}

.cert-container h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.cert-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.cert-left {
    flex: 1;
}

.cert-list {
    list-style: none;
}

.cert-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.15rem;
    color: #333;
}

.cert-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 1.5rem;
}

.cert-right {
    flex: 1;
}

.cert-right img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Track Record */
.track-record {
    padding: 6rem 2rem;
    background-color: #1a1a1a;
    color: white;
}

.record-container {
    max-width: 1400px;
    margin: 0 auto;
}

.record-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.record-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.record-stat {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
}

.record-stat .stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.record-stat p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* CTA Sections */
.cta-about,
.cta-services,
.cta-contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    color: white;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Page */
.services-intro {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto;
}

.intro-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-left {
    flex: 1;
}

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

.intro-left p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.intro-right {
    flex: 1;
}

.intro-right img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Service Detail Sections */
.service-detail-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.service-detail-section.bg-alternate {
    background-color: #f8f9fa;
}

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

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

.detail-left,
.detail-right {
    flex: 1;
}

.detail-left img,
.detail-right img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.detail-left h2,
.detail-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-tagline {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.detail-left h3,
.detail-right h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    color: #333;
}

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

.component-list li {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.component-list strong {
    color: #0066cc;
}

.service-price-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.price-large {
    font-size: 3rem;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.service-price-box p {
    font-size: 1rem;
    color: #666;
}

/* Additional Services */
.additional-services {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.additional-container {
    max-width: 1400px;
    margin: 0 auto;
}

.additional-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.additional-card {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

.price-small {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
}

.price-small span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
}

/* Comparison Table */
.comparison-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.comparison-table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.comparison-row {
    display: flex;
}

.comparison-row.header-row {
    background-color: #1a1a1a;
    color: white;
    font-weight: 700;
}

.comparison-row:not(.header-row) {
    background-color: white;
}

.comparison-row:not(.header-row):nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-cell {
    flex: 1;
    padding: 1.2rem;
    text-align: center;
    border-right: 1px solid #e0e0e0;
    font-size: 1rem;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-cell:first-child {
    text-align: left;
    flex: 2;
    font-weight: 600;
}

/* Contact Page */
.contact-info-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.contact-left {
    flex: 1;
}

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

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

.contact-detail-group h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #0066cc;
}

.contact-detail-group p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.contact-detail-group a {
    color: #0066cc;
}

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

.contact-detail-group .note {
    font-size: 0.95rem;
    font-style: italic;
    color: #888;
    margin-top: 0.5rem;
}

.contact-right {
    flex: 1;
}

.contact-right img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Regional Offices */
.regional-offices {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.regional-container {
    max-width: 1400px;
    margin: 0 auto;
}

.regional-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.regional-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.regional-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #0066cc;
}

.regional-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.8rem;
}

.regional-card a {
    color: #0066cc;
}

.regional-card a:hover {
    text-decoration: underline;
}

/* Response Time */
.response-time-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.response-left {
    flex: 1;
}

.response-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.response-list {
    list-style: none;
}

.response-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.response-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 1.5rem;
}

.response-list strong {
    color: #1a1a1a;
}

.response-right {
    flex: 1;
}

.response-right img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Consultation Process */
.consultation-process {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
}

.process-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.process-step {
    flex: 1;
    min-width: 250px;
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

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

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

/* Certifications Contact */
.certifications-contact {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.certifications-contact .cert-container {
    text-align: center;
    max-width: 900px;
}

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

.certifications-contact p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
}

.cert-list-contact {
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.cert-list-contact li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.cert-list-contact li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Map Section */
.map-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
}

.map-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.map-placeholder img {
    width: 100%;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: rgba(0, 102, 204, 0.95);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 8px;
}

.map-overlay p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* FAQ */
.faq-contact {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

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

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

/* Thanks Page */
.thanks-hero {
    margin-top: 80px;
    padding: 5rem 2rem;
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.thanks-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

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

.thanks-subtitle {
    font-size: 1.3rem;
    color: #0066cc;
    margin-bottom: 3rem;
}

.thanks-details {
    margin-bottom: 3rem;
}

.selected-service-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.selected-service-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #666;
}

.service-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 1rem;
}

.service-note {
    font-size: 1rem;
    color: #555;
}

.next-steps {
    margin: 4rem 0;
    text-align: center;
}

.next-steps h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    flex: 1;
    min-width: 220px;
    max-width: 250px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.immediate-resources {
    margin: 4rem 0;
}

.immediate-resources h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.resource-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.resource-link {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.resource-link h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #0066cc;
}

.resource-link p {
    font-size: 1rem;
    color: #555;
}

.urgent-contact {
    background-color: #fff3e0;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
    margin: 3rem 0;
}

.urgent-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d32f2f;
}

.urgent-contact p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.5rem;
}

.urgent-contact strong {
    color: #1a1a1a;
}

.urgent-contact a {
    color: #0066cc;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

/* Trust Badges */
.trust-badges {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.badges-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.badges-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.badges-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.badge-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 2rem;
}

.badge-icon {
    width: 80px;
    height: 80px;
    background-color: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.badge-item p {
    font-size: 1rem;
    color: #555;
}

/* Legal Pages */
.legal-page {
    margin-top: 80px;
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

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

.last-updated {
    font-size: 1rem;
    color: #888;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

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

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.legal-container a {
    color: #0066cc;
}

.legal-container a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-table thead {
    background-color: #1a1a1a;
    color: white;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-split,
    .stats-split,
    .problem-split,
    .solution-split,
    .tech-split,
    .form-split,
    .footer-split,
    .story-split,
    .mission-split,
    .expertise-split,
    .cert-split,
    .intro-split,
    .service-detail-split,
    .contact-split,
    .response-split {
        flex-direction: column;
    }

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

    .service-card {
        flex-direction: column !important;
    }

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

    .trust-grid,
    .values-grid,
    .record-stats,
    .additional-grid,
    .regional-grid,
    .process-steps,
    .faq-grid,
    .steps-grid,
    .resource-links,
    .badges-grid {
        flex-direction: column;
    }

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

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

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

    .comparison-row {
        flex-direction: column;
    }

    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .thanks-actions {
        flex-direction: column;
    }
}
