@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&display=swap');

:root {
  --bg: #0b0f14;
  --surface: #0f1720;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: #1f2937;
  --accent: #ffffff;
  --shadow: 0 14px 28px rgba(0,0,0,.35);
}

* {
  box-sizing: border-box;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
}
.sr-only:focus-visible {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
}

html, body {
  height: 100%;
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image: url('../images/background.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ===== HEADER & NAVBAR ===== */
.site-header {
  position: sticky;
  top: 0;
  background: rgb(0, 132, 129);
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  min-height: 60px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  overflow: visible;
  box-shadow: 0 20px 15px rgba(0,0,0,0.1);
  border-bottom: #000000 2px solid;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 20px;
}

.nav-left a,
.nav-right a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  transition: opacity 0.2s ease;
}

.nav-left a:hover,
.nav-right a:hover {
  opacity: 0.8;
}

.nav {
  display: flex;
  gap: 16px;
  justify-content: end;
}
.nav a {
  padding: 8px 10px;
  border-radius: 8px;
}
.nav a:hover {
  background: #121a24;
  text-decoration: none;
}

.btn-prenota {
  display: inline-block;
  padding: 10px 25px;
  font-size: 1em;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  color: #ffffff;
  background-color: #E65100;
  border: 3px solid #000000;
  border-radius: 8px;
  clip-path: none;
  box-shadow:
    5px 5px 0 0 #000000,
    0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease-out;
  transform: translate(0, 0);
}

.btn-prenota:hover {
  background-color: #FF7043;
  transform: translateY(-2px);
}

.btn-prenota:active {
  transform: translate(3px, 3px);
}

/* ===== LOGO HEADER ===== */
.logo-wrapper {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 20;
}

.logo-wrapper a {
  display: block;
  line-height: 0;
  margin-left: 15px;
}

.logo {
  width: 180px;
  height: auto;
  display: block;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
  cursor: pointer;
}
.logo:hover {
  transform: translateY(-2px) scale(1.02);
}

/* ===== HAMBURGER MENU MOBILE ===== */
.hamburger-icon {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1003;
  position: relative;
}

.hamburger-icon span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.hamburger-icon.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-icon.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100vh;
  background: rgb(0, 132, 129);
  z-index: 1005;
  padding-top: 80px;
  transition: left 0.3s ease;
  box-shadow: 2px 0 10px rgba(0,0,0,0.3);
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 15px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s ease;
}

.mobile-menu a:hover {
  background: rgba(255,255,255,0.1);
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 1004;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-overlay.active {
  pointer-events: auto;
  opacity: 1;
}

footer {
  background: #0b0f14;
  color: var(--text);
  padding: 30px 40px 15px;
  border-top: 2px solid #E65100;
  box-shadow: 0 -10px 20px rgba(0,0,0,0.18), 0 -3px 6px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: auto;
}

.footer-main-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.footer-col {
  flex-basis: 30%;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  font-size: 1.8rem;
  color: var(--accent);
  transition: color 0.2s;
}

.social-links a:hover {
  color: rgb(0, 132, 129);
  text-decoration: none;
}

.footer-links h4 {
  margin-top: 0;
  color: var(--accent);
  font-size: 1.1em;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.btn-footer-action {
  display: inline-block;
  padding: 10px 20px;
  background-color: #E65100;
  color: white;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s;
  text-align: center;
}

.btn-footer-action:hover {
  background-color: #FF7043;
  text-decoration: none;
}

.deliveroo{
  background-color: #00CCBC;
}

.deliveroo:hover{
  background: #00B3A5;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-bottom-row a {
  color: var(--muted);
  text-decoration: underline;
}

.footer-bottom-row a:hover {
  color: var(--accent);
}

/* ===== MAIN LAYOUT ===== */
main {
  padding: 40px 20px 80px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  flex: 1;
}

.section {
  background: linear-gradient(180deg, #222222, #118aaf);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

/* ===== TITOLI GENERICI DI SEZIONE ===== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.8rem, 1.4rem + 1.4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.section-subtitle {
  font-size: clamp(0.9rem, 0.8rem + 0.3vw, 1rem);
  color: #fff;
  opacity: .9;
  margin: 0;
  padding: 0 10px;
}

/* Titoli dentro .ig-section con override colore */
.ig-section .section-title{
  color: #111111 !important;
  font-size: 3rem !important;
}
.ig-section .section-subtitle {
  font-size: 1.5rem !important;
  color: #111111 !important;
}

@media(max-width: 768px) {
.ig-section .section-title{
  color: #ffffff !important;
  font-size: 1.9em !important;
  text-shadow: #000 0 2px 8px;
}
.ig-section .section-subtitle {
  font-size: 1rem !important;
  color: #ffffff !important;
  margin-bottom: 10px;
  text-shadow: #000 0 2px 8px;
}

}

/* ===== INSTAGRAM SECTION (IG) ===== */
.ig-section {
  padding: 0;
}

/* ===== BURGER INTRO (STACK SCROLL) ===== */
#burger-intro {
  position: relative;
  height: 1200vh;
  overflow: clip;
}

.burger-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.burger-stage.free {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 5;
}

#burger-intro .layer {
  opacity: var(--inBagOpacity, 1);
  transform-origin: 50% 50%;
}

.burger-stack {
  transform: translate3d(0,0,0) scale(var(--inBagScale, 1));
}

.layer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(64vmin, 560px);
  will-change: transform, opacity;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.35));
}

