/* CSS Variables */
:root {
  --background: 0 0% 100%;
  --foreground: 222 47% 11%;
  --primary: 354 90% 45%;
  --primary-foreground: 0 0% 100%;
  --secondary: 222 47% 11%;
  --secondary-foreground: 0 0% 100%;
  --muted: 210 40% 96%;
  --muted-foreground: 215 16% 47%;
  --accent: 222 47% 11%;
  --accent-foreground: 0 0% 100%;
  --border: 214 32% 91%;
  --radius: 0.5rem;
  
  --color-primary: hsl(354, 90%, 45%);
  --color-primary-hover: hsl(354, 90%, 40%);
  --color-secondary: hsl(222, 47%, 11%);
  --color-dark: #0f172a;
  --color-dark-blue: #002B49;
  --color-blue: #00AEEF;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
}

.logo-white {
	--fill-0: #FFF;
	--fill-1: #FFF;
	--fill-2: rgba(255, 255, 255, .9);
	--fill-3: rgba(255, 255, 255, .6);
	--fill-4: rgba(255, 255, 255, .3);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-gray-50);
  color: hsl(var(--foreground));
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.container {
	max-width: 96rem;
  margin: 0 auto;
  padding: 0 1rem;
	width: 100%;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Navbar */
.navbar {
  border-bottom: 1px solid var(--color-gray-200);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: all 0.3s;
}

@media (max-width: 1023px) {
  .navbar {
    position: relative;
  }
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  gap: 1rem;
  position: relative;
}

@media (min-width: 1024px) {
  .navbar-content {
    gap: 3rem;
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .navbar-brand {
    gap: 0.5rem;
  }
  
  .logo-text {
    font-size: 0.5rem;
  }
  
  .banker-text {
    font-size: 0.75rem;
  }
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s;
}

.logo-link:hover {
  opacity: 0.9;
}

.logo-img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--color-gray-500);
  line-height: 1.25;
}

.divider {
  height: 2rem;
  width: 1px;
  background-color: var(--color-gray-200);
}

.banker-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s;
}

.banker-link:hover {
  opacity: 0.9;
}

.banker-logo {
  height: 1.5rem;
  width: auto;
  object-fit: contain;
}

.banker-text {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0066cc;
  padding-top: 0.25rem;
}

.navbar-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border-bottom: 1px solid var(--color-gray-200);
  padding: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar-menu.active {
  display: block;
}

.navbar-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gray-600);
}

.nav-link {
  color: var(--color-gray-600);
  text-decoration: none;
  transition: color 0.3s;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--color-primary);
}

@media (min-width: 1024px) {
  .navbar-menu {
    display: block;
    position: static;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
  }
  
  .navbar-links {
    flex-direction: row;
    gap: 2rem;
  }
  
  .nav-link {
    padding: 0;
  }
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-selector {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray-500);
  margin-right: 1rem;
  padding-right: 1.5rem;
  border-right: 1px solid var(--color-gray-200);
}

@media (min-width: 768px) {
  .language-selector {
    display: flex;
  }
}

.icon {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
  outline: none;
	text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  font-weight: 700;
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-1px);
}

.btn-lg {
  min-height: 3rem;
  padding: 0 2rem;
  font-size: 1rem;
  border-radius: 0.5rem;
}


.btn-sm {
	min-height: 3rem;
	padding: 8px 16px;
}

.btn-outline {
  border-color: var(--color-gray-200);
  color: var(--color-dark);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--color-gray-50);
}

.btn-white {
  background-color: white;
  color: var(--color-primary);
  font-weight: 700;
}

.btn-white:hover {
  background-color: var(--color-gray-100);
}

.btn-navbar {
  display: none;
  padding: 0 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(230, 0, 0, 0.1);
  min-height: 2.5rem;
}

@media (min-width: 768px) {
  .btn-navbar {
    display: inline-flex;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-dark);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-dark), rgba(15, 23, 42, 0.8), transparent);
}

