:root {
  --bg: #f2eee4;
  --bg-soft: #e7f0f3;
  --ink: #102532;
  --ink-muted: #264454;
  --navy: #0c3242;
  --teal: #1f6c83;
  --sand: #d9b57b;
  --sand-deep: #bc9154;
  --paper: #fffdf8;
  --line: rgba(16, 37, 50, 0.16);
  --shadow-soft: 0 12px 24px rgba(13, 44, 61, 0.11);
  --shadow-strong: 0 26px 56px rgba(8, 37, 52, 0.2);
  --header-space: 118px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--header-space);
  font-family: "Spectral", Georgia, serif;
  color: var(--ink);
  line-height: 1.72;
  background:
    radial-gradient(circle at 8% 12%, rgba(31, 108, 131, 0.2), transparent 38%),
    radial-gradient(circle at 92% 2%, rgba(217, 181, 123, 0.26), transparent 35%),
    linear-gradient(180deg, var(--bg) 0%, #f8f5ee 40%, var(--bg-soft) 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -2;
  opacity: 0.24;
  background-image: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.36) 0%,
      rgba(255, 255, 255, 0) 48%
    ),
    url("vers l'aventure doc/ambiance/ocean-wave-7-colorful-blue-waves-acegif.gif");
  background-size: cover;
  background-position: center;
  animation: drift 60s linear infinite alternate;
}

body::after {
  z-index: -1;
  opacity: 0.35;
  background-image: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.7), transparent 52%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12) 0,
      rgba(255, 255, 255, 0.12) 2px,
      transparent 2px,
      transparent 11px
    );
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background:
    linear-gradient(125deg, rgba(250, 247, 239, 0.94), rgba(235, 248, 253, 0.9));
  border-bottom: 1px solid rgba(16, 37, 50, 0.14);
  box-shadow: 0 10px 24px rgba(10, 38, 54, 0.14);
}

.site-header .container {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  padding: 0.6rem 1rem;
  border: 0;
  border-radius: 0;
  backdrop-filter: blur(10px);
  background: transparent;
  box-shadow: none;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.2rem 0.25rem;
  text-decoration: none;
  color: var(--navy);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.75rem, 1.3rem + 1.1vw, 2.35rem);
  letter-spacing: 0.08em;
}

.logo-mark {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(12, 50, 66, 0.42);
  box-shadow: 0 10px 22px rgba(12, 50, 66, 0.24);
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 0.34rem;
  padding: 0.22rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(12, 50, 66, 0.14);
}

.nav a {
  text-decoration: none;
  color: #123344;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.46rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 50, 66, 0.08);
  background: rgba(255, 255, 255, 0.66);
  transition: all 0.2s ease;
}

.nav a:hover {
  color: #ffffff;
  border-color: rgba(12, 50, 66, 0.2);
  background: linear-gradient(140deg, #0f3a4c, #1f6c83);
  transform: translateY(-1px) scale(1.01);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  padding: clamp(3.4rem, 7vw, 5.3rem) 0 clamp(2.5rem, 6vw, 4rem);
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 50, 66, 0.17), rgba(12, 50, 66, 0) 45%),
    radial-gradient(circle at 75% 20%, rgba(217, 181, 123, 0.25), transparent 42%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(1rem, 2vw, 1.8rem);
  align-items: center;
  position: relative;
}

.eyebrow {
  display: inline-block;
  margin: 0;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(188, 145, 84, 0.7);
  background: linear-gradient(120deg, rgba(217, 181, 123, 0.3), rgba(217, 181, 123, 0.16));
  color: #523616;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  color: var(--navy);
  letter-spacing: 0.035em;
  line-height: 1.1;
}

h1 {
  margin-top: 0.95rem;
  margin-bottom: 0.9rem;
  font-size: clamp(2.45rem, 6.3vw, 5.05rem);
}

h2 {
  font-size: clamp(1.95rem, 3.7vw, 3.2rem);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 2rem);
}

p {
  margin: 0.66rem 0;
  font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.14rem);
  color: #173242;
}

.hero-content p {
  max-width: 66ch;
}

