/* ==== CSS RESET & NORMALIZE ==== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.5;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #f0f4f8;
  color: #24446a;
  font-family: 'Yu Gothic', 'Noto Sans JP', 'ヒラギノ角ゴシック', 'Meiryo', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  overflow-x: hidden;
}
img {
  max-width: 100%; height: auto; display: block;
  border: none;
}
a {
  color: #27a8a1;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #1a597c;
}
ul, ol {
  margin-left: 1.5em;
}
li {
  margin-bottom: 8px;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans JP', 'Yu Gothic', sans-serif;
  font-weight: 700;
  color: #24446a;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.6rem; line-height: 1.2; }
h2 { font-size: 2rem; line-height: 1.22; }
h3 { font-size: 1.4rem; line-height: 1.32; }
h4 { font-size: 1.1rem; line-height: 1.32; font-weight: 600; }
p, .text-section p {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
strong { color: #24446a; font-weight: 600; }
small { color: #24446a80; font-size: .92rem; }

/* ==== BRAND COLORS ==== */
:root {
  --primary: #24446a;
  --secondary: #27a8a1;
  --accent: #f0f4f8;
  --yellow: #FFC93C;
  --pink: #F24976;
  --purple: #8075ff;
  --gradient1: #27a8a1;
  --gradient2: #ffa6a6;
  --gradient3: #FFC93C;
}

/* ==== CONTAINER LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin: 0 auto;
  padding: 0;
}

/* ==== HEADER, NAVIGATION, BUTTONS ==== */
header {
  background: linear-gradient(98deg, #24446a 85%, #27a8a1 100%);
  color: #fff;
  box-shadow: 0 2px 14px rgba(37, 68, 106, 0.13);
  position: relative;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 68px;
}
.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  font-family: 'Noto Sans JP', 'Yu Gothic', sans-serif;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 1px #0001;
  padding: 4px 8px;
  font-size: 1rem;
  border-radius: 6px;
  transition: background .2s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #fff3;
  color: var(--secondary);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans JP', 'Yu Gothic', sans-serif;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 12px 32px;
  background: linear-gradient(90deg, #27a8a1 70%, #FFC93C 100%);
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 16px #27a8a122, 0 1.5px 3px #fff4;
  cursor: pointer;
  transition: transform .15s, background .22s, box-shadow .15s;
  margin-left: 24px;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #FFC93C, #F24976);
  transform: scale(1.08) translateY(-1px) rotate(-1deg);
  box-shadow: 0 8px 28px -2px #24446a22, 0 3px 8px #f2497622;
  color: #24446a;
}
.btn-link {
  display: inline-block;
  font-size: 1rem;
  color: #27a8a1;
  font-weight: 600;
  border-bottom: 2px solid #FFC93C;
  padding: 4px 0;
  margin-top: 12px;
  letter-spacing: 0.03em;
  transition: color .2s, border-color .2s;
  background: none;
}
.btn-link:hover, .btn-link:focus {
  color: #F24976;
  border-color: #F24976;
}

/* ==== MOBILE MENU ==== */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: var(--primary);
  font-size: 2.3rem;
  position: fixed;
  top: 18px;
  right: 22px;
  border: none;
  z-index: 1200;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 10px #FFC93C55;
  cursor: pointer;
  transition: background .18s, box-shadow .18s, color .17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFC93C;
  color: #24446a;
  box-shadow: 0 4px 16px #24446a24;
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: #f0f4f8ee;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.71,.03,.29,.97);
  box-shadow: 0 2px 24px #24446a11;
  will-change: transform;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  margin: 20px 24px;
  background: #27a8a1;
  color: #fff;
  padding: 8px 15px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 16px #27a8a122;
  transition: background .16s, color .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F24976;
  color: #fff;
  outline: 2px solid #FFC93C66;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  background: #fff8;
  padding: 30px 30px 30px 36px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #24446a;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 8px;
  padding: 12px 0 12px 14px;
  margin-right: 16px;
  background: transparent;
  transition: background .19s, color .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFC93C44;
  color: #F24976;
}

@media (max-width: 1024px) {
  header .container {
    gap: 16px;
    min-height: unset;
  }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .btn-primary { margin-left: 0; }
  .mobile-menu-toggle { display: block; }
}

