/*
Styles
- Variables
- Base CSS
- Utility
- Swiper
- Navigation
- Footer
- Promosyon Bildirimi
*/
:root {
  /* Colors - Mediterranean Palette */
  --ko-primary: #1a1a1a;
  --ko-white: #ffffff;
  --ko-overlay: rgba(0, 0, 0, 0.8);
  --ko-text-light: #f5f5f5;
  --ko-blue: #192f9a;

  /* Typography */
  --ko-font-main: "Manrope", sans-serif;
  --ko-font-heading: "ivymode", sans-serif;

  /* Spacing */
  --ko-container-padding: 30px;
  --ko-header-height: 80px;

  @media (width >=768px) {
    --ko-container-padding: 40px;
  }

  @media (width >=992px) {
    --ko-container-padding: 60px;
  }
}


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

body {
  font-family: var(--ko-font-main);
  background: var(--ko-white);
  color: var(--ko-primary);
  line-height: 1.6;
}

.ko-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--ko-container-padding);
}

.ko-safe-area {
  max-width: 1600px;
  margin-inline: auto;
}

.ko-fluid-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.ko-filter-invert {
  filter: invert(100%);
}

.ko-u-mx-auto {
  margin-inline: auto;
}

.ko-u-text-center {
  text-align: center;
}

.ko-u-flex-grow {
  flex-grow: 1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
}

/* Utility */

/* Stretched Link Utility */
.ko-u-stretched-link-container {
  position: relative;
}

.ko-u-stretched-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

@media (hover: hover) {
  .ko-u-underline-hover:hover {
    text-decoration: underline;
  }
}

/* Spacer */
/* Yeni nesil CSS ile yazılmış responsive spacer.
   - Native CSS Nesting (Yerel İç İçe Geçme) kullanıldı.
   - Media Query Range Syntax (>= operatörü) kullanıldı.
*/

.u-spacer {
  &[style*="--xs"] {
    height: var(--xs);
  }

  @media (width >=576px) {
    &[style*="--sm"] {
      height: var(--sm);
    }
  }

  /* Modern Media Query Yazımı:
     (min-width: 576px) yerine (width >= 576px) kullanabiliyoruz.
  */

  @media (width >=576px) {
    &[style*="--sm"] {
      height: var(--sm);
    }
  }

  @media (width >=768px) {
    &[style*="--md"] {
      height: var(--md);
    }
  }

  @media (width >=992px) {
    &[style*="--lg"] {
      height: var(--lg);
    }
  }

  @media (width >=1200px) {
    &[style*="--xl"] {
      height: var(--xl);
    }
  }

  @media (width >=1400px) {
    &[style*="--xxl"] {
      height: var(--xxl);
    }
  }
}

/* ko-grid */
.ko-grid {
  --ko-grid-columns: 2;
  display: grid;
  grid-template-columns: repeat(var(--ko-grid-columns), 1fr);
  gap: 20px;

  @media (width >=992px) {
    --ko-grid-columns: 3;
    gap: 30px;
  }
}

/* Swiper */
/* Generic Slider Styles */
.ko-slider-wrapper {
  position: relative;
  width: 100%;
}

.ko-slider__nav-btn {
  position: absolute;
  top: calc(var(--ko-slider-image-height, 0px) / 2);
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background-color: var(--ko-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition:
    all 0.3s ease,
    opacity 0.4s ease,
    visibility 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
}

.ko-slider__nav-btn {
  opacity: 0;
  visibility: hidden;
}

.ko-slider__nav-btn.is-positioned {
  opacity: 1;
  visibility: visible;
}

.ko-slider__nav-btn:hover {
  background-color: var(--ko-blue);
}

.ko-slider__nav-btn:hover img {
  filter: brightness(0) invert(1);
}

.ko-slider__nav-btn--prev {
  left: 20px;
}

.ko-slider__nav-btn--next {
  right: 20px;
}

/* Responsive adjustments for generic slider if needed */
@media (max-width: 768px) {
  .ko-slider__nav-btn {
    width: 40px;
    height: 40px;
  }

  .ko-slider__nav-btn--prev {
    left: 10px;
  }

  .ko-slider__nav-btn--next {
    right: 10px;
  }
}

/* Navigation */
.ko-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 100%;
  max-width: 1600px;
  z-index: 1000;
  display: flex;
  align-items: center;
  color: var(--ko-white);
  background: transparent;

  /* Initial offset via padding */
  padding-top: 10px;
  height: calc(var(--ko-header-height) + 10px);

  /* Smooth transitions */
  transition:
    background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s ease;

  @media (width >=768px) {
    padding-top: 60px;
    height: calc(var(--ko-header-height) + 60px);
  }
}

