html {
  scroll-behavior: smooth;
}

/* Font Face for Blauer Nue */
/* ===== Blauer Nue Font Setup ===== */
@font-face {
  font-family: 'Blauer Nue';
  src: url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Regular.woff2') format('woff2'),
       url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Blauer Nue';
  src: url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Medium.woff2') format('woff2'),
       url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Blauer Nue';
  src: url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-SemiBold.woff2') format('woff2'),
       url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Blauer Nue';
  src: url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Bold.woff2') format('woff2'),
       url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Blauer Nue';
  src: url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-ExtraBold.woff2') format('woff2'),
       url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Blauer Nue';
  src: url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Heavy.woff2') format('woff2'),
       url('fonts/blauer nue/Blauer Nue Downloads/TrueType/BlauerNue-Heavy.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fff;
  --accent: #ff473a;
  /* More vibrant red-orange */
  --dark: #2d2d2d;
  --text: #4a4a4a;
  --light-bg: #F97929;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Blauer Nue','Poppins', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  /* Prevent scrollbars from absolute elements */
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-title,
.about-title,
.how-title,
.cta-title,
.plan-name,
.blog-title,
.feature-title,
.advantage-title {
  font-family: 'Blauer Nue', Arial, Helvetica, sans-serif;
}


/* Remove default background on body to apply properly */
html {
  height: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and Hero Unified Styles */
.hero-header-wrapper {
  position: relative;
  background:#FFFBF9;
  overflow: hidden;
  background-image: url('images/Dmenus\ Banner\ Bg.png');
  background-position: center;
  background-size: contain;
}

.site-header {
  padding: 10px 0;
  background: transparent;
  position: relative;
  z-index: 10;
}



.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  position: relative;
  z-index: 10;
}

/* Replicate the logo icon with CSS - REMOVED for image logo */
/*
.logo::before {
  content: '€';
  display: inline-flex;
  ...
}
*/

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #3F070C;
  font-family: 'Blauer Nue';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
  text-decoration: none;
  opacity: 0.5;
}

.nav-links a:hover {
  opacity: 1;
}
.nav-links a.active {
  opacity: 1;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  color: #3F070C;
}


.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
  padding: 0;
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: #3b0e0e;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.desktop-only {
  display: inline-block;
}

