html {
  scroll-behavior: smooth;
}

.montserrat-font {
  font-family: "Montserrat", sans-serif;
}

.button-login {
  background: #FFFFFF!important;
  border: 1px solid #8933c9!important;
  color: #8933c9!important;
}
.button-login:hover {
  color: #fff!important;
  background-color: #8933c9!important;
}

/* AJOUT */
.button-signup, .button-try {
  background:linear-gradient(90deg, #7e23be, #9c4edb);
  color: #FFFFFF;
  padding-top: 0.62rem;
  padding-bottom: 0.62rem;
}

.button-signup:hover, .button-try:hover {
  filter: brightness(1.1);
}


details summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0 30px 0 0;
  background-color: white;
  border-radius: 8px;
  position: relative;
}

details summary::after {
  content: "\25B6";
  font-size: 1rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease-in-out;
}

details[open] summary::after {
  transform: translateY(-50%) rotate(90deg);
}

#scrollToTopBtn.above-footer {
  bottom: calc(100% + 20px);
  z-index: 100;
}

/* CHECKBOX */
.checkbox-container {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2.5px solid #011e61;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  box-shadow: 1px 1px 2px #000;

}

.checkbox-container .checkbox {
  position: relative;
  width: 18px;
  height: 18px;
  box-sizing: border-box;
}

.checkbox-container .checkbox::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 18px;
  border: solid #011e61;
  border-width: 0 3px 6px 0;
  transform: rotate(45deg);
  top: -3px;
  left: 4px;
}

.checkbox-container .checkbox.unchecked::after {
  display: none;
}

#languageSwitcher {
  z-index: 9999;
}

.lang-link {
  color: #8933c9;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.lang-link.active {
  color: #fff;
}

.lang-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.lang-separator {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 8px;
}

.lang-link-frontpage {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.lang-link-frontpage.active {
  color: #8933c9;
}

.lang-link-frontpage:hover {
  color: #8933c9;
}

#header {
  background-position: top;
}

.background-image-security {
  background-image: url('images/securites/bg.jpg');
}

.background-image-dictaphone {
  background-image: url('images/images-row/left.jpg');
  background-size: cover;
}

.background-image-focusgroup {
  background-image: url('images/images-row/right.jpg');
  background-size: cover;
}

.text-align-last-right {
  text-align-last: right;
}

.tarifs-height {
  min-height: calc(100vh - 169px);
}

.security-height {
  min-height: calc(100vh - 350px);
}

.captcha-invisible {
  display: none;
}

@font-face {
  font-family: sans-serif;
  font-weight: normal;
  font-style: normal;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f7fa;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Archi', sans-serif;
  color: #1a237e;
  font-weight: 700 !important;
}

.container {
  width: 100%;
  max-width: 1200px !important;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: transparent;
  color: white;
  padding: 15px 0;
  position: absolute;
  width: 100%;
  z-index: 10;
}
header#main {
  background-color: #fff;
  color: #000;
}
header#main nav ul li a{
  color: #000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  display: none;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

nav ul li a:hover {
  opacity: 0.8;
}

/* Hero Section */
.hero {
  background-image: url('images/securites/securite.jpg');
  background-size: cover;
  background-position: center 30%;
  color: white;
  text-align: center;
  padding: 170px 0 105px 0;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 30px;
  color: white;
}

.hero p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 30px;
}

.hero .btn {
  border-radius: 50px;
}

