/* Variables CSS */
:root {
  --primary-color: #114d5a; /* bleu pastel */
  --secondary-color: #ffcc00; /* vert menthe */
  --accent-color: #1e293b; /* bleu foncé */
  --text-color: #334155;
  --text-light: #64748b;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --border-color: #e2e8f0;
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: var(--bg-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Boutons CTA */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.1);
}

.cta-button.secondary {
  background: var(--bg-white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
  background: var(--primary-color);
  color: white;
}

/* Hero Image */
.hero-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(17, 77, 90, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: hero-float 8s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-container:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 35px 70px -12px rgba(17, 77, 90, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 23px;
  transition: all 0.3s ease;
}

.hero-image:hover {
  filter: brightness(1.05) contrast(1.05);
}

.hero-image-container::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color),
    var(--primary-color)
  );
  border-radius: 27px;
  z-index: -1;
  animation: border-glow 3s ease-in-out infinite alternate;
  opacity: 0.7;
}

.hero-image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 204, 0, 0.1) 0%,
    transparent 50%
  );
  border-radius: 25px;
  pointer-events: none;
  z-index: 1;
}

/* Animation personnalisée pour le hero */
@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) rotate(0.5deg);
  }
  50% {
    transform: translateY(-8px) rotate(0deg);
  }
  75% {
    transform: translateY(-3px) rotate(-0.5deg);
  }
}

@keyframes border-glow {
  0% {
    opacity: 0.5;
    filter: blur(1px);
  }
  100% {
    opacity: 0.8;
    filter: blur(2px);
  }
}

/* Particules flottantes autour de la vidéo */
.hero-illustration::before,
.hero-illustration::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.hero-illustration::before {
  background: radial-gradient(
    circle,
    rgba(17, 77, 90, 0.1) 0%,
    transparent 70%
  );
  top: -20px;
  right: -30px;
  animation: particle-float-1 12s ease-in-out infinite;
}

.hero-illustration::after {
  background: radial-gradient(
    circle,
    rgba(255, 204, 0, 0.08) 0%,
    transparent 70%
  );
  bottom: -40px;
  left: -20px;
  animation: particle-float-2 15s ease-in-out infinite reverse;
}

@keyframes particle-float-1 {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  33% {
    transform: translateY(-15px) translateX(10px) scale(1.1);
  }
  66% {
    transform: translateY(5px) translateX(-5px) scale(0.9);
  }
}

@keyframes particle-float-2 {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) translateX(15px) scale(1.2);
  }
}


.image-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(
    135deg,
    rgba(255, 204, 0, 0.95),
    rgba(255, 215, 0, 0.95)
  );
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  box-shadow: 0 8px 32px rgba(255, 204, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
  animation: badge-pulse 3s ease-in-out infinite;
  z-index: 2;
}

.image-badge i {
  width: 16px;
  height: 16px;
}


@keyframes badge-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 204, 0, 0.4),
      0 4px 12px rgba(0, 0, 0, 0.15);
  }
}

/* Sections */
.advantages-section,
.odoo-section,
.offer-section,
.contact-section {
  padding: 80px 0;
}


.advantages-section {
  background: var(--bg-white);
}

.odoo-section {
  background: var(--bg-light);
}

.offer-section {
  background: var(--bg-white);
}

.contact-section {
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--accent-color);
}

.highlight-text {
  background: linear-gradient(135deg, var(--primary-color), #1e6b7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* Section Avantages Peppol */
.advantages-section {
  background: var(--bg-white);
  position: relative;
  padding: 80px 0;
}

.advantages-header {
  text-align: center;
  margin-bottom: 4rem;
}

.advantages-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.peppol-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.peppol-card {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(17, 77, 90, 0.08),
    0 0 0 1px rgba(17, 77, 90, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.peppol-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(17, 77, 90, 0.15),
    0 0 0 1px rgba(17, 77, 90, 0.1);
}

.peppol-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.peppol-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), #1e6b7a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(17, 77, 90, 0.2);
  transition: all 0.3s ease;
}

.peppol-card:hover .card-icon {
  transform: scale(1.1) rotateY(10deg);
  box-shadow: 0 12px 35px rgba(17, 77, 90, 0.3);
}

.card-icon i,
.card-icon svg,
.card-icon [data-feather],
.card-icon .feather {
  color: white !important;
  stroke: white !important;
  width: 32px !important;
  height: 32px !important;
}

.peppol-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accent-color);
  line-height: 1.3;
}

.peppol-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}


/* Section Odoo */
.odoo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.odoo-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(17, 77, 90, 0.15);
}