/* Scrolled State */
.ko-header.is-scrolled {
  background: var(--ko-blue);
  padding-top: 0;
  height: var(--ko-header-height);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Reset negative margins when scrolled to keep items centered */
.ko-header.is-scrolled .ko-header__menu-trigger {
  margin-top: 0;
}

/* Remove shadow when menu is open for a cleaner look */
.is-menu-open .ko-header {
  box-shadow: none !important;
}

.ko-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-inline: 10px;

  @media (width >=768px) {
    padding-inline: 90px;
  }
}

.ko-header__right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.ko-header__cta {
  font-family: var(--ko-font-heading);
  font-size: 18px;
  font-weight: 250;
  letter-spacing: 2px;
  margin-inline-end: 10px;

  @media (width >=768px) {
    font-size: 24px;
  }
}

.ko-header__award {
  display: none;

  @media (width >=768px) {
    display: block;
  }
}

/* Menu Trigger */
.ko-header__menu-trigger {
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
  margin-top: -20px;
  margin-left: -10px;
  margin-right: auto;

  @media (width >=768px) {
    margin-top: -30px;
    margin-left: -30px;
  }
}

.ko-header__menu-icon {
  border: 1px solid transparent;
  width: 26px;
  height: 26px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 0;
  position: relative;
  box-sizing: content-box;

  @media (width >=768px) {
    width: 46px;
    height: 46px;
  }
}

.ko-header__menu-icon i {
  display: block;
  width: 24px;
  height: 2px;
  background-color: currentColor;
  transition: all 0.3s ease;
  transform-origin: center;

  @media (width >=768px) {
    width: 34px;
  }
}

.ko-header__menu-text {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  display: none;

  @media (width >=768px) {
    display: block;
  }
}

.ko-header__logo {
  margin-inline: 30px;
  flex-shrink: 0;
  max-width: 120px;

  @media (width >=480px) {
    margin-inline: unset;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  @media (width >=768px) {
    max-width: unset;
  }
}

.is-menu-open .ko-header__menu-text {
  opacity: 0;
  visibility: hidden;
}

/* Nav Overlay */
.ko-nav {
  --ko-container-padding: 15px;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding-top: var(--ko-header-height);
  padding-bottom: 40px;
  overflow: auto;
  background-color: var(--ko-blue);
  color: var(--ko-white);
  z-index: 999;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;

  @media (width >=768px) {
    --ko-container-padding: unset;
    max-width: 1600px;
    max-height: 844px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.ko-nav.is-open {
  opacity: 1;
  visibility: visible !important;
}

.ko-nav__content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  @media (width >=992px) {
    margin-top: 60px;
  }
}

.ko-nav__links li {
  margin-bottom: 10px;

  @media (width >=768px) {
    margin-bottom: 20px;
  }
}

.ko-nav__links a {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 250;
  font-family: var(--ko-font-heading);
  letter-spacing: 2px;
  transition-duration: 0.3s;

  @media (width >=992px) {
    font-size: 1.8rem;
  }
}

@media (hover: hover) {
  .ko-nav__links a:hover {
    text-decoration: underline;
  }
}

.ko-nav__socials {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.ko-nav__image-wrapper {
  display: none;

  @media (width >=1200px) {
    display: block;
  }
}

/* States */
.is-menu-open {
  overflow: hidden;
}

.is-menu-open .ko-header__menu-icon {
  margin-right: 0;
  border-radius: 100%;

  @media (width >=992px) {
    border-color: var(--ko-white);
  }
}

.is-menu-open .ko-header__menu-icon i {
  background-color: var(--ko-white);
}

.is-menu-open .ko-header__menu-icon i:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.is-menu-open .ko-header__menu-icon i:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.is-menu-open .ko-header__menu-icon i:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.is-menu-open .ko-header__cta {
  color: var(--ko-white);
  border-color: var(--ko-white);
}

.is-menu-open .ko-header__logo-img,
.is-menu-open .ko-header__award img {
  filter: brightness(0) invert(1);
}

/* Language Switcher */
.ko-lang-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  width: fit-content;
  flex-direction: column;

  margin-block: 20px;
  padding: 15px 25px;
  background: #ffffff08;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;

  @media (width >=450px) {
    flex-direction: row;
  }

  @media (width >=992px) {
    margin-block: 40px;
  }
}

.ko-lang-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ko-white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.ko-lang-item:hover {
  opacity: 1;
}

.ko-lang-flag {
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

.ko-lang-item:hover .ko-lang-flag {
  scale: 1.1;
}

/* Footer */
.ko-footer {
  background-color: #fdf9f2;
  /* Cream background from design */
  padding: 80px 15px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--ko-primary);
}

.ko-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  /* Control gaps individually */
}

.ko-footer__logo {
  max-width: 170px;
  margin-bottom: 32px;
}

.ko-footer__nav {
  margin-bottom: 36px;
}

.ko-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
}