.hero .btn:hover {
  background-color: #1c73c0;
}
.btn {
  display: inline-block;
  background: linear-gradient(90deg, #7e23be, #9c4edb);
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn:hover {
  background: linear-gradient(135deg, #1e88e5 0%, #64b5f6 100%);
  box-shadow: 0 8px 20px rgba(30, 136, 229, 0.4);
}

/* USP Section */
.usp {
  padding: 80px 0;
  background-color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 25px;
}

.section-title p {
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.usp-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.usp-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background-color: #f5f7fa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.usp-card:hover {
  transform: translateY(-5px);
}

.usp-card-image {
  height: 200px;
  overflow: hidden;
}

.usp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.usp-card:hover .usp-card-image img {
  transform: scale(1.05);
}

.usp-card-content {
  padding: 25px;
}

.usp-card-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.usp-card-content .list-inside li {
  color: #666;
  font-size: 17px;
}

/* Fonctionnalités Section */
.features {
  padding: 80px 0;
  background-color: #f5f7fa;
}

.features-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#home .feature-item {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1a237e;
}

.feature-item p {
  color: #666;
  font-size: 17px;
  margin-bottom: 10px;
}

.feature-note {
  margin-top: 15px;
  padding: 15px;
  background-color: #e8eaf6;
  border-left: 4px solid #8c37cc;
  border-radius: 4px;
}

.feature-note p {
  margin-bottom: 0;
  font-style: italic;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background-color: white;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background-color: #f5f7fa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.best-value {
  position: absolute;
  top: 15px;
  right: -30px;
  background-color: #8c37cc;
  color: white;
  padding: 5px 30px;
  font-size: 12px;
  transform: rotate(45deg);
}

.pricing-card-header {
  background-color: #1a237e;
  color: white;
  padding: 20px;
  text-align: center;
}

.pricing-card-header h3 {
  font-size: 20px;
  color: white;
  margin-bottom: 5px;
}

.pricing-card-header p {
  opacity: 0.8;
  font-size: 17px;
}

.pricing-card-price {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  padding: 30px 20px;
  background-color: #e8eaf6;
  color: #1a237e;
}

.pricing-card-price .period {
  display: block;
  font-size: 17px;
  font-weight: normal;
  color: #666;
  margin-top: 5px;
}

.pricing-card-features {
  padding: 20px;
}

.pricing-card-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 7px;
}

.pricing-card-feature-icon {
  color: #8c37cc;
  margin-right: 10px;
  font-weight: bold;
}

.pricing-card-feature-text {
  font-size: 17px;
  color: #666;
}

.pricing-card-cta {
  padding: 0 20px 30px;
  text-align: center;
  margin-top: auto;
}

.pricing-card-cta .btn {
  width: 100%;
  text-align: center;
}

.pricing-card-cta-note {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
  font-style: italic;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: #f5f7fa;
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  font-style: italic;
  color: #666;
  font-size : 16px;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content > p:first-of-type {
  color: #1a237e;
}


.testimonial-content::before {
  content: '"';
  font-size: 60px;
  color: #e8eaf6;
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: -1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

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

.testimonial-author-info h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.testimonial-author-info p {
  font-size: 14px;
  color: #666;
}

/* Use Cases Section */
.use-cases {
  padding: 80px 0;
  background-color: white;
}

.use-cases-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.use-case-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background-color: #f5f7fa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.use-case-card:hover {
  transform: translateY(-5px);
}

.use-case-image {
  height: 200px;
  overflow: hidden;
}

.use-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.use-case-card:hover .use-case-image img {
  transform: scale(1.05);
}

.use-case-content {
  padding: 25px;
}

.use-case-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.use-case-content p {
  color: #666;
  margin-bottom: 20px;
}

.use-case-content ul {
  list-style-position: inside;
  color: #666;
  margin-bottom: 20px;
}

.use-case-content ul li {
  margin-bottom: 10px;
}

/* Devices Section */
.devices {
  padding: 80px 0;
  background-color: #f5f7fa;
}

.devices-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.device-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  text-align: center;
}

.device-icon {
  margin-bottom: 20px;
}

.device-icon img {
  width: 100%;
  /* max-width: 200px; */
  padding: 0 1rem;
  height: auto;
}

.device-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.device-description {
  color: #666;
  font-size : 18px;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background-color: #1a237e;
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
}

.cta p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Footer */
footer {
  background-color: #1a1a2e;
  color: white;
  padding: 40px 0 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1;
  min-width: 200px;
  margin-bottom: 10px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: white;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: white;
}

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

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {

  .usp-card,
  .pricing-card,
  .testimonial-card,
  .use-case-card,
  .device-card {
    min-width: 100%;
  }

  nav ul {
    margin-top: 15px;
  }

  nav ul li {
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* TARIF */
/* Page Header */
.page-header {
  background-color: #1a237e;
  color: white;
  padding: 135px 0 65px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 25px;
  color: white;
  line-height: 40px;
}

.page-header p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

/* Pricing Section */
#tarif .pricing-container {
  padding: 80px 0;
}

#tarif .pricing-intro {
  text-align: center;
  margin-bottom: 50px;
}

#tarif .pricing-intro h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

#tarif .pricing-intro p {
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

#tarif .pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

#tarif .pricing-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  position: relative;
}