.btn {
  display: inline-block;
  padding: 16px;
  border-radius: 36px;
background: var(--Gradient-Button, linear-gradient(90deg, #F91C30 0%, #F97829 100%));
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 10;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 26, 26, 0.4);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-cta {
 border-radius: 36px;
background: var(--Gradient-Button, linear-gradient(90deg, #F91C30 0%, #F97829 100%));
  color: #FFF;
font-family: "Blauer Nue";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 16px */
}

.btn-primary {
  border-radius: 36px;
background: var(--Gradient-Button, linear-gradient(90deg, #F91C30 0%, #F97829 100%));
  color: white;
  padding: 16px ;
  font-size: 16px;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(255, 26, 26, 0.25);
}

.hero {
  padding: 30px 0 60px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

/* Full Dotted Grid Background */
/* Moved to .hero-header-wrapper */

.hero-inner {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-left {
  flex: 1.2;
}

.hero-title {
  color: #3F070C;
font-family: "Blauer Nue";
font-size: 64px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 64px */
  margin-bottom: 30px;
  white-space: nowrap;
}

.hero-sub {
  color: #3F3F3F;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 148%; /* 23.68px */
  margin-bottom: 40px;
  
}

.hero-right {
  flex: 1;
}

.mockup {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.mockup img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 40px;
}

/* Dots decorations removed as we use body background */
/* Corner dotted decorations */
.dot-corner {
  position: absolute;
  width: 300px;
  height: 300px;
  pointer-events: none;
  background-image: radial-gradient(var(--accent) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 2;
  z-index: -1;
}

.dot-tl {
  top: 0;
  left: 0;
  -webkit-mask-image: radial-gradient(circle at top left, black, transparent 60%);
  mask-image: radial-gradient(circle at top left, black, transparent 60%);
}

.dot-tr {
  top: 0;
  right: 0;
  -webkit-mask-image: radial-gradient(circle at top right, black, transparent 60%);
  mask-image: radial-gradient(circle at top right, black, transparent 60%);
}

.dot-bl {
  bottom: 0;
  left: 0;
  -webkit-mask-image: radial-gradient(circle at bottom left, black, transparent 60%);
  mask-image: radial-gradient(circle at bottom left, black, transparent 60%);
}

.dot-br {
  bottom: 0;
  right: 0;
  -webkit-mask-image: radial-gradient(circle at bottom right, black, transparent 60%);
  mask-image: radial-gradient(circle at bottom right, black, transparent 60%);
}

@media (max-width: 960px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }

  .hero-left {
    margin: 0 auto;
  }

  .hero-title {
    font-size: 42px;
  }

  .mockup {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 960px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 20px  ;
  }

  .main-nav {
    flex-direction: row;
    gap: 15px;
    justify-content: end;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    gap: 30px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 24px;
    font-weight: 700;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .desktop-only {
    display: none;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* Tabs Responsiveness */
@media (max-width: 768px) {
  .tabs-container {
    padding: 15px 0;
    margin-bottom: 40px;
  }

  .tabs-bar {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
    padding: 8px 15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .tabs-bar::-webkit-scrollbar {
    display: none;
  }

  .tab-item {
    padding: 10px 18px;
    flex-shrink: 0;
  }

  .section-title {
    font-size: 32px;
  }
}
.partners {
  background-color: rgba(249, 121, 41, 0.1);
  padding: 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.partners-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.partners-title {
  color: #3F070C; ;
font-family: "Blauer Nue";
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 29.76px */
  white-space: nowrap;
  margin: 0;
}

.partners-logos {
  display: flex;
  align-items: center;
  flex: 1;
  opacity: 0.8;
  overflow: hidden;
  gap: 80px;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: logoScroll 30s linear infinite;
  width: max-content;
}

.logo-track:hover {
  animation-play-state: paused;
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.partner-logo-img {
  height: 35px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
  cursor: pointer;
}

.partner-logo-img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.partner-logo {
  font-weight: 700;
  font-size: 18px;
  color: #555;
  font-family: sans-serif;
  letter-spacing: 1px;
}

/* About Section (What is Dmenus) */
.about-section {
  padding: 80px 0 60px 0;
  background: #FFFBF9;
  /* Ensure white background for this section */
  position: relative;
  z-index: 1;
  overflow: hidden;
  /* Ensure dots don't overflow */
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-image {
  flex: 1;
  position: relative;
}

/* Animation Keyframes */
@keyframes floatUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bobbing {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.about-card-mockup {
  position: relative;
  width: 100%;
  max-width: 680px;
  height: 500px;
  background: #666;
  /* Fallback/Placeholder background */
  background-image: url('images/Cone.png');
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  /* Ensure content stays within rounded corners */
}
.about-card-mockups {
  position: relative;
  width: 100%;
  max-width: 680px;
  height: 500px;
  background: #666;
  /* Fallback/Placeholder background */
  background-image: url('images/Chef\ Cooking\ in\ Professional\ Kitchen\ 1.png');
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  /* Ensure content stays within rounded corners */
}

/* Overlays on the image to match design */
.card-float {
  position: absolute;
  left: 30px;
  /* Indented slightly */
  background: rgba(8, 8, 8, 0.25);
  /* More transparent */
  backdrop-filter: blur(0.7px);
  -webkit-backdrop-filter: blur(1.1px);
  padding: 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 280px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-radius: 24px;
border: 1px solid #FFF;
background: rgba(255, 255, 255, 0.20);
backdrop-filter: blur(5.599999904632568px);
  /* Animation properties */
  opacity: 0;
  /* Star invisible */
  animation: floatUp 0.8s ease-out forwards, bobbing 4s ease-in-out infinite;
}

.card-top {
  top: auto;
  bottom: 120px;
  left: 30px;
  right: auto;
  animation-delay: 0.2s, 1s;
  /* Appear then bob */
}

.card-mid {
  top: auto;
  bottom: 40px;
  left: 30px;
  right: auto;
  animation-delay: 1.2s, 2s;
  /* Appear later then bob */
}

.icon-circle {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.7);
  color: white;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.card-text {
  font-size: 11px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
  /* Lighter text for dark backgrounds or overlay */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.card-text strong {
  display: block;
  font-size: 14px;
  color: white;
  margin-bottom: 2px;
}

.card-text span {
  display: block;
  opacity: 0.9;
  font-weight: 400;
}

.card-main {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: floatUp 0.8s ease-out 0.5s forwards;
  /* Animated too */
  opacity: 0;
}

.card-main img {
  width: 100%;
  border-radius: 16px;
  height: 140px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 12px 4px 4px;
}

.card-content h4 {
  margin: 0 0 6px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.card-content p {
  margin: 0 0 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.btn-sm {
  background: linear-gradient(90deg, #ff6b54, #ff473a);
  color: white;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 71, 58, 0.4);
  transition: transform 0.2s;
}

.btn-sm:hover {
  transform: translateY(-2px);
}

.about-content {
  flex: 1;
}

.pill-label {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 100px;
border: 1px solid rgba(63, 7, 12, 0.20);
 color: #3F070C;
font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 17.36px */
margin-bottom: 12px;
}

.about-title {
  color: #3F070C;
font-family: "Blauer Nue";
font-size: 48px;
font-style: normal;
font-weight: 600;
line-height: 100%;
  margin-bottom: 14px;
}
.about-below-title{
color: #3F3F3F;
font-family: Poppins;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 148%; /* 29.6px */
margin-bottom: 8px;
}
.about-container{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.about-text {
  color: #3F3F3F;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 148%; /* 23.68px */
margin-bottom: 16px;
}
.about-svg{
  display: flex;
  align-items: center;
 text-align: center;
 gap: 10px;
}
@media (max-width: 786px) {
  .about-svg {
    gap:4px;
  
  }
  .hero-title {
    font-size:28px ;
  }
  .about-text{
    font-size: 10px;
  }
}
@media (max-width: 900px) {
  .about-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-card-mockup {
    margin: 0 auto;
  }
  .about-card-mockups {
    margin: 0 auto;
  }

  .about-title {
    font-size: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .feature-icon-img {
    margin: 0 auto 24px;
  }

  .about-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .partners-inner {
    flex-direction: column;
    gap: 20px;
  }

  .partners-logos {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}


/* Features Grid */

/* Features Grid */
.features-section {
  background: #FFFBF9;
  position: relative;
  overflow: hidden;
}

/* Dotted design like the screenshot (Features section bottom) */
.features-section .dot-corner {
  width: min(620px, 60vw);
  height: 220px;
  opacity: 0.25;
  background-size: 18px 18px;
  bottom: -90px;
}

.features-section .dot-bl {
  left: -120px;
  -webkit-mask-image: linear-gradient(90deg, black 0%, black 55%, transparent 85%);
  mask-image: linear-gradient(90deg, black 0%, black 55%, transparent 85%);
}

.features-section .dot-br {
  right: -120px;
  -webkit-mask-image: linear-gradient(270deg, black 0%, black 55%, transparent 85%);
  mask-image: linear-gradient(270deg, black 0%, black 55%, transparent 85%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  text-align: left;
  padding: 0 30px;
}

.feature-item {
  padding: 20px 0;
}
.feature-icon {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.feature-icon svg:first-child {
  position: absolute;
  width: 56px;
  height: 56px;
}

.feature-icon svg:last-child {
  width: 24px;
  height: 24px;
}

.feature-icon-img {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: contain;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-img {
  transform: translateY(-8px) scale(1.05);
}

.feature-title {
  color: #3F070C;
font-family: "Blauer Nue";
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 20px */
margin-bottom: 24px;
}

.feature-desc {
 color: #3F3F3F;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 19.84px */
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.features {
  padding: 60px 0 60px 0;
  background: #FFFBF9;
}

.features__header {
  text-align: center;
  margin-bottom: 40px;
}

.features__badge {
  display: inline-block;
  border: 1px solid rgba(63, 7, 12, 0.20);
 color: #3F070C;
  border-radius: 100px;
  font-size: 14px;
      padding: 14px 20px;
  color: #3F070C;

font-family: Poppins;
font-weight: 400;
line-height: 124%; /* 17.36px */
  margin-bottom: 20px;
}

.features__title {
  color: #3F070C;
text-align: center;
font-family: "Blauer Nue";
font-size: 48px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 48px */
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.features__card {
  padding: 20px 20px;
  border-radius: 12px;
border: 1px solid var(--Gradient-Button, #F91C30);

background: #FFF;
  transition: 0.3s ease;
}

.features__card:hover {
  transform: translateY(-6px);
  border-color: #ff4d4d;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.features__icon {
  margin-bottom: 60px;
}

.features__card-title {
  color: #3F070C;
font-family: "Blauer Nue";
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 20px */;
  margin-bottom: 12px;
}

.features__card-text {
  color: #3F3F3F;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 19.84px */
}
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features__grid {
    grid-template-columns: 1fr;
  }

  .features__title {
    font-size: 28px;
  }
}

.insights {
  
 background: #FFFBF9;
}

.insights__header {
  text-align: center;
  margin-bottom: 60px;
}
.insights__badge {
  display: inline-block;
 padding: 14px 24px;
  border-radius: 100px;
border: 1px solid rgba(63, 7, 12, 0.20);
  color: #3F070C;

font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 17.36px */
  margin-bottom: 20px;
}

.insights__title {
  color: #3F070C;
text-align: center;
font-family: "Blauer Nue";
font-size: 48px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 48px */
  margin-bottom: 60px;
  
}

.insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.insights__card {
  
  overflow: hidden;
  transition: 0.3s ease;
}




.insights__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
border: 1px solid #E8D7D4;
}

.insights__content {
  padding: 25px 0;
}

.insights__card-title {
  color: #3F070C;
font-family: "Blauer Nue";
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 20px */
  margin-bottom: 12px;
  
}

.insights__card-text {
  color: #3F3F3F;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 19.84px */
margin-bottom: 20px;
}

.insights__btn {
  display: inline-block;
  padding: 16px;
  border-radius: 999px;
  border-radius: 36px;
background: var(--Gradient-Button, linear-gradient(90deg, #F91C30 0%, #F97829 100%));
  color: #FFF;

font-family: "Blauer Nue";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 100%;
text-decoration: none;
 
}

.insights__btn:hover {
  opacity: 0.9;
}
@media (max-width: 1024px) {
  .insights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .insights__grid {
    grid-template-columns: 1fr;
  }

  .insights__title {
    font-size: 28px;
  }
}

.cta-banner {
  position: relative;
  padding: 100px 0;
  background-color: #FFFBF9;;
  overflow: hidden;
}
.banner-img{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -320px;
  background-image: url('images/Dmenus BgSmall.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}




/* Banner Box ABOVE dots */
.cta-banner__box {
  position: relative;
  z-index: 1;
  border-radius: 24px;
background: #3F070C;
  padding: 60px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}


.cta-banner__part {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-banner__middle {
  text-align: center;
}

.cta-banner__middle-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cta-banner__middle-text {
  font-size: 14px;
  opacity: 0.8;
}

.cta-banner__content {
  max-width: 600px;
}

.cta-banner__title {
  color: #F9F5EF;
font-family: "Blauer Nue";
font-size: 48px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 48px */
  margin-bottom: 15px;
}

.cta-banner__text {
  color: #F9F5EF;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 19.84px */
}

.cta-banner__btn {
  border-radius: 36px;
background: #F91C30;
padding: 16px;
  color: #FFF;

font-family: "Blauer Nue";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 16px */
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-banner__btn:hover {
  background: #e60000;
  transform: translateY(-2px);
}

@media (max-width: 1000px) {
  .banner-img{
    display: none;
  }
}


@media (max-width: 786px) {
  .cta-banner__title {
  color: #F9F5EF;
font-family: "Blauer Nue";
font-size: 32px;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 48px */
  margin-bottom: 15px;
}
  .cta-banner__box {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}


/* Footer Section Styles */
.site-footer {
  background: #FFECE5;
  /* Light peach background from design */
  padding: 40px 40px;
  color: #3b0e0e;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo {
  height: 100px;
  /* Adjust based on logo proportions */
}

.footer-links-grid {
  display: flex;
  gap: 150px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 20px;
}

.footer-links a {
  color: #3F070C;
font-family: "Blauer Nue";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 16px */
  text-decoration: none;
  
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #666;
  
}
.footer-copyright{
  color: #3F070C;
font-family: Poppins;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 14.88px */
}

.footer-legal a {
  text-decoration: none;
  color: #3F070C;
font-family: Poppins;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 124%; /* 14.88px */
  margin-left: 30px;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #3b0e0e;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 50px;
    align-items: center;
    text-align: center;
  }

  .footer-links-grid {
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-legal a {
    margin: 0 15px;
  }
  .footer-legal{
        display: flex;
        gap:10px;
        flex-direction: column;
  }
}