:root {
    --primary: #003087;
    --secondary: #00A3E0;
    --accent: #D4AF37;
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --medium-gray: #E6E9ED;
    --dark-gray: #333333;
    --text: #444444;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-sans);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}
h1, h2, h3, h4, h5 {
    font-family: var(--font-sans);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary);
}
h1 {
    font-size: 3.5rem;
    font-weight: 700;
}
h2 {
    font-size: 2.5rem;
    font-weight: 600;
}
h3 {
    font-size: 1.8rem;
}
p {
    margin-bottom: 1.5rem;
}
a {
    text-decoration: none;
    color: var(--secondary);
    transition: all 0.3s ease;
}
a:hover {
    color: var(--primary);
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    font-family: var(--font-sans);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background-color: #f5f7fa;
}
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background-color: #002366;
}
.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}
.btn-accent {
    background-color: var(--accent);
    color: var(--white);
}
.btn-accent:hover {
    background-color: #b8941f;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
}
.logo {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
}
.logo span {
    color: var(--secondary);
}
.logo i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}
.nav-menu {
    display: flex;
    list-style: none;
}
.nav-menu li {
    margin-left: 2rem;
}
.nav-menu a {
    color: var(--dark-gray);
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
}
.nav-menu a:hover {
    color: var(--primary);
}
.nav-menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}
.nav-menu a:hover:after {
    width: 100%;
}
.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}
.hero {
    padding: 12rem 0 8rem;
    background: linear-gradient(135deg, var(--primary) 0%, #001a4d 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiMwMDMwODciLz48cGF0aCBkPSJNMCw1MDBMMTAwMCw1MDBMMTAwMCw3NTBMMCw3NTBaIiBmaWxsPSIjMDA4M2ZmIiBvcGFjaXR5PSIwLjEiLz48cGF0aCBkPSJNMTAwMCw1MDBMMCw1MDBMMCwyNTBMMTAwMCwyNTBaIiBmaWxsPSIjMDA4M2ZmIiBvcGFjaXR5PSIwLjEiLz48L3N2Zz4=');
    opacity: 0.1;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}
.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
}
.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
}
.hero-buttons .btn {
    padding: 1rem 2rem;
}
section {
    padding: 6rem 0;
}
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}
.section-title h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--dark-gray);
}
.services {
    background-color: var(--light-gray);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.service-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2.5rem;
    padding: 1rem;
}
.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.service-content h3 {
    margin-bottom: 1rem;
}
.service-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.service-content li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}
.service-content li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}
.case-studies {
    background-color: var(--white);
}
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.case-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--medium-gray);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.case-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
.case-content h3 {
    margin-bottom: 1rem;
}
.case-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--medium-gray);
}
.metric {
    margin: 0;
    text-align: center;
}
.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}
.metric-label {
    font-size: 0.9rem;
    color: var(--text);
}
.about {
    background-color: var(--light-gray);
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text h2 {
    margin-bottom: 1.5rem;
}
.about-image {
    height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
}
.about-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiMwMDMwODciLz48cGF0aCBkPSJNMCA1MDBMMTAwMCA1MDBMMTAwMCA3NTBMMCA3NTBaIiBmaWxsPSIjMDBhM2UwIiBvcGFjaXR5PSIwLjMiLz48cGF0aCBkPSJNMTAwMCA1MDBMMCA1MDBMMCAyNTBMMTAwMCAyNTBaIiBmaWxsPSIjMDBhM2UwIiBvcGFjaXR5PSIwLjMiLz48L3N2Zz4=');
    opacity: 0.3;
}
.stats {
    background-color: var(--primary);
    color: var(--white);
    padding: 4rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.stat-item {
    text-align: center;
}
.stat-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}
.contact {
    background-color: var(--white);
}
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info h3 {
    margin-bottom: 1.5rem;
}
.contact-details {
    margin-bottom: 2rem;
}
.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.contact-detail i {
    margin-right: 1rem;
    color: var(--secondary);
    width: 20px;
    text-align: center;
}
.contact-form {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-control:focus {
    outline: none;
    border-color: var(--secondary);
}
textarea.form-control {
    min-height: 150px;
    resize: vertical;
}
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 4rem 0 2rem;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 0.8rem;
}
.footer-col a {
    color: rgba(255, 255, 255, 0.8);
}
.footer-col a:hover {
    color: var(--white);
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}
.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 1.5rem;
    z-index: 1001;
    display: none;
}
.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.cookie-text {
    flex: 1;
    margin-right: 2rem;
}
.cookie-buttons {
    display: flex;
    gap: 1rem;
}
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    .about-content, .contact-container { grid-template-columns: 1fr; }
    .about-image { order: -1; }
}
@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
    }
    .nav-menu.active { transform: translateY(0); opacity: 1; }
    .nav-menu li { margin: 0 0 1.5rem 0; }
    .hero-buttons { flex-direction: column; }
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-text { margin-right: 0; margin-bottom: 1rem; }
}
@media (max-width: 576px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    section { padding: 4rem 0; }
    .hero { padding: 10rem 0 6rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* Case Pages */
.ai-hero { background: linear-gradient(135deg, #8B0000 0%, #FF4500 100%); color: var(--white); padding: 12rem 0 6rem; margin-top: 70px; position: relative; overflow: hidden; }
.ai-hero:before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiM4QjAwMDAiLz48cGF0aCBkPSJNMCA1MDBMMTAwMCA1MDBMMTAwMCA3NTBMMCw3NTBaIiBmaWxsPSIjRkY0NTAwIiBvcGFjaXR5PSIwLjEiLz48cGF0aCBkPSJNMTAwMCA1MDBMMCA1MDBMMCAyNTBMMTAwMCAyNTBaIiBmaWxsPSIjRkY0NTAwIiBvcGFjaXR5PSIwLjEiLz48L3N2Zz4='); opacity: 0.1; }
.ai-hero-content { position: relative; z-index: 1; text-align: center; }
.tech-hero { background: linear-gradient(135deg, #001a4d 0%, var(--primary) 100%); color: var(--white); padding: 12rem 0 6rem; margin-top: 70px; position: relative; overflow: hidden; }
.tech-hero:before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiMwMDMwODciLz48cGF0aCBkPSJNMCA1MDBMMTAwMCA1MDBMMTAwMCA3NTBMMCw3NTBaIiBmaWxsPSIjMDBhM2UwIiBvcGFjaXR5PSIwLjEiLz48cGF0aCBkPSJNMTAwMCA1MDBMMCA1MDBMMCAyNTBMMTAwMCAyNTBaIiBmaWxsPSIjMDBhM2UwIiBvcGFjaXR5PSIwLjEiLz48L3N2Zz4='); opacity: 0.1; }
.tech-hero-content { position: relative; z-index: 1; text-align: center; }
.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 3rem; }
.hero-stat { text-align: center; }
.hero-stat-value { font-size: 2.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.hero-stat-label { font-size: 0.9rem; opacity: 0.9; }
.executive-summary { padding: 5rem 0; background: var(--light-gray); }
.summary-content { max-width: 900px; margin: 0 auto; }
.summary-content h2 { color: var(--primary); text-align: center; margin-bottom: 2rem; font-size: 2.2rem; }
.summary-card { background: var(--white); padding: 2.5rem; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); margin-bottom: 2rem; }
.summary-card h3 { color: var(--primary); margin-bottom: 1.5rem; font-size: 1.5rem; }
.problem-section { padding: 5rem 0; background: var(--white); }
.problem-header { text-align: center; margin-bottom: 3rem; }
.problem-header h2 { color: var(--primary); font-size: 2.5rem; margin-bottom: 1rem; }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.problem-card { background: var(--light-gray); padding: 2rem; border-radius: 8px; border-left: 4px solid #8B0000; }
.problem-card h3 { color: var(--primary); margin-bottom: 1rem; display: flex; align-items: center; }
.problem-card h3 i { margin-right: 0.5rem; font-size: 1.5rem; }
.challenge-list { list-style: none; margin-top: 1rem; }
.challenge-list li { margin-bottom: 0.5rem; padding-left: 1.5rem; position: relative; }
.challenge-list li:before { content: '🔥'; position: absolute; left: 0; }
.solution-section { padding: 5rem 0; background: var(--light-gray); }
.solution-header { text-align: center; margin-bottom: 3rem; }
.solution-header h2 { color: var(--primary); font-size: 2.5rem; margin-bottom: 1rem; }
.solution-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.solution-card { background: var(--white); padding: 2rem; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
.solution-card h3 { color: var(--primary); margin-bottom: 1rem; font-size: 1.4rem; }
.tech-specs { background: var(--light-gray); padding: 1rem; border-radius: 4px; margin-top: 1rem; }
.spec-item { margin-bottom: 0.5rem; }
.spec-label { font-weight: 600; color: var(--primary); }
.methodology { padding: 5rem 0; background: var(--white); }
.methodology-header { text-align: center; margin-bottom: 3rem; }
.methodology-header h2 { color: var(--primary); font-size: 2.5rem; margin-bottom: 1rem; }
.process-flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; margin-bottom: 3rem; }
.process-step { text-align: center; padding: 1.5rem; background: var(--light-gray); border-radius: 8px; position: relative; }
.process-step:not(:last-child):after { content: '→'; position: absolute; right: -1rem; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--secondary); }
.step-number { width: 40px; height: 40px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 1rem; }
.results-section { padding: 5rem 0; background: var(--light-gray); }
.results-header { text-align: center; margin-bottom: 3rem; }
.results-header h2 { color: var(--primary); font-size: 2.5rem; margin-bottom: 1rem; }
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.result-card { background: var(--white); padding: 2rem; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); text-align: center; }
.result-value { font-size: 3rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; }
.result-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.comparison-item { padding: 1.5rem; background: var(--white); border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.1); }
.comparison-item.baseline { border-left: 4px solid #8B0000; }
.comparison-item.enhanced { border-left: 4px solid var(--secondary); }
.implementation { padding: 5rem 0; background: var(--white); }
.implementation-header { text-align: center; margin-bottom: 3rem; }
.implementation-header h2 { color: var(--primary); font-size: 2.5rem; margin-bottom: 1rem; }
.implementation-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.implementation-step { background: var(--light-gray); padding: 2rem; border-radius: 8px; }
.implementation-step h3 { color: var(--primary); margin-bottom: 1rem; display: flex; align-items: center; }
.implementation-step h3 i { margin-right: 0.5rem; color: var(--secondary); }
.business-value { padding: 5rem 0; background: var(--primary); color: var(--white); }
.value-content { max-width: 800px; margin: 0 auto; text-align: center; }
.value-content h2 { margin-bottom: 2rem; font-size: 2.2rem; }
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin: 3rem 0; }
.value-item { text-align: center; padding: 1.5rem; }
.value-item .number { font-size: 2.5rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--accent); }
.applications-header { text-align: center; margin-bottom: 3rem; }
.applications-header h2 { color: var(--primary); font-size: 2.5rem; margin-bottom: 1rem; }
.applications-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.application-card { background: var(--white); padding: 2rem; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
.application-card h3 { color: var(--primary); margin-bottom: 1rem; font-size: 1.4rem; }
.benefit-list { list-style: none; margin-top: 1rem; }
.benefit-list li { margin-bottom: 0.5rem; padding-left: 1.5rem; position: relative; }
.benefit-list li:before { content: '✓'; position: absolute; left: 0; color: var(--secondary); font-weight: bold; }
.global-implementation { padding: 5rem 0; background: var(--white); }
.global-header { text-align: center; margin-bottom: 3rem; }
.global-header h2 { color: var(--primary); font-size: 2.5rem; margin-bottom: 1rem; }
.country-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.country-card { background: var(--light-gray); padding: 2rem; border-radius: 8px; text-align: center; }
.country-card h3 { color: var(--primary); margin-bottom: 1rem; }

@media (max-width: 768px) {
  .process-detail { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 1fr; }
  .process-step:not(:last-child):after { display: none; }
  .result-comparison { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

/* Service Pages */
.service-hero { background: linear-gradient(135deg, var(--primary) 0%, #001a4d 100%); color: var(--white); padding: 12rem 0 6rem; margin-top: 70px; position: relative; overflow: hidden; }
.service-hero:before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiMwMDMwODciLz48cGF0aCBkPSJNMCw1MDBMMTAwMCw1MDBMMTAwMCw3NTBMMCw3NTBaIiBmaWxsPSIjMDA4M2ZmIiBvcGFjaXR5PSIwLjEiLz48cGF0aCBkPSJNMTAwMCw1MDBMMCw1MDBMMCwyNTBMMTAwMCwyNTBaIiBmaWxsPSIjMDA4M2ZmIiBvcGFjaXR5PSIwLjEiLz48L3N2Zz4='); opacity: 0.1; }
.service-hero h1 { font-size: 3rem; margin-bottom: 1.5rem; color: var(--white); }
.service-hero p { font-size: 1.2rem; max-width: 700px; opacity: 0.9; }
.service-hero .hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 3rem; }
.hero-stat { text-align: center; }
.hero-stat-value { font-size: 2.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.hero-stat-label { font-size: 0.9rem; opacity: 0.9; }

.industry-applications { padding: 5rem 0; background: var(--light-gray); }
.industry-header { text-align: center; margin-bottom: 3rem; }
.industry-header h2 { color: var(--primary); font-size: 2.5rem; margin-bottom: 1rem; }
.industry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.industry-card { background: var(--white); padding: 2rem; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: transform 0.3s ease; }
.industry-card:hover { transform: translateY(-5px); }
.industry-card h3 { color: var(--primary); margin-bottom: 1rem; display: flex; align-items: center; }
.application-list { list-style: none; margin-top: 1rem; }
.application-list li { margin-bottom: 0.5rem; padding-left: 1.5rem; position: relative; }
.application-list li:before { content: '▸'; position: absolute; left: 0; color: var(--secondary); font-weight: bold; }

.development-process { padding: 5rem 0; background: var(--white); }
.process-header { text-align: center; margin-bottom: 3rem; }
.process-header h2 { color: var(--primary); font-size: 2.5rem; margin-bottom: 1rem; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 4rem; }
.process-step { text-align: center; padding: 2rem; }
.step-number { width: 60px; height: 60px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; margin: 0 auto 1rem; }
.process-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.process-content h3 { color: var(--primary); margin-bottom: 1.5rem; font-size: 1.8rem; }
.process-image { height: 400px; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.2rem; }

.technology-solutions { padding: 5rem 0; background: var(--light-gray); }
.tech-header { text-align: center; margin-bottom: 3rem; }
.tech-header h2 { color: var(--primary); font-size: 2.5rem; margin-bottom: 1rem; }
.solutions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.solution-card { background: var(--white); padding: 2rem; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
.solution-card h3 { color: var(--primary); margin-bottom: 1rem; font-size: 1.4rem; }
.solution-features { list-style: none; margin-top: 1rem; }
.solution-features li { margin-bottom: 0.5rem; padding-left: 1.5rem; position: relative; }
.solution-features li:before { content: '✓'; position: absolute; left: 0; color: var(--secondary); font-weight: bold; }

.process-metrics { background: var(--primary); color: var(--white); padding: 5rem 0; }
.metrics-content { max-width: 800px; margin: 0 auto; text-align: center; }
.metrics-content h2 { margin-bottom: 2rem; font-size: 2.2rem; }
.metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin: 3rem 0; }
.metric { text-align: center; }
.metric-value { font-size: 2.5rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--accent); }

.case-study { padding: 5rem 0; }
.case-content { max-width: 800px; margin: 0 auto; }
.case-content h2 { color: var(--primary); text-align: center; margin-bottom: 3rem; font-size: 2.2rem; }
.case-highlights { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin: 2rem 0; }
.case-highlight { text-align: center; padding: 1.5rem; background: var(--light-gray); border-radius: 8px; }
.case-highlight .value { font-size: 1.8rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.case-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin: 3rem 0; }
.stat { text-align: center; }
.stat-value { font-size: 2.5rem; font-weight: 700; margin-bottom: 0.5rem; }

.cta-section { padding: 5rem 0; text-align: center; background: linear-gradient(135deg, var(--primary) 0%, #001a4d 100%); color: var(--white); }
.cta-section h2 { margin-bottom: 1rem; font-size: 2.2rem; }

.patient-impact { padding: 5rem 0; background: var(--light-gray); }
.impact-header { text-align: center; margin-bottom: 3rem; }
.impact-header h2 { color: var(--primary); font-size: 2.5rem; margin-bottom: 1rem; }
.impact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.impact-card { background: var(--white); padding: 2rem; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); }

.services-detail { padding: 5rem 0; }
.service-item { margin-bottom: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.service-content h3 { color: var(--primary); font-size: 1.8rem; margin-bottom: 1rem; }
.service-image { height: 300px; background: var(--light-gray); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.2rem; }
.service-category { margin-bottom: 4rem; }
.service-category h2 { color: var(--primary); font-size: 2.2rem; margin-bottom: 2rem; text-align: center; }
.service-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.roi-metric { background: var(--light-gray); padding: 1rem; border-radius: 4px; margin-top: 1rem; }
.roi-value { font-size: 1.2rem; font-weight: 700; color: var(--primary); }

@media (max-width: 768px) {
  .process-detail { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 1fr; }
}
.case-actions {
    margin-top: auto;
}

.case-actions .btn {
    display: block;
    width: 100%;
    text-align: center;
}