.odoo-image {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}

.odoo-image:hover {
  filter: brightness(1.05) contrast(1.05);
}

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

.feature {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateX(10px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--secondary-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  color: var(--primary-color);
  width: 28px;
  height: 28px;
}

.feature-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.feature-text p {
  color: var(--text-light);
}

/* Section Offre */
.offer-section {
  background: var(--bg-white);
}

.offer-header {
  text-align: center;
  margin-bottom: 4rem;
}

.offer-main-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.offer-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.offer-card {
  background: var(--bg-white);
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 25px 50px -12px rgba(17, 77, 90, 0.15),
    0 0 0 1px rgba(17, 77, 90, 0.05);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--secondary-color), #ffd700);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.offer-badge i {
  width: 16px;
  height: 16px;
}

.solution-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 2rem;
}

.price-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(17, 77, 90, 0.05),
    rgba(255, 204, 0, 0.05)
  );
  border-radius: 20px;
  border: 2px solid rgba(17, 77, 90, 0.1);
}

.price-main {
  font-size: 4.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), #1e6b7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.price-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.price-description {
  font-size: 0.95rem;
  color: var(--text-light);
}

.offer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.offer-column {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.column-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-color);
}

.column-title.bonus {
  color: var(--secondary-color);
}

.column-title i {
  width: 20px;
  height: 20px;
}

.offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.5;
}

.offer-list li i {
  color: var(--primary-color);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.offer-list.bonus li i {
  color: var(--secondary-color);
}

.offer-cta {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
}

.cta-question {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.cta-button.primary {
  background: linear-gradient(135deg, var(--primary-color), #1e6b7a);
  color: white;
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(17, 77, 90, 0.3);
  margin-bottom: 1.5rem;
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(17, 77, 90, 0.4);
  filter: brightness(1.05);
}

.cta-button.primary i {
  width: 20px;
  height: 20px;
}

.offer-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  flex-wrap: wrap;
}

.offer-guarantee span:nth-child(even) {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Formulaire de Contact */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact-form {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--accent-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(17, 77, 90, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Footer */
.footer {
  background: var(--accent-color);
  color: white;
  padding: 3rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.footer-left p {
  margin-top: 1rem;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.footer-link {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 1;
}

.copyright {
  text-align: right;
  opacity: 0.6;
  font-size: 0.9rem;
}

/* Responsive Design - Tablette */
@media (max-width: 1024px) and (min-width: 769px) {
  .odoo-content {
    gap: 3rem;
  }

  .feature {
    padding: 1.75rem;
  }

  .feature-icon {
    width: 65px;
    height: 65px;
  }

  .feature-text h3 {
    font-size: 1.15rem;
  }

  .feature-text p {
    font-size: 0.95rem;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  /* Section Odoo responsive */
  .odoo-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .odoo-image-container {
    order: -1; /* Place l'image en premier sur mobile */
  }

  .image-wrapper {
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .odoo-features {
    gap: 1rem;
  }

  .feature {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }

  .feature-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .feature-text p {
    font-size: 0.9rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .advantages-title {
    font-size: 2.2rem;
  }

  .peppol-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .peppol-card {
    padding: 2rem 1.5rem;
  }

  .hero-image-container {
    max-width: 400px;
  }

  .offer-main-title {
    font-size: 2.2rem;
  }

  .price-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .price-main {
    font-size: 3.5rem;
  }

  .offer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .offer-card {
    padding: 2rem;
  }

  .offer-guarantee {
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .footer-links {
    justify-content: center;
  }

  .copyright {
    text-align: center;
  }

  .nav {
    display: none;
  }

  .illustration-container {
    width: 300px;
    height: 250px;
  }

  .computer {
    width: 220px;
    height: 160px;
  }

  .screen {
    margin: 15px;
    height: 110px;
  }
}

/* Responsive Design - Très petit mobile */
@media (max-width: 480px) {
  .odoo-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .advantages-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .peppol-cards {
    gap: 1rem;
  }

  .peppol-card {
    padding: 1.5rem 1rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
  }

  .card-icon i {
    width: 24px !important;
    height: 24px !important;
  }

  .peppol-card h3 {
    font-size: 1.1rem;
  }

  .peppol-card p {
    font-size: 0.9rem;
  }

  .odoo-content {
    gap: 1.5rem;
  }

  .feature {
    padding: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .feature-icon i {
    width: 24px !important;
    height: 24px !important;
  }

  .feature-text h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .feature-text p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .image-wrapper {
    border-radius: 10px;
  }

  .odoo-image {
    border-radius: 8px;
  }
}