.hero-container {
  position: relative;
  z-index: 10;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-content {
  max-width: 56rem;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.25rem 0.75rem;
  background-color: rgba(230, 0, 0, 0.2);
  border: 1px solid rgba(230, 0, 0, 0.3);
  border-radius: 9999px;
  backdrop-filter: blur(4px);
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: var(--color-primary);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.badge-text {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-title-accent {
  color: white;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-gray-300);
  margin-bottom: 2rem;
  max-width: 42rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

/* News Section */
.news-section {
  padding: 5rem 0;
  background-color: white;
  position: relative;
}

.news-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .news-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.news-header-left {
  flex: 1;
}

.news-partner {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.partner-badge {
  padding: 0.25rem 0.75rem;
  background-color: var(--color-gray-100);
  border: 1px solid var(--color-gray-200);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray-600);
}

.divider-small {
  height: 2rem;
  width: 1px;
  background-color: var(--color-gray-200);
}

.partner-logo {
  height: 2rem;
  width: auto;
  object-fit: contain;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-description {
  color: var(--color-gray-500);
  max-width: 36rem;
}

.news-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-gray-100);
  transition: all 0.3s;
}

.news-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.news-card-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.news-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.news-category {
  color: var(--color-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

.news-date {
  color: var(--color-gray-400);
  font-size: 0.75rem;
}

.news-card-title {
  font-size: 1.25rem;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: color 0.3s;
}

.news-card:hover .news-card-title {
  color: #1d4ed8;
}

.news-card-description {
  color: var(--color-gray-600);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-top: auto;
  transition: transform 0.3s;
}

.news-card-link:hover svg {
  transform: translateX(4px);
}

/* Solutions Section */
.solutions-section {
  background-color: var(--color-dark);
  color: white;
  padding: 5rem 0;
}

.solutions-header {
  text-align: center;
  margin-bottom: 3rem;
}

.solutions-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .solutions-title {
    font-size: 2.25rem;
  }
}

.solutions-description {
  color: var(--color-gray-400);
  max-width: 48rem;
  margin: 0 auto;
  font-size: 1.125rem;
}

.tabs-nav-desktop {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 1px solid var(--color-gray-700);
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .tabs-nav-desktop {
    display: flex;
  }
}

.tab-btn {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  position: relative;
  background: none;
  border: none;
  color: var(--color-gray-500);
  cursor: pointer;
}

.tab-btn:hover {
  color: var(--color-gray-300);
}

.tab-btn.active {
  color: white;
}

.tab-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tab-indicator {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background-color: var(--color-primary);
  display: none;
}

.tab-btn.active .tab-indicator {
  display: block;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-primary);
}

.tabs-nav-mobile {
  display: flex;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  gap: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tabs-nav-mobile::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
  .tabs-nav-mobile {
    display: none;
  }
}

.tab-btn-mobile {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  border: 1px solid var(--color-gray-700);
  background-color: transparent;
  color: var(--color-gray-400);
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn-mobile.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.solutions-content {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .solutions-content {
    grid-template-columns: 1fr 1fr;
  }
}

.solutions-image-wrapper {
  position: relative;
  order: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1024px) {
  .solutions-image-wrapper {
    order: 1;
  }
}

.solutions-image-container {
  position: relative;
  z-index: 10;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(55, 65, 81, 0.5);
  width: 100%;
  max-width: 28rem;
  height: 500px;
}

.solutions-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s, transform 0.4s;
}

.solutions-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent, transparent);
  opacity: 0.6;
}

.decorative-element {
  position: absolute;
  border-radius: 9999px;
  filter: blur(64px);
}

.decorative-1 {
  top: 2.5rem;
  left: 2.5rem;
  width: 6rem;
  height: 6rem;
  background-color: rgba(230, 0, 0, 0.2);
}

.decorative-2 {
  bottom: 2.5rem;
  right: 2.5rem;
  width: 8rem;
  height: 8rem;
  background-color: rgba(59, 130, 246, 0.2);
}

.solutions-text {
  order: 1;
}

@media (min-width: 1024px) {
  .solutions-text {
    order: 2;
  }
}

.tab-content-wrapper {
  position: relative;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-out;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.tab-panel-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--color-gray-300);
}

.check-icon {
  margin-top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--color-primary);
}

/* Award Section */
.award-section {
  padding: 3rem 0;
  background-color: var(--color-dark-blue);
  color: white;
  overflow: hidden;
}

.award-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .award-content {
    flex-direction: row;
  }
}

.award-text {
  text-align: center;
  max-width: 32rem;
  animation: fadeInLeft 0.8s ease-out;
}

@media (min-width: 768px) {
  .award-text {
    text-align: left;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.award-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .award-title {
    font-size: 2.25rem;
  }
}

.award-title-accent {
  color: var(--color-blue);
}

.award-description {
  color: var(--color-gray-300);
  font-size: 1rem;
}

.award-image-wrapper {
  position: relative;
  animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.award-glow {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 174, 239, 0.2);
  filter: blur(80px);
  border-radius: 9999px;
}

.award-image {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 20rem;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25));
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.cta-card {
  background-color: var(--color-primary);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(230, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .cta-card {
    padding: 5rem;
  }
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.cta-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 100 C 20 0 50 0 100 100 Z' fill='white'/%3E%3C/svg%3E");
  background-size: cover;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .cta-description {
    font-size: 1.25rem;
  }
}

.cta-card .btn {
  position: relative;
  z-index: 10;
  border-radius: 9999px;
  padding: 0 2.5rem;
  height: 3.5rem;
  font-size: 1.125rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background-color: var(--color-dark);
  color: white;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.footer-branding {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-branding {
    flex-direction: row;
  }
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  height: 3rem;
  width: auto;
  object-fit: contain;
}

.footer-divider {
  height: 2.5rem;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-banker-logo {
  height: 2rem;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  color: white;
  text-decoration: none;
}

.social-link:hover {
  background-color: var(--color-primary);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-links {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.125rem;
}

.footer-column-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--color-gray-400);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--color-gray-500);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-link {
  color: var(--color-gray-500);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-link:hover {
  color: white;
}

/* Utility Classes */
.text-primary {
  color: var(--color-primary);
}

.text-white {
  color: white;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gray-300);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gray-400);
}