.hero-content p:not(.eyebrow) {
  padding: 0.2rem 0.55rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.hero-media {
  margin: 0;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  border: 2px solid rgba(12, 50, 66, 0.12);
  box-shadow: var(--shadow-strong);
}

.cta {
  margin-top: 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  padding: 0.68rem 1.45rem;
  border-radius: 999px;
  background: linear-gradient(130deg, var(--navy), var(--teal));
  color: #ffffff;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.12rem;
  letter-spacing: 0.09em;
  box-shadow: 0 12px 24px rgba(10, 45, 64, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(10, 45, 64, 0.3);
}

.oyster-wrap {
  margin-top: 1.4rem;
  position: relative;
}

.oyster-emblem {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 1.2rem 1.15rem;
  color: #563a1c;
  border: 1px solid rgba(86, 58, 28, 0.26);
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(255, 254, 250, 0.92), rgba(230, 210, 178, 0.5)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.26) 0,
      rgba(255, 255, 255, 0.26) 2px,
      transparent 2px,
      transparent 12px
    );
  box-shadow: var(--shadow-soft);
}

.oyster-emblem svg {
  width: min(100%, 540px);
  margin: 0.45rem auto;
}

.section {
  position: relative;
  margin: 1.45rem auto;
  padding: clamp(2.2rem, 3.5vw, 3.15rem) clamp(1rem, 2.3vw, 1.8rem);
  border-radius: 24px;
  border: 1px solid rgba(16, 37, 50, 0.11);
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.9), rgba(231, 240, 243, 0.6)),
    radial-gradient(circle at 100% 0%, rgba(217, 181, 123, 0.2), transparent 55%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  animation: reveal-up 560ms ease both;
}

.section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(31, 108, 131, 0.8), rgba(217, 181, 123, 0.9));
  opacity: 0.55;
}

.section-head {
  margin-bottom: 1.2rem;
  text-align: center;
}

.menu-grid,
.partners-grid,
.videos-grid,
.journaux-gallery,
.plats-gallery-grid {
  display: grid;
  gap: 1rem;
}

.menu-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-card,
.partner-card,
.video-placeholder,
.journal-card,
.plats-gallery-grid figure {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(243, 250, 253, 0.72));
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.menu-card {
  padding: 0.95rem;
}

.menu-image-card h3 {
  margin-bottom: 0.5rem;
}

.menu-image-card a {
  display: block;
}

.menu-poster {
  width: 100%;
  max-height: 820px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(16, 37, 50, 0.14);
  box-shadow: 0 10px 20px rgba(11, 43, 59, 0.14);
  background: #ffffff;
  transition: transform 0.24s ease;
}

.menu-image-card a:hover .menu-poster {
  transform: translateY(-2px);
}

.service-notes {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.service-notes p {
  margin: 0;
  padding: 0.7rem 0.9rem;
  border-radius: 13px;
  border: 1px solid rgba(16, 37, 50, 0.14);
  background: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.7rem;
  border-radius: 18px;
  border: 1px solid rgba(86, 58, 28, 0.28);
  background:
    linear-gradient(145deg, #f5e7ca, #e3c89f),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.23), transparent 46%);
  padding: 2.2rem 0.9rem 0.95rem;
  box-shadow: inset 0 0 0 2px rgba(86, 58, 28, 0.12), 0 14px 28px rgba(49, 32, 16, 0.16);
}

.gallery::before {
  content: "Ambiance & assiettes";
  position: absolute;
  top: 0.65rem;
  left: 0.95rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.08em;
  color: #5a3b18;
  background: rgba(255, 245, 228, 0.82);
  border: 1px solid rgba(90, 59, 24, 0.28);
  border-radius: 999px;
  padding: 0.14rem 0.62rem;
  z-index: 2;
}

.gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='140' viewBox='0 0 180 140'%3E%3Cg fill='none' stroke='%2361451f' stroke-opacity='.26' stroke-width='3'%3E%3Cpath d='M24 86C48 52 132 52 156 86C132 116 48 116 24 86Z'/%3E%3Cpath d='M38 78C60 62 120 62 142 78' stroke-width='2.3'/%3E%3Cpath d='M52 70C70 60 110 60 128 70' stroke-width='2'/%3E%3Ccircle cx='90' cy='86' r='10' fill='%2361451f' fill-opacity='.24' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 150px auto;
  background-repeat: repeat;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 130px;
  object-fit: cover;
  border-radius: 10px;
  border: 6px solid #efe0bf;
  outline: 1px solid rgba(90, 59, 24, 0.24);
  box-shadow: 0 8px 18px rgba(61, 38, 16, 0.18);
  position: relative;
  z-index: 1;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.gallery img:nth-child(1) {
  grid-column: span 5;
}

.gallery img:nth-child(2) {
  grid-column: span 4;
}

.gallery img:nth-child(3) {
  grid-column: span 3;
}

.gallery img:nth-child(4) {
  grid-column: span 3;
}

.gallery img:nth-child(5) {
  grid-column: span 5;
}

.gallery img:nth-child(6) {
  grid-column: span 4;
}

.gallery img:nth-child(7) {
  grid-column: span 4;
}

.gallery img:nth-child(8) {
  grid-column: span 4;
}

.gallery img:nth-child(9) {
  grid-column: span 4;
}

.gallery img:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 32px rgba(61, 38, 16, 0.25);
}

.plats-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plats-gallery-grid figure {
  margin: 0;
  padding: 0.6rem;
}

.plats-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(16, 37, 50, 0.18);
}