.ko-footer__nav-link {
  font-family: var(--ko-font-heading);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 1px;
}

.ko-footer__socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 24px;
}

.ko-footer__social-link img {
  display: block;
  transition: opacity 0.3s ease;
  width: 24px;
  height: auto;
}

.ko-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--ko-font-heading);
  font-size: 18px;
  letter-spacing: 0.9px;
  margin-bottom: 32px;
}

.ko-footer__contact-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ko-footer__address {
  margin-top: 12px;
  font-weight: 300;
}

.ko-footer__languages {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 40px;
}

.ko-footer__language-flag {
  width: 26px;
  height: 19px;
  display: block;
  cursor: pointer;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.ko-footer__copyright {
  font-family: var(--ko-font-heading);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.75px;
  opacity: 0.8;
  font-weight: 300;
}

.ko-footer__decoration {
  position: absolute;
  right: 0;
  bottom: 25px;
  width: 245px;
  pointer-events: none;
  display: none;
}

@media (width >=768px) {
  .ko-footer {
    padding: 75px 0 50px;
  }

  .ko-footer__decoration {
    display: block;
  }
}

@media (width >=1600px) {
  .ko-footer__decoration {
    right: calc((100% - 1600px) / 2);
  }
}

/* Promosyon Bildirimi */
.ko-promosyon-bildirimi {
  position: fixed;
  bottom: 15px;
  top: auto;
  right: 15px;
  width: 260px;
  height: auto;
  background-color: var(--ko-blue, #192f9a);
  color: var(--ko-white, #ffffff);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateX(calc(100% + 40px));
  /* Initially hidden */
  font-family: var(--ko-font-main);
  overflow: hidden;

  @media (width >=768px) {
    bottom: auto;
    top: 120px;
    right: 20px;
    width: 280px;
  }
}

.ko-promosyon-bildirimi.is-visible {
  transform: translateX(0) !important;
}

.ko-promosyon-bildirimi__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #0f1d5e;
  /* Darker blue from screenshot */
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--ko-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.ko-promosyon-bildirimi__close:hover {
  background-color: #192f9a;
  transform: scale(1.1);
}

.ko-promosyon-bildirimi__close svg {
  width: 16px;
  height: 16px;
}

.ko-promosyon-bildirimi__image {
  width: calc(100% - 12px);
  height: 140px;
  margin: 6px;
  overflow: hidden;
  flex-shrink: 0;

  @media (width >=768px) {
    height: 163px;
  }
}

.ko-promosyon-bildirimi__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ko-promosyon-bildirimi__content {
  padding: 10px 20px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.ko-promosyon-bildirimi__title {
  font-family: var(--ko-font-heading);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--ko-white);

  @media (width >=768px) {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

.ko-promosyon-bildirimi__description {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 15px;
  font-weight: 300;
  opacity: 0.9;

  @media (width >=768px) {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.ko-promosyon-bildirimi__highlight {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;

  @media (width >=768px) {
    font-size: 20px;
    margin-bottom: 25px;
  }
}

.ko-promosyon-bildirimi__cta {
  background-color: #fffffa;
  color: var(--ko-blue, #192f9a);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  width: 176px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  border: 1px solid var(--ko-white);
}

.ko-promosyon-bildirimi__cta:hover {
  background-color: var(--ko-white);
  transform: translateY(-2px);
  opacity: 1;
}

/* v3 değişiklikleri için eklenen sınıflar */
.ko-faq__list {
  max-width: 900px;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ko-faq__item {
  border-bottom: 1px solid rgba(25, 47, 154, 0.1);
  overflow: hidden;
  transition: 0.3s;
}

.ko-faq__item[open] {
  border-bottom-color: var(--ko-blue);
}

.ko-faq__question {
  list-style: none;
  cursor: pointer;
  padding: 24px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--ko-font-heading);
  font-size: 20px;
  font-weight: 300;
  color: var(--ko-primary);
  line-height: 1.3;
  transition: color 0.3s;
  user-select: none;
}

.ko-faq__question::-webkit-details-marker {
  display: none;
}

.ko-faq__question:hover {
  color: var(--ko-blue);
}

.ko-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ko-faq__icon::before,
.ko-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--ko-blue);
  transform: translate(-50%, -50%);
  transition:
    transform 0.3s,
    background-color 0.3s;
}

.ko-faq__icon::before {
  width: 100%;
  height: 1px;
}

.ko-faq__icon::after {
  width: 1px;
  height: 100%;
}

.ko-faq__item[open] .ko-faq__icon {
  transform: rotate(45deg);
}

.ko-faq__answer {
  padding-bottom: 30px;
  font-family: var(--ko-font-main);
  font-size: 16px;
  line-height: 1.8;
  color: rgba(26, 26, 26, 0.8);
  animation: 0.4s ease-out 0s 1 normal none running ko-faq-fade-in;
}

.ko-faq__answer p {
  margin-bottom: 0px;
}

@media (width >=992px) {
  .ko-faq__question {
    font-size: 24px;
    padding: 32px 0px;
  }

  .ko-faq__answer {
    font-size: 18px;
    padding-bottom: 40px;
    max-width: 90%;
  }
}

@keyframes ko-faq-fade-in {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.ko-u-heading {
  &:is(h1, h2, h3, h4, h5, h6, .ko-h1, .ko-h2, .ko-h3, .ko-h4, .ko-h5, .ko-h6) {
    font-family: var(--ko-font-heading);
    color: var(--ko-primary);
    line-height: 1.2;
    font-weight: 300;
  }

  &:is(h1, .ko-h1) {
    font-size: 42px;
  }

  &:is(h2, .ko-h2) {
    font-size: 36px;
  }

  &:is(h3, .ko-h3) {
    font-size: 30px;
  }

  &:is(h4, .ko-h4) {
    font-size: 24px;
  }

  &:is(h5, .ko-h5) {
    font-size: 20px;
  }

  &:is(h6, .ko-h6) {
    font-size: 18px;
  }

  @media (width >=768px) {
    &:is(h1, .ko-h1) {
      font-size: 56px;
    }

    &:is(h2, .ko-h2) {
      font-size: 48px;
    }

    &:is(h3, .ko-h3) {
      font-size: 38px;
    }

    &:is(h4, .ko-h4) {
      font-size: 30px;
    }

    &:is(h5, .ko-h5) {
      font-size: 24px;
    }

    &:is(h6, .ko-h6) {
      font-size: 20px;
    }
  }
}

/* Animations */
@keyframes ko-faq-fade-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
- Blog Content
========================================= */
/*
Blog Content Component
This component is used for rendering HTML content from external sources (e.g., WordPress).
Since we cannot control the classes inside this content, we style the tags directly.
*/

.ko-blog-content {
  color: var(--ko-primary);
  font-family: var(--ko-font-main);
  line-height: 1.8;
  font-size: 16px;
  max-width: 940px;
  padding-inline: 20px;
  margin-inline: auto;

  @media (width >=768px) {
    font-size: 18px;
  }

  & p {
    margin-bottom: 24px;
  }

  & h1,
  & h2,
  & h3,
  & h4,
  & h5,
  & h6 {
    font-family: var(--ko-font-heading);
    color: var(--ko-primary);
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 300;
  }

  & h1 {
    font-size: 42px;
  }

  & h2 {
    font-size: 36px;
  }

  & h3 {
    font-size: 30px;
  }

  & h4 {
    font-size: 24px;
  }

  & h5 {
    font-size: 20px;
  }

  & h6 {
    font-size: 18px;
  }

  @media (width >=768px) {
    & h1 {
      font-size: 56px;
    }

    & h2 {
      font-size: 48px;
    }

    & h3 {
      font-size: 38px;
    }

    & h4 {
      font-size: 30px;
    }

    & h5 {
      font-size: 24px;
    }

    & h6 {
      font-size: 20px;
    }
  }

  & strong,
  & b {
    font-weight: 700;
  }

  & em,
  & i {
    font-style: italic;
  }

  & a {
    color: var(--ko-blue);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.3s ease;

    &:hover {
      opacity: 0.7;
    }
  }

  & ul,
  & ol {
    margin-bottom: 32px;
    padding-left: 20px;
  }

  & ul {
    list-style-type: disc;
  }

  & ol {
    list-style-type: decimal;
  }

  & li {
    margin-bottom: 12px;
    padding-left: 8px;

    &::marker {
      color: var(--ko-blue);
    }
  }

  & blockquote {
    margin: 40px 0;
    padding: 20px 40px;
    border-left: 4px solid var(--ko-blue);
    background-color: #f9f9f9;
    font-style: italic;
    font-size: 1.1em;

    & p {
      margin-bottom: 0;
    }
  }

  & img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 32px auto;
    border-radius: 4px;
  }

  & figure {
    margin: 40px 0;
    text-align: center;

    & img {
      margin-bottom: 12px;
    }
  }

  & figcaption {
    font-size: 14px;
    color: #666;
    font-style: italic;
  }

  & hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 48px 0;
  }

  /* Table styles if needed */
  & table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
  }

  & th,
  & td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
  }

  & th {
    background-color: #f5f5f5;
    font-weight: 600;
  }
}