#tarif .pricing-card:hover {
  transform: translateY(-5px);
}

#tarif .best-value {
  position: absolute;
  top: 15px;
  right: -30px;
  background-color: #8c37cc;
  color: white;
  padding: 5px 30px;
  font-size: 12px;
  transform: rotate(45deg);
}

#tarif .card-header {
  background-color: #1a237e;
  color: white;
  padding: 20px;
  text-align: center;
}

#tarif .card-title {
  font-size: 20px;
  color: white;
  margin-bottom: 5px;
}

#tarif .card-subtitle {
  opacity: 0.8;
  font-size: 17px;
}

#tarif .card-price {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  padding: 30px 20px;
  background-color: #e8eaf6;
  color: #1a237e;
}

#tarif .card-price .period {
  display: block;
  font-size: 17px;
  font-weight: normal;
  color: #666;
  margin-top: 5px;
}

#tarif .card-features {
  padding: 20px;
}

#tarif .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 7px;
}

#tarif .feature-icon {
  color: #8c37cc;
  margin-right: 10px;
  font-weight: bold;
}

#tarif .feature-text {
  font-size: 17px;
  color: #666;
}

#tarif .card-cta {
  padding: 0 20px 30px;
  text-align: center;
  margin-top: auto;
}

#tarif .btn {
  display: inline-block;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
  width: 100%;
  text-align: center;
}

#tarif .cta-note {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
  font-style: italic;
}

/* Info Boxes */
#tarif .info-boxes {
  margin-bottom: 50px;
}

#tarif .info-box {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

#tarif .info-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #1a237e;
}

#tarif .info-box p {
  color: #666;
  margin-bottom: 15px;
  font-size: 18px;
}

#tarif .info-box ul:not(.security-list)  {
  list-style-type: disc;
  padding-left: 1.5rem;

}

#tarif .info-box ul {
  margin-bottom: 15px;
  color: #666;
}

#tarif .info-box ul li {
  margin-bottom: 8px;
  font-size: 18px;
}

#tarif .highlight {
  color: #8c37cc;
  font-weight: 600;
}

/* Security Box */
#tarif .security-box {
  background-color: #e8eaf6;
  border-left: 4px solid #8c37cc;
  border-radius: 4px;
  padding: 20px;
  margin-top: 20px;
}

#tarif .security-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: #1a237e;
  font-size: 18px;
}

#tarif .security-list {
  list-style-type: none;
}

#tarif .security-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

#tarif .security-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8c37cc;
  font-weight: bold;
}

/* FAQ Section */
#tarif .faq-section {
  margin-bottom: 50px;
}

#tarif .faq-title {
  font-size: 24px;
  margin-bottom: 30px;
  color: #1a237e;
}

#tarif .faq-item {
  margin-bottom: 20px;
}

#tarif .faq-question {
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a237e;
}

#tarif .faq-answer {
  color: #666;
  font-size: 16px;
}

/* CTA Section */
#tarif .cta-section {
  background-color: #1a237e;
  color: white;
  padding: 60px 0;
  text-align: center;
  margin-top: 50px;
}

#tarif .cta-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: white;
}

#tarif .cta-section p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px;
}

#tarif .cta-section .btn {
  width: auto;
  padding: 15px 40px;
  font-size: 18px;
}

/* FAQ */
#faq .faq-container {
  padding: 80px 0;
}

#faq .faq-intro {
  text-align: center;
  margin-bottom: 50px;
}

#faq .faq-intro h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

#faq .faq-intro p {
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

#faq .faq-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

#faq .category-btn {
  background-color: #e8eaf6;
  color: #1a237e;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

#faq .category-btn:hover,
#faq .category-btn.active {
  background-color: #1a237e;
  color: white;
}

#faq .faq-section {
  margin-bottom: 60px;
}