#histoire {
  text-align: center;
}

#histoire p {
  margin-left: auto;
  margin-right: auto;
  max-width: 84ch;
}

.journaux-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.journal-card {
  margin: 0;
  padding: 0.78rem;
  background:
    linear-gradient(160deg, rgba(25, 49, 63, 0.1), rgba(217, 181, 123, 0.26)),
    #f2ebda;
  border: 1px solid rgba(64, 45, 21, 0.28);
}

.journal-card a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.journal-card img {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  background: #e0d2b8;
  border-radius: 12px;
  border: 1px solid rgba(45, 33, 17, 0.3);
  box-shadow: 0 14px 28px rgba(40, 28, 12, 0.22);
  filter: contrast(1.08) saturate(1.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.journal-card a:hover img {
  transform: scale(1.015);
  box-shadow: 0 18px 34px rgba(40, 28, 12, 0.28);
}

.journal-card figcaption {
  margin-top: 0.65rem;
  font-weight: 700;
  color: #153445;
  text-align: center;
}

.partners-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.videos-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.videos-grid article {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.videos-grid video {
  width: 100%;
  height: auto;
  max-height: 400px;
}

.partner-card,
.video-placeholder {
  padding: 1rem;
  min-height: 110px;
  display: grid;
  align-content: center;
}

.partner-card {
  text-align: center;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.06em;
  font-size: 1.33rem;
  color: var(--navy);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(234, 247, 251, 0.66));
}

.video-placeholder h3 {
  margin-bottom: 0.35rem;
}

.thanks {
  text-align: center;
}

.final-line {
  margin-top: 0.9rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.6rem, 1.2rem + 1vw, 2.2rem);
  color: var(--navy);
  letter-spacing: 0.05em;
}

.site-footer {
  margin-top: 1.6rem;
  padding: 2.8rem 0 2.15rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(185deg, #092735 0%, #103a4e 58%, #15475d 100%),
    radial-gradient(circle at 8% 6%, rgba(74, 159, 190, 0.26), transparent 36%),
    radial-gradient(circle at 92% 100%, rgba(217, 181, 123, 0.16), transparent 38%);
  color: #e5f3f8;
  box-shadow: 0 -14px 34px rgba(9, 31, 43, 0.24);
  border-top: 1px solid rgba(205, 229, 240, 0.16);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 14px;
  background:
    radial-gradient(circle at 12px -4px, rgba(255, 255, 255, 0.28) 12px, transparent 13px) repeat-x;
  background-size: 24px 14px;
  opacity: 0.34;
  pointer-events: none;
}

.site-footer .container {
  display: grid;
  gap: 1.05rem;
  justify-items: center;
  text-align: center;
  max-width: 1100px;
}

.footer-title {
  color: #f5fbff;
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 10px rgba(7, 28, 40, 0.24);
}

.footer-meta {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
  width: min(1080px, 100%);
}

.footer-chip {
  margin: 0;
  grid-column: span 2;
  padding: 0.72rem 0.9rem 0.74rem;
  border-radius: 14px;
  border: 1px solid rgba(209, 232, 241, 0.24);
  background:
    linear-gradient(165deg, rgba(224, 243, 251, 0.13), rgba(205, 230, 242, 0.06));
  color: #e7f6fc;
  font-size: 0.94rem;
  box-shadow: 0 10px 20px rgba(8, 31, 44, 0.12);
  text-align: left;
  backdrop-filter: blur(3px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 245, 252, 0.42);
  box-shadow: 0 14px 28px rgba(8, 31, 44, 0.2);
}

.footer-chip strong {
  display: block;
  margin: 0 0 0.18rem;
  color: #ffffff;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.06em;
  font-size: 1.08rem;
}

.footer-chip span {
  display: block;
  color: rgba(235, 249, 255, 0.95);
  line-height: 1.45;
}

.footer-chip a,
.footer-legal a,
.footer-credit-link {
  color: #f0fbff;
}

.footer-chip a:hover,
.footer-legal a:hover,
.footer-credit-link:hover {
  color: #ffffff;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.52rem;
  padding-top: 0.25rem;
}

.footer-legal a {
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(208, 232, 241, 0.28);
  border-radius: 999px;
  padding: 0.34rem 0.84rem;
  background: rgba(210, 234, 244, 0.14);
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-legal a:hover {
  transform: translateY(-1px);
  background: rgba(210, 234, 244, 0.24);
}

.site-footer small {
  color: rgba(229, 243, 248, 0.88);
  letter-spacing: 0.01em;
}

.footer-credit {
  margin: 0.1rem 0 0;
  color: rgba(229, 243, 248, 0.92);
}

.footer-credit-link {
  margin-left: 0.3rem;
  text-decoration: none;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.06em;
  border: 1px solid rgba(208, 232, 241, 0.28);
  border-radius: 999px;
  padding: 0.22rem 0.68rem;
  background: rgba(210, 234, 244, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-credit-link:hover {
  transform: translateY(-1px);
  background: rgba(210, 234, 244, 0.24);
}

.legal-body {
  background: #f4f8fb;
}

.legal-page {
  width: min(920px, 92%);
  margin: 2.2rem auto;
  border-radius: 16px;
  border: 1px solid rgba(16, 37, 50, 0.14);
  background: #ffffff;
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.btn-retour {
  margin-top: 1.6rem;
  display: inline-block;
  text-decoration: none;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.07em;
  padding: 0.62rem 1.4rem;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(130deg, var(--navy), var(--teal));
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-1%, -0.6%, 0) scale(1.02);
  }
  100% {
    transform: translate3d(1.2%, 0.8%, 0) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1080px) {
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-chip {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  :root {
    --header-space: 150px;
  }

  .site-header {
    position: fixed;
    top: 0;
  }

  .site-header .container {
    min-height: 76px;
    border-radius: 0;
    padding: 0.66rem 0.62rem;
    gap: 0.6rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .logo {
    font-size: clamp(1.55rem, 1.2rem + 1vw, 2rem);
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: thin;
    padding: 0.36rem;
  }

  .nav a {
    flex: 0 0 auto;
  }

  .hero-grid,
  .menu-grid,
  .journaux-gallery,
  .videos-grid,
  .service-notes,
  .plats-gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery img,
  .gallery img:nth-child(n) {
    grid-column: span 1;
    min-height: 160px;
  }

  .section {
    padding: 2rem 0.9rem;
  }
}

@media (max-width: 620px) {
  :root {
    --header-space: 144px;
  }

  .site-header .container {
    border-radius: 0;
  }

  .logo-mark {
    width: 52px;
    height: 52px;
  }

  .nav {
    gap: 0.3rem;
  }

  .nav a {
    font-size: 0.74rem;
    padding: 0.36rem 0.52rem;
  }

  .hero-content p:not(.eyebrow) {
    padding: 0.12rem 0.25rem;
    background: rgba(255, 255, 255, 0.3);
  }

  .section {
    border-radius: 16px;
  }

  .footer-meta {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.history-block {
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 4px solid #2c5282;
  background-color: #f8f9fa;
  border-radius: 4px;
}

.history-block h3 {
  color: #2c5282;
  margin-top: 0;
  font-size: 1.3rem;
}

.history-block p {
  margin: 1rem 0;
  line-height: 1.6;
}