/* ==== HERO SECTIONS ==== */
.hero, .about-hero, .services-hero, .cases-hero, .news-hero, .blog-hero, .contact-hero, .thank-you {
  background: linear-gradient(120deg, #FFC93C 5%, #27a8a1 60%, #24446a 100%);
  color: #fff;
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}
.hero .content-wrapper, .about-hero .content-wrapper, .services-hero .content-wrapper, .cases-hero .content-wrapper, .news-hero .content-wrapper, .blog-hero .content-wrapper, .contact-hero .content-wrapper, .thank-you .content-wrapper {
  align-items: flex-start;
}
.hero h1, .about-hero h1, .services-hero h1, .cases-hero h1, .news-hero h1, .blog-hero h1, .contact-hero h1, .thank-you h1 {
  color: #fff;
  font-family: 'Noto Sans JP', 'Yu Gothic', sans-serif;
  text-shadow: 0 3px 18px #24446a44, 0 1px 0 #fff7;
  margin-bottom: 18px;
  letter-spacing: 0.07em;
}
.hero p, .about-hero p, .services-hero p, .cases-hero p, .news-hero p, .blog-hero p, .contact-hero p, .thank-you p {
  color: #f3f6fa;
  font-size: 1.18rem;
  margin-bottom: 26px;
}

/* ==== SECTIONS, CARDS, FLEX PATTERNS ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px 0 48px 0;
  box-shadow: 0 8px 32px rgba(127, 117, 255, .07), 0 0.5px 2.5px #27a8a111;
  position: relative;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px 36px 16px 8px;
  box-shadow: 0 3px 16px #27a8a116;
  transition: box-shadow .15s, transform .13s;
  padding: 28px 24px 24px;
  min-width: 280px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 36px #27a8a133;
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 2px 12px #27a8a126;
  color: #24446a;
  font-size: 1.07rem;
  font-family: 'Yu Gothic', sans-serif;
  min-width: 260px;
  transition: box-shadow .16s, border-color .13s;
}
.testimonial-card p {
  margin-bottom: 0;
  color: #24446a;
  font-weight: 500;
}
.testimonial-card span {
  margin-left: auto;
  font-size: .98rem;
  color: #27a8a1;
  font-style: italic;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 32px #27a8a146, 0 0.5px 10px #FFC93C26;
  border-left: 5px solid #27a8a1;
}
.feature-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature-item, .service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 20px 20px 20px;
  background: #f0f4f8;
  border-radius: 20px 10px 30px 16px;
  min-width: 280px;
  box-shadow: 0 2.5px 12px #FFC93C22;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .16s, transform .13s;
  border-left: 6px solid #27a8a1;
}
.feature-item:hover, .service-item:hover {
  box-shadow: 0 14px 44px -7px #FFC93C42;
  transform: scale(1.03) translateY(-3px) skewY(-1deg);
  border-left: 6px solid #F24976;
}
.feature-item img, .service-item img {
  width: 48px; height: 48px; background: #fff; border-radius: 10px; box-shadow: 0 1px 4px #24446a22; padding: 4px;
}
.feature-item h3, .service-item h3 {
  color: #F24976;
  font-size: 1.25rem;
}
.feature-item p, .service-item p {
  color: #24446a;
}

/* ==== CASES, NEWS, BLOG LISTS ==== */
.case-studies-teaser ul, .case-studies ul, .news-list ul, .blog-list ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.case-studies-teaser li, .case-studies li, .news-list li, .blog-list li {
  background: #f0f4f8;
  border-radius: 14px;
  padding: 20px 24px 14px 22px;
  position: relative;
  box-shadow: 0 1.5px 6px #24446a0e;
  font-size: 1.04rem;
  letter-spacing: 0.01em;
  min-width: 220px;
}
.news-list .date, .blog-list .date {
  color: #F24976;
  font-weight: 600;
  font-size: .99rem;
  margin-right: 8px;
}
.news-list .category {
  color: #FFC93C;
  font-weight: 600;
  margin-right: 6px;
}
.blog-list .tags {
  display: inline-block;
  color: #27a8a1;
  font-size: .98rem;
  margin-top: 4px;
}

/* ==== ABOUT, CONTACT, LEGAL CONTENT ==== */
.about-company h3, .about-team h3, .about-team h4 {
  color: #27a8a1;
  margin-top: 2rem;
  font-weight: 700;
  font-size: 1.17rem;
}
.about-company ul, .about-team ul {
  margin-top: 10px;
}
.text-section img {
  width:1.6em; height:1.6em; vertical-align:middle; margin-right:.22em;
}
.text-section p { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.map-location { margin-top: 18px; background: #f0f4f8; padding: 18px; border-radius: 14px; }

.legal-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px 0 32px 0;
  box-shadow: 0 2px 16px #27a8a121;
}
.legal-section .text-section {
  margin-top: 24px;
  font-size: 1.01rem;
  line-height: 1.9;
  color: #24446a;
}
.legal-section h2 {
  color: #27a8a1;
  font-size: 1.12rem;
  margin-top: 2.2rem;
  margin-bottom: .8rem;
  font-weight: bold;
}
.legal-section ul {
  margin-bottom: 18px;
}

/* ==== CONTACT CTA ==== */
.contact-cta {
  background: linear-gradient(99deg, #F24976 7%, #FFC93C 35%, #27a8a1 100%);
  color: #fff;
  padding: 40px 20px 54px;
  border-radius: 34px 0 54px 0;
  margin-bottom: 60px;
  display: flex;
}
.contact-cta h2 {
  color: #fff;
  letter-spacing: .03em;
}
.contact-cta p {
  color: #f0f4f8;
}
.contact-cta .btn-primary {
  background: linear-gradient(90deg, #24446a 40%, #27a8a1 100%);
  color: #fff;
}
.contact-cta .btn-primary:hover {
  background: linear-gradient(94deg, #FFC93C 65%, #F24976 100%);
  color: #24446a;
}

/* ==== FOOTER ==== */
footer {
  padding: 32px 0 16px;
  background: #24446a;
  color: #fff;
  border-top-left-radius: 48px;
}
footer .container {
  align-items: flex-start;
  gap: 20px;
}
footer img {
  width: 58px; height: auto;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #FFC93C;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1.5px solid #FFC93C44;
  padding: 0 2px 3px;
  margin-right: 10px;
  transition: color .17s, border-color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F24976;
  border-color: #F24976;
}
.footer-contact {
  color: #fff;
  font-size: .97rem;
  line-height: 1.8;
  background: #27a8a122;
  border-radius: 16px;
  padding: 10px 18px 8px;
  margin-top: 14px;
}
footer small {
  display: block;
  color: #fff9;
  margin-top: 20px;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  color: #24446a;
  box-shadow: 0 -4px 24px #27a8a122;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px 20px 30px;
  font-size: 1.04rem;
  border-top-left-radius: 20px;
  border-top-right-radius: 60px;
  animation: fadein-banner .7s;
}
@keyframes fadein-banner { from { opacity: 0; bottom: -100px;} to { opacity: 1; bottom: 0;} }
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-consent-banner .cookie-btn {
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 26px;
  border: none;
  outline: none;
  font-family: 'Noto Sans JP', 'Yu Gothic', sans-serif;
  font-weight: 500;
  cursor: pointer;
  margin: 0 2px;
  transition: background .17s, color .17s;
  box-shadow: 0 2px 10px #27a8a116;
}
.cookie-consent-banner .cookie-btn.accept {
  background: #27a8a1;
  color: #fff;
}
.cookie-consent-banner .cookie-btn.accept:hover {
  background: #24446a;
  color: #fff9;
}
.cookie-consent-banner .cookie-btn.reject {
  background: #fff;
  color: #F24976;
  border: 1.5px solid #F24976;
}
.cookie-consent-banner .cookie-btn.reject:hover {
  background: #F24976;
  color: #fff;
}
.cookie-consent-banner .cookie-btn.settings {
  background: #FFC93C;
  color: #24446a;
  border: none;
}
.cookie-consent-banner .cookie-btn.settings:hover {
  color: #fff;
  background: #F24976;
}

/* ==== COOKIE MODAL ==== */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  background: #fff;
  color: #24446a;
  border-radius: 22px;
  box-shadow: 0 8px 32px #24446a33, 0 2px 12px #FFC93C13;
  transform: translate(-50%, -50%) scale(0.96);
  min-width: 330px;
  max-width: 94vw;
  z-index: 10000;
  padding: 34px 24px 22px;
  display: none;
  flex-direction: column;
  gap: 1.2rem;
  animation: showModal .33s cubic-bezier(.77,-0.08,.17,1.11);
}
.cookie-modal.open {
  display: flex;
  animation: showModal .6s cubic-bezier(.71,.06,.29,.97);
}
@keyframes showModal { from { transform: translate(-50%, -60%) scale(.90); opacity:0} to { transform: translate(-50%, -50%) scale(1); opacity: 1; } }
.cookie-modal h2 {
  color: #27a8a1;
  font-size: 1.18rem;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 1.01rem;
  font-weight: 500;
}
.cookie-modal .switch {
  position: relative;
  display: inline-flex;
  width: 38px;
  height: 24px;
  background: #FFC93C44;
  border-radius: 24px;
  transition: background .13s;
  margin-right: 6px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: #27a8a1;
  border-radius: 50%;
  transition: left .12s, background .17s;
}
.cookie-modal .switch input:checked + .slider {
  left: 17px;
  background: #F24976;
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}
.cookie-modal .cookie-modal-btn {
  padding: 10px 21px;
  border-radius: 22px;
  border: none;
  font-family: 'Noto Sans JP', 'Yu Gothic', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  background: #27a8a1;
  color: #fff;
  transition: background .16s, color .13s;
}
.cookie-modal .cookie-modal-btn.close {
  background: #fff;
  color: #F24976;
  border: 1.5px solid #F24976;
}
.cookie-modal .cookie-modal-btn.close:hover {
  background: #F24976;
  color: #fff;
}
.cookie-modal .cookie-modal-btn.save:hover {
  background: #F24976;
  color: #fff;
}
.cookie-modal .cookie-category {
  margin-bottom: 22px;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1024px) {
  .feature-grid, .service-grid, .card-container, .content-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
  .container {
    max-width: 96vw;
    padding-left: 10px; padding-right: 10px;
  }
}
@media (max-width: 768px) {
  .container { padding-left: 6vw; padding-right: 6vw; }
  .content-wrapper, .section {
    padding-left: 0; padding-right: 0;
  }
  header .container {
    flex-direction: row;
    gap: 8px;
  }
  .main-nav, .footer-nav { display: none; }
  .feature-grid, .service-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .service-item, .card {
    min-width: unset;
    border-radius: 18px 5px 24px 8px;
    padding: 18px 12px 18px 14px;
  }
  .section {
    margin-bottom: 34px;
    padding: 24px 6vw;
  }
  .contact-cta {
    padding: 32px 10px 40px;
    border-radius: 26px 0 40px 0;
    margin-bottom: 32px;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero, .about-hero, .services-hero, .cases-hero, .news-hero, .blog-hero, .contact-hero, .thank-you {
    padding: 40px 0 26px;
  }
  .footer-contact {
    margin-top: 10px;
    padding: 8px 10px 7px;
    font-size: .96rem;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    min-width: unset;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }
  .btn-primary { font-size: .96rem; padding: 11px 18px; }
}

/* ==== MICRO-ANIMATIONS ==== */
.btn-primary, .btn-link, .feature-item, .service-item, .card, .testimonial-card, .cookie-btn, .cookie-modal-btn {
  transition: box-shadow .15s, color .21s, border-color .17s, background .16s, transform .13s;
}
.btn-primary:active { transform: scale(0.97); }
.card:active, .feature-item:active, .service-item:active {
  transform: scale(0.97) skewY(-1.2deg);
}

/* ==== ARTISTIC FLOURISHES ==== */
.section::before {
  content: '';
  display: block;
  position: absolute;
  top: -38px; left: -30px;
  width: 110px; height: 80px;
  background: radial-gradient(ellipse at left, #FFC93C77 30%, #fff0 90%);
  z-index: 0;
  pointer-events: none;
}
.section::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -35px; right: -30px;
  width: 80px; height: 60px;
  background: radial-gradient(ellipse at right, #F2497685 18%, #fff0 80%);
  z-index: 0;
  pointer-events: none;
}

.feature-item::after, .service-item::after {
  content: '';
  position: absolute;
  top: 15px; right: 14px;
  width: 20px; height: 20px;
  background: radial-gradient(circle, #FFC93C44 70%, #27a8a110 100%);
  z-index: 1;
}


/* ==== MINIMUM CONTENT SPACING ==== */
.section, .card-container, .card, .content-grid, .text-image-section, .testimonial-card, .feature-item {
  margin-bottom: 20px !important;
}
.section:last-child, .card-container:last-child, .feature-item:last-child, .testimonial-card:last-child {
  margin-bottom: 0 !important;
}

/* ==== ACCESSIBILITY - FOCUS OUTLINES ==== */
a:focus, button:focus, .btn-primary:focus, .btn-link:focus, .feature-item:focus-within {
  outline: 2px solid #27a8a1;
  outline-offset: 2px;
  box-shadow: 0 1px 6px #27a8a155;
  z-index: 2;
}

/* ==== UTILITY ==== */
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }

/* ==== END OF CSS ==== */