.bun-top {
  height: 120px;
  border-radius: 120px 120px 40px 40px;
  background: radial-gradient(120px 60px at 50% 20%, #f4c987 0, #e2a04c 60%, #cd883c 100%);
  z-index: 6;
}
.lettuce {
  height: 50px;
  border-radius: 30px;
  background: linear-gradient(180deg, #30d36b, #1c9b4a);
  z-index: 5;
}
.tomato {
  height: 42px;
  border-radius: 40px;
  background: linear-gradient(180deg, #6af5ff, #36a5d9);
  z-index: 4;
}
.cheese {
  height: 34px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffe176, #f2c400);
  z-index: 3;
}
.patty {
  height: 46px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ff0000, #ff0000);
  z-index: 2;
}
.bun-bottom {
  height: 90px;
  border-radius: 34px 34px 90px 90px;
  background: radial-gradient(120px 60px at 50% 80%, #e2a04c 0, #cd883c 60%, #b6722f 100%);
  z-index: 1;
}

.scroll-hint {
  position: sticky;
  bottom: 24px;
  text-align: center;
  color: var(--muted);
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  user-select: none;
  padding: 0 15px;
}

.skip-intro {
  position: sticky;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid var(--border);
  background: #0e1620;
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.skip-intro:hover {
  background: #131d29;
}

/* ===== BEST SELLERS GRID & CARDS ===== */
.best-sellers-section {
  padding: 3% 20px;
  background-color: #f8f8f800;
  text-align: center;
}

/* Titoli specifici per best sellers */
.best-sellers-section .section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #e65100;
  margin-bottom: 25px;
  border-bottom: 4px solid #000000;
  display: inline-block;
  padding-bottom: 5px;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.section-title-orange {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: #e65100;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  2px 0 #000,
     1px  2px 0 #000;
  margin-bottom: 5px;
  margin-top: 5px;
  border-bottom: 4px solid #000000;
  display: inline-block;
  padding-bottom: 5px;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.best-sellers-section .section-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: #000000;
  margin-bottom: 7%;
  padding: 0 15px;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.best-sellers-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
}

/* Carte "triple" centrale/left/right */
.burger-card {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
  transition: all 0.2s ease-out;
  border: 3px solid #000000;
  border-radius: 8px;
  box-shadow:
    5px 5px 0 0 #000000,
    0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.burger-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 0 #000000, 0 10px 20px rgba(0, 0, 0, 0.2);
}

.burger-card.comic-border {
  border-width: 4px;
  box-shadow: 0 8px 0 #E65100, 0 16px 32px rgba(0,0,0,0.10);
}

.burger-card-center {
  transform: scale(1.13) translateY(-18px);
  z-index: 2;
  box-shadow: 0 12px 0 #008481, 0 24px 48px rgba(0,0,0,0.13);
}

.burger-card-left {
  transform: scale(0.93) translateY(24px) rotate(-2deg);
  z-index: 1;
}

.burger-card-right {
  transform: scale(0.93) translateY(38px) rotate(2deg);
  z-index: 1;
}

.burger-card-center:hover {
  transform: scale(1.22) translateY(-28px) !important;
  box-shadow: 0 12px 0 #008481, 0 24px 48px rgba(0,0,0,0.13);
  z-index: 3;
}

.burger-card-left:hover {
  transform: scale(1.13) translateY(18px) rotate(-2deg) !important;
  box-shadow: 0 12px 0 #008481, 0 24px 48px rgba(0,0,0,0.13);
  z-index: 2;
}

.burger-card-right:hover {
  transform: scale(1.13) translateY(32px) rotate(2deg) !important;
  box-shadow: 0 12px 0 #008481, 0 24px 48px rgba(0,0,0,0.13);
  z-index: 2;
}

.burger-image-container {
  height: 200px;
  overflow: hidden;
  border-bottom: 3px solid #000000;
}

.burger-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  transform: scale(1.5);
}

.burger-card:hover .burger-image-container img {
  transform: scale(1.05);
}

.burger-details {
  padding: 20px;
  text-align: left;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  position: relative;
  padding-bottom: 50px;
}

.burger-name {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.burger-ingredients {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #555;
  line-height: 1.5;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin-bottom: 0;
}

.burger-price {
  position: absolute;
  bottom: 15px;
  right: 20px;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 700;
  color: #E65100;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ===== CONTAINER GENERICO ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== MEDIA QUERIES GENERICHE ===== */
@media (max-width: 1024px) {
  .best-sellers-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
  }
}

@media (max-width: 800px) {
  .home .site-header {
    position: absolute;
    justify-content: space-between;
    padding: 10px 12px;
    height: 60px;
    gap: 0;
  }

  .hamburger-icon {
    display: flex;
    order: 0;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    margin: 0;
    flex-shrink: 0;
  }

  .home .logo-wrapper {
    position: static;
    left: 17%;
    transform: none;
    top: auto;
    margin-top: 0;
    order: none;
    flex: none;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 15px;
  }

    .home .logo-wrapper {
    position: static;
    left: auto;
    transform: none;
    top: auto;
    margin-top: 0;
    order: none;
    flex: none;
    display: flex;
    align-items: center;
    margin-left: 7%;
    margin-right: auto;
  }

  .logo {
    width: 60px;
    height: auto;
  }

  .nav-right {
    order: 2;
    margin-left: 0;
    position: static;
    top: auto;
    right: 0;
    transform: none;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }

  .nav-right .btn-prenota {
    padding: 5px 10px;
    font-size: 0.85em;
  }

  .nav-left {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-overlay {
    display: block;
  }

  .nav-right {
    order: 3;
    gap: 8px;
    display: flex;
    flex-wrap: nowrap;
  }

  .nav-right .btn-prenota {
    padding: 5px 8px;
    font-size: 1.1em;
    white-space: nowrap;
  }

  main {
    padding: 30px 15px 60px;
  }

  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .ig-paper {
    height: auto;
    min-height: 120vh;
    padding: 40px 20px;
  }

  .section-header {
    padding: 0 15px;
  }

  .footer-main-row {
    flex-direction: column;
    gap: 25px;
    padding: 0 15px;
  }

  .footer-col {
    flex-basis: 100%;
    width: 100%;
  }

  .footer-info {
    text-align: center;
    align-items: center;
  }

  .footer-logo {
    width: 100px;
  }

  .footer-actions {
    align-items: center;
    padding-bottom: 15px;
  }

  .btn-footer-action {
    width: 100%;
    max-width: 300px;
  }

  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    font-size: 0.85rem;
    padding: 0 15px;
  }

  .site-credit {
    order: -1;
  }

  .best-sellers-section {
    padding: 60px 15px;
  }

  .best-sellers-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
    padding: 0 15px;
  }

  .burger-image-container {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 10px 12px;
    min-height: 50px;
  }

  .logo {
    width: 60px;
  }

  .nav-right .btn-prenota {
    padding: 4px 7px;
    font-size: 0.85em;
  }

  footer {
    padding: 25px 15px 12px;
  }

  .footer-logo {
    width: 80px;
  }

  .footer-bottom-row {
    font-size: 0.75rem;
  }

  .social-links a {
    font-size: 1.5rem;
  }

  main {
    padding: 20px 12px 50px;
  }

  .ig-paper {
    padding: 25px 12px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .best-sellers-section {
    padding: 3% 30px;
  }

  .best-sellers-section .section-subtitle {
    margin-bottom: 30px;
  }

  .best-sellers-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
    padding: 0 8px;
  }

  .burger-details {
    padding: 15px;
    padding-bottom: 45px;
  }

  .burger-price {
    bottom: 12px;
    right: 15px;
    font-size: 1.1rem;
  }

  .container {
    padding: 0 12px;
  }

  .scroll-hint {
    bottom: 15px;
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #burger-intro {
    height: 140vh;
  }
  .layer {
    transition: none !important;
  }
}

.home .site-header {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.home .logo-wrapper {
  position: absolute;
  top: 5%;
}

.home .nav-left {
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

/* Navbar fixed width per pagine non-home */
body:not(.home):not(.home-nav) .site-header {
   position: sticky;
   padding: 15px 40px;
   justify-content: flex-start;
   gap: 20px;
 }
 
body:not(.home):not(.home-nav) .nav-left {
   display: none;
 }
 
body:not(.home):not(.home-nav) .hamburger-icon {
   display: flex;
   order: 0;
   margin-right: 0;
   flex-shrink: 0;
 }
 
body:not(.home):not(.home-nav) .logo-wrapper {
   position: static;
   order: 1;
   margin: 0;
   display: flex;
   align-items: center;
   flex-shrink: 0;
   margin-left: 10px;
 }
 
body:not(.home):not(.home-nav) .logo {
   width: 60px;
 }
 
body:not(.home):not(.home-nav) .nav-right {
   order: 2;
   margin-left: auto;
 }

body:not(.home):not(.home-nav) .mobile-menu {
   display: block;
 }

body:not(.home):not(.home-nav) .mobile-overlay {
   display: block;
 }
 
 @media (max-width: 800px) {
  body:not(.home):not(.home-nav) .site-header {
     padding: 12px 20px;
     gap: 12px;
   }
 
  body:not(.home):not(.home-nav) .logo {
     width: 60px;
   }
 }

 @media (max-width: 480px) {
  body:not(.home):not(.home-nav) .site-header {
     padding: 10px 15px;
     gap: 10px;
   }
 
  body:not(.home):not(.home-nav) .logo {
     width: 50px;
   }
 }

/* ===== PRIVACY POLICY SECTION ===== */
.privacy-policy-section {
    padding: 60px 20px 80px;
    background-color: #f8f8f800;
}

.privacy-policy-section h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #e65100;
    margin-bottom: 10px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 2px 0 #000, 1px 2px 0 #000;
}

.last-updated {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 40px;
    font-style: italic;
}

.policy-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 3px solid #000000;
    box-shadow: 0 8px 0 #E65100, 0 16px 32px rgba(0,0,0,0.10);
}

.policy-content h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: #e65100;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.policy-content ul {
    margin: 15px 0 15px 20px;
    padding-left: 20px;
}

.policy-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.policy-content strong {
    color: #e65100;
    font-weight: 700;
}

.policy-content a {
    color: #008481;
    text-decoration: underline;
}

.policy-content a:hover {
    color: #e65100;
}

@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 40px 15px 60px;
    }

    .policy-content {
        padding: 25px;
    }

    .policy-content h2 {
        font-size: 1.4rem;
    }

    .policy-content p,
    .policy-content li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy-section {
        padding: 30px 12px 50px;
    }

    .policy-content {
        padding: 20px;
    }

    .privacy-policy-section h1 {
        font-size: 1.8rem;
    }

    .policy-content h2 {
        font-size: 1.2rem;
        margin-top: 20px;
    }

    .policy-content p,
    .policy-content li {
        font-size: 0.9rem;
    }
}