#faq .faq-section-title {
  font-size: 24px;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8eaf6;
}

#faq .faq-item {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

#faq .faq-question {
  padding: 20px;
  font-weight: 600;
  color: #1a237e;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

#faq .faq-question:hover {
  background-color: #f5f7fa;
}

#faq .faq-question::after {
  content: '+';
  font-size: 20px;
  color: #8c37cc;
}

#faq .faq-question.active::after {
  content: '-';
}

#faq .faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  font-size: 18px;

}

#faq .faq-answer.show {
  padding: 0 20px 20px;
  max-height: 1000px;
}

#faq .faq-answer p {
  color: #666;
  margin-bottom: 15px;
}

#faq .faq-answer p:last-child {
  margin-bottom: 0;
}

#faq .faq-answer ul {
  list-style-position: inside;
  margin-bottom: 15px;
  color: #666;
}

#faq .faq-answer ul li {
  margin-bottom: 8px;
}

#faq .highlight {
  color: #8c37cc;
  font-weight: 600;
}

/* Search Box */
.search-box {
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e8eaf6;
  border-radius: 30px;
  font-size: 16px;
  color: #333;
  transition: border-color 0.3s;
}

.search-input:focus {
  outline: none;
  border-color: #8c37cc;
}

.search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #8c37cc;
}

/* CTA Section */
.cta-section {
  background-color: #1a237e;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: white;
}

.cta-section p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* SECURITE */
.security-container {
  padding: 80px 0;
}

.security-intro {
  text-align: center;
  margin-bottom: 50px;
}

.security-intro h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.security-intro p {
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.security-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.security-image {
  flex: 1;
  min-width: 300px;
}

.security-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.security-text {
  flex: 1;
  min-width: 300px;
}

.security-text h3 {
  font-size: 23px;
  margin-bottom: 20px;
  color: #1a237e;
}

.security-text p {
  margin-bottom: 20px;
  color: #666;
  font-size: 17px;
}

/* Security Features */
.security-features {
  margin-bottom: 60px;
}

.security-features h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.feature-card {
  flex: 1;
  min-width: 300px;
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #1a237e;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1a237e;
}

.feature-card p {
  color: #666;
  font-size: 17px;
}

/* Compliance Section */
.compliance-section {
  background-color: white;
  padding: 60px 0;
  margin-bottom: 60px;
}

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

.compliance-title {
  text-align: center;
  margin-bottom: 40px;
}

.compliance-title h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.compliance-title p {
  font-size: 18px;
  color: #666;
}

.compliance-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.compliance-card {
  flex: 1;
  min-width: 250px;
  background-color: #f5f7fa;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.compliance-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1a237e;
}

.compliance-card p {
  color: #666;
  font-size: 17px;
}

#secu .faq-section {
  margin-bottom: 60px;
}

#secu .faq-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

#secu .faq-item {
  background-color: white;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

#secu .faq-question {
  font-weight: 600;
  color: #1a237e;
  margin-bottom: 15px;
  font-size: 18px;
}

#secu .faq-answer {
  color: #666;
  font-size: 16px;
}

/* Tableau de comparaison */
.comparison-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  table-layout: fixed;
  hyphens: auto;
}
.comparison-title {
  text-align: center;
  color: #1A237E;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}
.header-row {
  background-color: #7e23be;
  color: white;
  font-weight: bold;
}
.header-row th {
  padding: 15px;
  text-align: left;
  font-size: 20px;
}
.header-row th:first-child {
  width: 40%;
}
.header-row th:not(:first-child) {
  width: 30%;
  text-align: center;
}
tr:nth-child(even) {
  background-color: #f2f2f2;
}
td {
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
  color: #000;
  font-size: 17px;
}
td:not(:first-child) {
  text-align: center;
}
.check {
  color: #4CAF50;
  font-size: 18px;
}
.cross {
  color: #F44336;
  font-size: 18px;
}
.highlight {
  font-weight: bold;
}
.not-italic {
  font-style: normal;
}
.mt-auto {
  margin-top: auto;
}
.uppercase {
  text-transform: none;
}
.mb-0 {
  margin-bottom: 0;
}