File size: 33,831 Bytes
cf9f491 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 |
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SécurityMed | Expertise en Cybersécurité Médicale</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Open+Sans:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "MedicalOrganization",
"name": "SécurityMed",
"url": "https://www.securitymed.fr",
"logo": "https://securitymed.fr/logo.png",
"description": "Expert en cybersécurité pour infrastructures d'imagerie médicale, protection des flux DICOM et conformité LI 27001",
"medicalSpecialty": "Cyberprotection médicale",
"areaServed": "France"
}
</script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'medical-blue': '#0d3b66',
'security-green': '#38b000',
'light-blue': '#f0f7ff',
},
fontFamily: {
'heading': ['Montserrat', 'sans-serif'],
'body': ['Open Sans', 'sans-serif']
}
}
}
}
</script>
<style>
body {
font-family: 'body', sans-serif;
}
h1, h2, h3, h4 {
font-family: 'heading', sans-serif;
}
.navbar-fixed {
@apply fixed z-50 bg-white bg-opacity-90 backdrop-blur;
box-shadow: 0 2px 20px rgba(13, 59, 102, 0.1);
}
.process-step {
position: relative;
min-height: 120px;
padding-top: 60px;
padding-left: 25px;
}
.process-step:before {
content: '';
@apply absolute top-0 left-0 w-16 h-16 rounded-full flex items-center justify-center bg-security-green text-white font-bold;
font-family: 'heading';
font-size: 1.5rem;
line-height: 1.5;
}
.process-step:nth-child(1):before { content: '1'; }
.process-step:nth-child(2):before { content: '2'; }
.process-step:nth-child(3):before { content: '3'; }
.process-step:nth-child(4):before { content: '4'; }
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
.security-icon {
@apply w-16 h-16 flex items-center justify-center rounded-full mb-4;
background-color: rgba(56, 176, 0, 0.1);
}
.hero-pattern {
background:
radial-gradient(circle at 10% 50%, rgba(13, 59, 102, 0.05) 0%, transparent 20%),
radial-gradient(circle at 90% 30%, rgba(56, 176, 0, 0.05) 0%, transparent 15%);
}
</style>
</head>
<body>
<!-- Navigation bar -->
<header class="w-full py-4 transition-all duration-300" id="navbar">
<div class="container mx-auto px-4 flex justify-between items-center">
<!-- Logo & company name -->
<div class="flex items-center">
<div class="w-10 h-10 bg-medical-blue rounded-full mr-3 flex items-center justify-center">
<i class="fas fa-shield-alt text-white text-xl"></i>
</div>
<span class="text-medical-blue text-xl font-bold">Sécurity<span class="text-security-green">Med</span></span>
</div>
<!-- Desktop Navigation -->
<nav class="hidden md:flex items-center space-x-10">
<a href="#solutions" class="text-medical-blue font-medium hover:text-security-green transition">Solutions</a>
<a href="#expertise" class="text-medical-blue font-medium hover:text-security-green transition">Expertise</a>
<a href="#norms" class="text-medical-blue font-medium hover:text-security-green transition">Normes</a>
<a href="#contact" class="text-medical-blue font-medium hover:text-security-green transition">Contact</a>
</nav>
<!-- CTA Button -->
<button class="hidden md:block bg-security-green hover:bg-medical-blue text-white font-bold py-2 px-6 rounded-full transition-all duration-300 transform hover:-translate-y-1">
Audit de sécurité gratuit
</button>
<!-- Mobile menu button -->
<button id="mobileMenuBtn" class="md:hidden text-medical-blue">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
<!-- Mobile Menu -->
<div id="mobileMenu" class="hidden bg-white py-4 px-4 absolute w-full left-0 top-20 z-50 shadow-lg">
<nav class="flex flex-col space-y-4">
<a href="#solutions" class="text-medical-blue font-medium hover:text-security-green transition">Solutions</a>
<a href="#expertise" class="text-medical-blue font-medium hover:text-security-green transition">Expertise</a>
<a href="#norms" class="text-medical-blue font-medium hover:text-security-green transition">Normes</a>
<a href="#contact" class="text-medical-blue font-medium hover:text-security-green transition">Contact</a>
<button class="bg-security-green hover:bg-medical-blue text-white font-bold py-3 px-4 rounded-full transition w-full">
Audit de sécurité gratuit
</button>
</nav>
</div>
</header>
<!-- Hero Banner -->
<section class="hero-pattern bg-light-blue py-16 md:py-24 relative overflow-hidden">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0">
<h1 class="text-3xl md:text-5xl font-bold text-medical-blue leading-tight mb-6">
<span class="relative z-10">Sécurisez vos images médicales contre les cybermenaces</span>
</h1>
<p class="text-lg md:text-xl text-gray-700 mb-8 leading-relaxed">
Solutions conformes LI 27001 pour flux DICOM et réseaux hospitaliers - Protégez vos données patients et votre infrastructure médicale.
</p>
<div class="flex flex-wrap gap-4">
<button class="bg-security-green hover:bg-medical-blue text-white font-bold py-3 px-8 rounded-full shadow-lg transition-all duration-300 transform hover:-translate-y-1 flex items-center">
Diagnostic gratuit
<i class="fas fa-arrow-right ml-3"></i>
</button>
<button class="bg-medical-blue hover:bg-blue-900 text-white font-bold py-3 px-8 rounded-full shadow-lg transition-all duration-300">
Nos certifications
</button>
</div>
</div>
<div class="md:w-1/2 flex justify-center relative">
<div class="relative w-full max-w-xl">
<div class="relative p-8 rounded-3xl overflow-hidden" style="background: linear-gradient(145deg, #0d3b66, #092848);">
<div class="flex justify-center mb-6">
<div class="security-icon">
<i class="fas fa-shield-alt text-security-green text-3xl"></i>
</div>
<div class="security-icon ml-6">
<i class="fas fa-heartbeat text-security-green text-3xl"></i>
</div>
</div>
<div class="mb-6 text-center">
<h3 class="text-xl font-bold text-white mb-2">Protection réseau DICOM</h3>
<div class="flex justify-center mb-4">
<div class="bg-yellow-500 text-xs px-2 py-1 rounded-full mr-2">Port 104</div>
<div class="bg-green-500 text-xs px-2 py-1 rounded-full">SSL/TLS</div>
</div>
<div class="bg-blue-900 rounded-lg p-4 border border-blue-700 mb-2">
<div class="flex items-center">
<div class="w-3 h-3 rounded-full bg-green-500 mr-2"></div>
<span class="text-sm text-blue-200">CT Scanner HL7 → DICOM Secured</span>
</div>
</div>
<div class="bg-blue-900 rounded-lg p-4 border border-blue-700 mb-2">
<div class="flex items-center">
<div class="w-3 h-3 rounded-full bg-green-500 mr-2"></div>
<span class="text-sm text-blue-200">Serveur PACS ↔ Station radiologique</span>
</div>
</div>
</div>
<div class="text-center">
<div class="inline-flex items-center text-white bg-medical-blue rounded-full px-4 py-2">
<i class="fas fa-certificate text-security-green mr-2"></i>
<span>LI 27001 Certified</span>
</div>
</div>
</div>
<div class="absolute -bottom-6 -right-6 w-32 h-32 bg-security-green rounded-full opacity-20"></div>
<div class="absolute -top-6 -left-6 w-24 h-24 bg-medical-blue rounded-full opacity-10"></div>
</div>
</div>
</div>
</section>
<!-- Section Expertise -->
<section id="expertise" class="py-16 md:py-24 bg-white">
<div class="container mx-auto px-4">
<div class="text-center max-w-3xl mx-auto mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-medical-blue mb-6">Notre expertise unique</h2>
<p class="text-gray-600 text-lg">Spécialisés dans la sécurisation des infrastructures médicales et des flux DICOM</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 md:gap-12">
<!-- Expertise 1 -->
<div class="bg-light-blue p-8 rounded-2xl shadow-sm hover:shadow-md transition-shadow duration-300">
<div class="flex flex-col items-center text-center">
<div class="security-icon">
<i class="fas fa-shield-alt text-security-green text-3xl"></i>
</div>
<h3 class="text-xl font-bold text-medical-blue my-4">Protection DICOM</h3>
<p class="text-gray-600">
Chiffrement des flux d'images, contrôle d'accès HL7 sécurisé, authentification multifacteur pour vos systèmes PACs/RIS.
</p>
<div class="mt-6 inline-block bg-medical-blue text-white px-4 py-2 rounded-full text-sm font-medium">
En savoir plus
</div>
</div>
</div>
<!-- Expertise 2 -->
<div class="bg-light-blue p-8 rounded-2xl shadow-sm hover:shadow-md transition-shadow duration-300">
<div class="flex flex-col items-center text-center">
<div class="security-icon">
<i class="fas fa-network-wired text-security-green text-3xl"></i>
</div>
<h3 class="text-xl font-bold text-medical-blue my-4">Analyse réseau médical</h3>
<p class="text-gray-600">
Surveillance Wireshark spécialisée équipements médicaux, détection des anomalies dans les flux DICOM, cartographie sécurisée.
</p>
<div class="mt-6 inline-block bg-medical-blue text-white px-4 py-2 rounded-full text-sm font-medium">
En savoir plus
</div>
</div>
</div>
<!-- Expertise 3 -->
<div class="bg-light-blue p-8 rounded-2xl shadow-sm hover:shadow-md transition-shadow duration-300">
<div class="flex flex-col items-center text-center">
<div class="security-icon">
<i class="fas fa-certificate text-security-green text-3xl"></i>
</div>
<h3 class="text-xl font-bold text-medical-blue my-4">Conformité normative</h3>
<p class="text-gray-600">
Certification LI 27001 & adaptation RGPD santé, préparation aux audits ANSSI, solutions HDS pour la santé.
</p>
<div class="mt-6 inline-block bg-medical-blue text-white px-4 py-2 rounded-full text-sm font-medium">
En savoir plus
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section Normes & Process -->
<section id="norms" class="py-16 md:py-24 bg-medical-blue text-white">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<!-- Normes & Certifications -->
<div>
<h2 class="text-3xl md:text-4xl font-bold mb-8">Conformité aux normes de sécurité médicale</h2>
<p class="text-lg text-blue-100 mb-10">
Nous garantissons le respect des réglementations les plus strictes pour la protection de vos données de santé.
</p>
<div class="grid grid-cols-2 gap-4">
<div class="bg-blue-900 bg-opacity-50 rounded-2xl p-6 flex flex-col items-center text-center">
<div class="w-16 h-16 rounded-lg bg-white flex items-center justify-center mb-4">
<span class="text-medical-blue font-bold">LI 27001</span>
</div>
<h3 class="font-bold">Label Informatique</h3>
<p class="text-blue-100 text-sm mt-2">Cybersécurité des SI de santé</p>
</div>
<div class="bg-blue-900 bg-opacity-50 rounded-2xl p-6 flex flex-col items-center text-center">
<div class="w-16 h-16 rounded-lg bg-white flex items-center justify-center mb-4">
<span class="text-medical-blue font-bold">DICOM</span>
</div>
<h3 class="font-bold">DICOM Secured</h3>
<p class="text-blue-100 text-sm mt-2">Sécurité des flux d'imagerie</p>
</div>
<div class="bg-blue-900 bg-opacity-50 rounded-2xl p-6 flex flex-col items-center text-center">
<div class="w-16 h-16 rounded-lg bg-white flex items-center justify-center mb-4">
<span class="text-medical-blue font-bold">HIPAA</span>
</div>
<h3 class="font-bold">Health Insurance</h3>
<p class="text-blue-100 text-sm mt-2">Protection données patients</p>
</div>
<div class="bg-blue-900 bg-opacity-50 rounded-2xl p-6 flex flex-col items-center text-center">
<div class="w-16 h-16 rounded-lg bg-white flex items-center justify-center mb-4">
<span class="text-medical-blue font-bold">HDS</span>
</div>
<h3 class="font-bold">Hébergeur de Santé</h3>
<p class="text-blue-100 text-sm mt-2">Certification de conformité</p>
</div>
</div>
</div>
<!-- Processus -->
<div>
<h3 class="text-2xl font-bold mb-8">Notre processus d'accompagnement</h3>
<div class="space-y-8">
<div class="process-step">
<h4 class="font-bold text-lg mb-2">Audit sécurité approfondi</h4>
<p class="text-blue-100">Analyse complète de votre infrastructure et des flux DICOM</p>
</div>
<div class="process-step">
<h4 class="font-bold text-lg mb-2">Hardening des systèmes</h4>
<p class="text-blue-100">Renforcement de la sécurité serveurs et équipements</p>
</div>
<div class="process-step">
<h4 class="font-bold text-lg mb-2">Formation spécifique</h4>
<p class="text-blue-100">Personnalisée pour vos équipes médicales et techniques</p>
</div>
<div class="process-step">
<h4 class="font-bold text-lg mb-2">Surveillance continue</h4>
<p class="text-blue-100">Monitoring et réponse aux incidents 24/7</p>
</div>
</div>
<div class="mt-10">
<button class="bg-security-green hover:bg-green-600 text-white font-bold py-4 px-8 rounded-full shadow-lg flex items-center">
Télécharger notre livre blanc
<i class="fas fa-download ml-3"></i>
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Section Clients & Testimonials -->
<section class="py-16 md:py-24 bg-white">
<div class="container mx-auto px-4">
<div class="text-center max-w-3xl mx-auto mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-medical-blue mb-6">Ils nous font confiance</h2>
<p class="text-gray-600 text-lg">Hôpitaux, cliniques et fabricants nous font confiance pour sécuriser leur infrastructure médicale</p>
</div>
<!-- Testimonial -->
<div class="max-w-3xl mx-auto bg-light-blue rounded-2xl p-8 md:p-12 mb-16 relative">
<div class="absolute top-0 left-0 text-medical-blue opacity-10" style="font-size: 120px; transform: translate(-20%, -40%)">
<i class="fas fa-quote-left"></i>
</div>
<div class="relative z-10">
<div class="flex items-center mb-6">
<div class="w-16 h-16 rounded-full overflow-hidden mr-4">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16" />
</div>
<div>
<h4 class="font-bold text-lg text-medical-blue">Dr. Martin Dubois</h4>
<p class="text-blue-700">Responsable SI, CHU de Bordeaux</p>
</div>
</div>
<p class="text-lg italic text-gray-700">
"Grâce à SécurityMed, notre système PACS a obtenu la certification LI 27001 en seulement 3 mois. Leur expertise spécifique aux réseaux d'imagerie médicale a été déterminante pour répondre aux exigences les plus strictes tout en maintenant notre continuité de service."
</p>
<div class="flex mt-6">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
</div>
<!-- Client Logos -->
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 items-center justify-center">
<div class="bg-gray-100 h-16 flex items-center justify-center rounded-lg p-4">
<span class="text-medical-blue font-bold text-lg">CHU Paris</span>
</div>
<div class="bg-gray-100 h-16 flex items-center justify-center rounded-lg p-4">
<span class="text-medical-blue font-bold text-lg">Clinique Lyon</span>
</div>
<div class="bg-gray-100 h-16 flex items-center justify-center rounded-lg p-4">
<span class="text-medical-blue font-bold text-lg">Imagerie Sud</span>
</div>
<div class="bg-gray-100 h-16 flex items-center justify-center rounded-lg p-4">
<span class="text-medical-blue font-bold text-lg">ScanMed</span>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 md:py-24 bg-light-blue">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<div>
<h2 class="text-3xl md:text-4xl font-bold text-medical-blue mb-6">Contactez nos experts</h2>
<p class="text-gray-700 mb-8">
Nos spécialistes en sécurité des réseaux médicaux sont à votre disposition pour évaluer vos besoins et protéger votre infrastructure.
</p>
<div class="bg-white p-6 rounded-xl shadow-sm mb-8">
<div class="flex items-start mb-4">
<div class="text-security-green text-xl mr-4">
<i class="fas fa-history"></i>
</div>
<div>
<h4 class="font-bold text-medical-blue">Spécialistes depuis 2015</h4>
<p class="text-gray-600">Plus de 8 ans d'expertise dédiée à la cybersécurité médicale</p>
</div>
</div>
</div>
<div class="space-y-6">
<div class="flex items-center">
<div class="w-12 h-12 bg-medical-blue rounded-full flex items-center justify-center text-white mr-4">
<i class="fas fa-hands-helping"></i>
</div>
<div>
<h4 class="font-bold text-medical-blue">Rappel sous 24h</h4>
<p class="text-gray-600">Nous vous contactons rapidement après votre demande</p>
</div>
</div>
<div class="flex items-center">
<div class="w-12 h-12 bg-medical-blue rounded-full flex items-center justify-center text-white mr-4">
<i class="fas fa-user-md"></i>
</div>
<div>
<h4 class="font-bold text-medical-blue">Approche sectorielle</h4>
<p class="text-gray-600">Des solutions adaptées à vos contraintes médicales</p>
</div>
</div>
</div>
</div>
<!-- Contact Form -->
<div class="bg-white rounded-xl shadow-lg p-8">
<form id="contactForm">
<div class="mb-6">
<label for="name" class="block text-medical-blue font-medium mb-2">Nom</label>
<input type="text" id="name" class="w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-security-green focus:border-transparent" required>
</div>
<div class="mb-6">
<label for="email" class="block text-medical-blue font-medium mb-2">Email</label>
<input type="email" id="email" class="w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-security-green focus:border-transparent" required>
</div>
<div class="mb-6">
<label for="message" class="block text-medical-blue font-medium mb-2">Votre message</label>
<textarea id="message" rows="4" class="w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-security-green focus:border-transparent" required></textarea>
</div>
<button type="submit" class="w-full bg-security-green hover:bg-medical-blue text-white font-bold py-4 px-6 rounded-full shadow-md transition-all duration-300 transform hover:-translate-y-1">
Sécuriser mon infrastructure
</button>
</form>
<div id="formSuccess" class="hidden mt-4 p-4 bg-green-100 text-green-700 rounded-lg">
<i class="fas fa-check-circle mr-2"></i>
Votre message a été envoyé ! Nous vous contacterons dans les plus brefs délais.
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-medical-blue text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-shield-alt mr-3"></i>
Sécurity<span class="text-security-green">Med</span>
</h3>
<p class="text-blue-100 mb-4">
Experts en cybersécurité dédiée au secteur médical et à l'imagerie DICOM.
</p>
<div class="flex space-x-4">
<a href="#" class="text-white hover:text-security-green transition"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="text-white hover:text-security-green transition"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-white hover:text-security-green transition"><i class="fab fa-github"></i></a>
</div>
</div>
<div>
<h4 class="font-bold mb-4">Liens utiles</h4>
<ul class="space-y-2">
<li><a href="#" class="text-blue-100 hover:text-white transition">Blog technique</a></li>
<li><a href="#" class="text-blue-100 hover:text-white transition">FAQ Sécurité DICOM</a></li>
<li><a href="#" class="text-blue-100 hover:text-white transition">RGPD Santé</a></li>
<li><a href="#" class="text-blue-100 hover:text-white transition">Mentions légales</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Certifications</h4>
<ul class="space-y-2">
<li class="flex items-center">
<i class="fas fa-check-circle text-security-green mr-2"></i>
<span>LI 27001</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-security-green mr-2"></i>
<span>Hébergeur de Données de Santé</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-security-green mr-2"></i>
<span>DICOM Secured</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-security-green mr-2"></i>
<span>Reconnu par l'ANSSI</span>
</li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Contact</h4>
<ul class="space-y-2">
<li class="flex items-start">
<i class="fas fa-map-marker-alt mt-1 mr-3 text-blue-100"></i>
<span class="text-blue-100">12 Rue des PACS, 75000 Paris</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone-alt mr-3 text-blue-100"></i>
<span class="text-blue-100">+33 1 23 45 67 89</span>
</li>
<li class="flex items-center">
<i class="fas fa-envelope mr-3 text-blue-100"></i>
<span class="text-blue-100">[email protected]</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-blue-800 mt-12 pt-8 text-center text-blue-100">
<p>© 2023 SécurityMed - Tous droits réservés. Experts en sécurité DICOM et LI 27001.</p>
</div>
</div>
</footer>
<!-- Floating CTA -->
<div class="fixed bottom-6 right-6 z-50">
<button class="bg-security-green hover:bg-medical-blue text-white p-4 rounded-full shadow-lg animate-pulse">
<i class="fas fa-comment-medical text-xl"></i>
</button>
</div>
<script>
// Mobile menu toggle
const mobileMenuBtn = document.getElementById('mobileMenuBtn');
const mobileMenu = document.getElementById('mobileMenu');
mobileMenuBtn.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Sticky navigation
const navbar = document.getElementById('navbar');
window.addEventListener('scroll', () => {
if (window.scrollY > 100) {
navbar.classList.add('navbar-fixed');
} else {
navbar.classList.remove('navbar-fixed');
}
});
// Form submission handling
const contactForm = document.getElementById('contactForm');
const formSuccess = document.getElementById('formSuccess');
contactForm.addEventListener('submit', (e) => {
e.preventDefault();
formSuccess.classList.remove('hidden');
formSuccess.classList.add('block');
contactForm.reset();
setTimeout(() => {
formSuccess.classList.add('hidden');
formSuccess.classList.remove('block');
}, 5000);
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
// Close mobile menu if open
mobileMenu.classList.add('hidden');
const target = document.querySelector(this.getAttribute('href'));
if (target) {
window.scrollTo({
top: target.offsetTop - 100,
behavior: 'smooth'
});
}
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Maheri/secmed" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |