body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(
  to bottom,
  #000000 0%,
  #1a1a2e 25%,
  #2f3e66 50%,
  #5aa5dd 75%,
  #87ceeb 100%
); /* DeepSkyBlue bawah */
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 70px;
}

select#paymentCategory {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  background: #0f172a;
  color: #fff;
  border: 1px solid #444;
  border-radius: 6px;
}
.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}


@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.review-item {
  opacity: 0; /* akan di-overwrite AOS */
  transition: all 0.5s ease;
}
.review-item.aos-animate {
  opacity: 1;
}

#keteranganSection,
#transaksiSection {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.contact-inputs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
  margin-bottom: 60px; 
}

.contact-inputs input {
  padding: 12px 16px;
  background: linear-gradient(135deg, #0f1a3c, #1b2d5a);
  border: 1px solid #2f406a;
  border-radius: 10px;
  color: #e1e8ff;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: 0 0 6px rgba(79, 128, 255, 0.1);
}

.contact-inputs input::placeholder {
  color: #9cadd9;
}

.contact-inputs input:focus {
  border-color: #4f80ff;
  box-shadow: 0 0 8px rgba(79, 128, 255, 0.5);
}

.tab-container {
  margin: 20px 0;
  border-top: 1px solid #444;
  padding-top: 10px;
}

.tab-buttons {
  display: flex;
  gap: 24px;
  margin-bottom: 10px;
  border-bottom: 2px solid #1e1e2f;
}

.tab-btn {
  background: none;
  border: none;
  font-size: 16px;
  padding: 10px 0;
  color: #888;
  cursor: pointer;
  transition: color 0.3s;
  border-bottom: 3px solid transparent;
}

.tab-btn.active {
  color: #fff;
  font-weight: bold;
  border-bottom: 3px solid #3a74ff;
}

.tab-content {
  display: none;
  color: #ccc;
}

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

.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: #161b22;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

/* Sticky preview box - Tema gelap */
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.sticky-preview {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0d1117;
  border-top: 2px solid #1e90ff;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.4);
  flex-wrap: wrap;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.sticky-preview.show {
  transform: translateY(0);
  opacity: 1;
  animation: slideUp 0.4s ease forwards;
}

/* Kandungan preview */
.preview-content {
  color: #c9d1d9; /* Teks kelabu putih */
  font-size: 14px;
  flex: 1 1 60%;
}

/* Butang "Order Now" - gaya gaming */
.order-now-btn {
  background-color: #1e90ff; /* Biru terang */
  color: #ffffff;
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  flex: 1 1 35%;
  text-align: center;
  box-shadow: 0 2px 4px rgba(30, 144, 255, 0.4);
}

.order-now-btn:hover {
  background-color: #0b75d0;
}

/* Responsive (mobile) */
@media (max-width: 480px) {
  .sticky-preview {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-now-btn {
    width: 100%;
    margin-top: 10px;
  }
}

/* Untuk sembunyi */
.hidden {
  display: none;
}

.review-container {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 14px;
  padding: 24px;
  color: #f3f4f6;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.05);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
}

.review-container::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 14px;
  background: linear-gradient(120deg, #38bdf8, #9333ea);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.review-header {
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.2);
}

.review-header .rating {
  font-size: 1.5rem;
  font-weight: bold;
  color: #facc15;
  text-shadow: 0 0 5px rgba(250, 204, 21, 0.4);
}

.review-header p {
  color: #94a3b8;
  font-size: 0.95rem;
}

.review-title {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: left;
}

.review-scroll {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 8px;
  scroll-behavior: smooth;
}

.review-scroll::-webkit-scrollbar {
  width: 6px;
}
.review-scroll::-webkit-scrollbar-thumb {
  background: #475569;
  border-radius: 6px;
}
.review-scroll::-webkit-scrollbar-thumb:hover {
  background: #64748b;
}

.review-item {
  margin: 16px 0;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.02);
}

.review-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: scale(1.015);
}

.review-item h4 {
  color: #60a5fa;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.review-item .game-info {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 3px;
}

.review-item .review-text {
  font-size: 0.95rem;
  color: #e5e7eb;
}

hr {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin: 12px 0;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .review-container {
    padding: 16px;
  }

  .review-title {
    text-align: center;
  }

  .review-item {
    padding: 10px;
  }

  .review-header .rating {
    font-size: 1.2rem;
  }
}

/* Mobile responsive tweaks */
@media (max-width: 600px) {
  .review-container {
    padding: 16px;
  }

  .review-title {
    text-align: center;
  }

  .review-item {
    padding: 6px 8px;
  }

  .review-header .rating {
    font-size: 1.3rem;
  }
}


.container-box {
  background-color: #1a1f2a;
  border-radius: 10px;
  padding: 20px;
  width: 90%;
  max-width: 400px; /* Naikkan sikit limit */
  margin: 20px; /* Center dalam parent */
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
  align-items: center;
}


.container-box h2 {
  font-size: 18px;
  margin-bottom: 15px;
  border-left: 5px solid #00bfff;
  padding-left: 10px;
  color: #ffffff;
}

/* Banner */
.topup-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Card */
.topup-card {
  background-color: #000000; /* hitam */
  border: 2px solid #00bfff; /* border biru langit */
  margin: 12px auto;
  border-radius: 12px;
  display: flex;
  padding: 14px 20px;
  gap: 16px;
  align-items: center;
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.2);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  cursor: pointer;
  width: 100%;               /* full size */
  max-width: 100%;           /* optional, limit kalau nak */
  box-sizing: border-box;    /* pastikan padding included */
}

.topup-card:hover {
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
  transform: translateY(-3px);
}

.card-image {
  width: 70px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #00bfff;
  box-shadow: 0 0 6px #00bfff88;
  flex-shrink: 0;
}

.card-content {
  flex: 1; /* biar dia ambil ruang selebihnya */
}

.card-content h3 {
  margin: 0 0 6px 0;
  color: #00bfff;
  font-size: 1.2rem;
  font-weight: 600;
}

.card-content p {
  margin: 0 0 10px 0;
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.3;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: #87cefa;
}

.card-features .icon {
  margin-right: 6px;
  color: #00bfff;
}

h3 {
  color: #ffffff;
  margin-top: 30px;
  padding-left: 15px; /* jarakkan dari kiri */
}

.input-group {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap; /* untuk responsif bila skrin kecil */
}

.input-group input {
  flex: 1;
  min-width: 140px;
  padding: 12px 16px;
  background: linear-gradient(145deg, #0e1438, #161e47);
  border: 1px solid #2f3d71;
  border-radius: 10px;
  color: #e0e7ff;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: 0 0 6px rgba(40, 90, 200, 0.3);
}

.input-group input::placeholder {
  color: #9aaae0;
}

.input-group input:focus {
  border-color: #5d8aff;
  box-shadow: 0 0 10px rgba(93, 138, 255, 0.5);
}

button,
.next-btn {
  background-color: #00d9ff;
  color: #0d1117;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;      /* kasi dia block supaya boleh set width */
  width: 100%;         /* penuh container parent */
  text-align: center;  /* text kat tengah button */
  box-sizing: border-box; /* supaya padding tak overflow */
}

button:hover,
.next-btn:hover {
  background-color: #00b4cc;
}

/* Flexbox untuk menyusun kotak dalam baris */

:root {
  --biru-neon: #00bfff;
  --bg-box: #1e1e1e;
  --text-light: #fff;
}

.diamond-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 14px;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.diamond-box {
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  border-radius: 16px;
  padding: 16px;
  position: relative;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
  transition: all 0.4s ease; /* 👉 animasi semua */
  overflow: hidden;
  cursor: pointer;
}



.diamond-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 14px rgba(0, 217, 255, 0.3);
}

/* 🌈 Bila selected (klik) */
.diamond-box.selected {
  background: linear-gradient(270deg, #38bdf8, #60a5fa, #38bdf8);
  background-size: 400% 400%;
  animation: gradientMove 4s ease infinite;
  box-shadow: 0 0 16px rgba(115, 233, 255, 0.6);
  transform: scale(1.02);
  transition: all 0.4s ease;
}

/* Harga tukar ke putih */
.diamond-box.selected .diamond-price {
  color: #ffffff;
  transition: color 0.3s ease;
}

.diamond-text {
  z-index: 2;
}

/* State bila box dipilih */
.diamond-amount {
  font-size: 16px;
  font-weight: 600;
}

.diamond-price {
  font-size: 14px;
  color: #7dd3fc;
  font-weight: 500;
  margin-top: 4px;
}

/* Badge kecil bawah kiri */
.badge-instant {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 11px;
  padding: 4px 10px;
  background: linear-gradient(to right, #38bdf8, #60a5fa);
  color: white;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(60, 169, 242, 0.3);
}

/* Icon diamond kanan bawah atas sikit dari badge */
.diamond-icon-floating {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 20px;
  height: 20px;
  object-fit: contain;
  z-index: 2;
}
@media (max-width: 600px) {
  .diamond-grid {
   grid-template-columns: repeat(2, 1fr);
  }
}


.payment-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 0 10px; /* Bagi ruang kiri-kanan supaya tak sentuh tepi */
}

.payment-box {
  background: linear-gradient(145deg, #0d1b2a, #1b263b);
  border: 2px solid #00d9ff;
  border-radius: 12px;
  padding: 14px 20px;
  width: 100%;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 217, 255, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.payment-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 217, 255, 0.35);
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
}

.payment-box.selected {
  background: linear-gradient(270deg, #38bdf8, #60a5fa, #38bdf8);
  background-size: 300% 300%;
  animation: gradientMove 4s ease infinite;
  border-color: #60a5fa;
  box-shadow: 0 0 18px rgba(96, 165, 250, 0.6);
}

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

.payment-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-left img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 0 6px rgba(0, 191, 255, 0.3));
}

.payment-left span,
.payment-left p {
  color: #e0f2fe;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.payment-price {
  font-weight: 700;
  font-size: 15px;
  color: #7dd3fc;
}

/* Dropdown */
.dropdown-container {
  margin-bottom: 20px;
}

.dropdown-btn {
  width: 100%;
  text-align: left;
  padding: 10px;
  background-color: #0d1117;
  color: #00d9ff;
  border: 1px solid #30363d;
  border-radius: 5px;
  cursor: pointer;
}

#caraTopup {
  display: none;
  background-color: #21262d;
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
  color: #c9d1d9;
}

/* Popup */
/* ========== POPUP OVERLAY ========== */
.popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.popup.hidden {
  display: none;
}

/* ========== POPUP BOX ========== */
.popup-content {
  background-color: #0f172a;
  border: 2px solid #00bfff;
  border-radius: 12px;
  padding: 25px 20px;
  width: 90%;
  max-width: 480px;
  color: #e2f1ff;
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.2);
  animation: slideIn 0.4s ease;
}

.popup-content h2 {
  color: #00d9ff;
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}

/* ========== ORDER INFO BOX ========== */
.order-info-box {
  background-color: #1e293b;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid #00bfff;
}

.order-info-row {
  display: flex;
  justify-content: space-between;
  margin: 6px 0;
  font-size: 14px;
  color: #cbd5e1;
}

.order-info-row .label {
  color: #00d9ff;
  flex: 1;
  text-align: left;
}

.order-info-row .value {
  flex: 1;
  text-align: right;
  color: #e2f1ff;
}

/* ========== BUTTONS ========== */
.popup-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}

.popup-buttons button,
.next-btn,
#qrSection button {
  flex: 1;
  background-color: #00bfff;
  color: #0f172a;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.popup-buttons button:hover,
.next-btn:hover,
#qrSection button:hover {
  background-color: #00aacc;
}

/* ========== QR SECTION ========== */
#qrSection {
  text-align: center;
  margin-top: 15px;
  animation: fadeIn 0.3s ease;
}

#qrSection.hidden {
  display: none;
}

.qr-img {
  width: 160px;
  border: 2px solid #00bfff;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

/* DuitNow ID styling */
#qrSection p {
  font-size: 14px;
  color: #cbd5e1;
  background-color: #1e293b;
  padding: 8px;
  border-radius: 6px;
  display: inline-block;
}

#qrSection button {
  margin-top: 10px;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* WhatsApp Support */
.whatsapp-support {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

.whatsapp-support img {
  width: 60px;
}

footer {
  background-color: transparent;
  color: #f0f0f0;
  padding: 50px 20px;
  padding-top: 20px;
  font-family: 'Segoe UI', sans-serif;
  border-top: 4px solid #00bfff; /* Garisan biru branding */
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.about {
  flex: 1 1 100%;
  margin-bottom: 30px;
  text-align: center;
}

.about h2 {
  color: #00bfff;
  font-size: 28px;
  margin-bottom: 10px;
}

.about p {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
  max-width: 800px;
  margin: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.column {
  flex: 1 1 200px;
  margin-bottom: 20px;
}

.column h3 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 2px solid #00bfff;
  padding-bottom: 5px;
  display: inline-block;
}

.column ul {
  list-style: none;
  padding: 0;
}

.column ul li {
  margin-bottom: 10px;
}

.column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.column ul li a:hover {
  color: #00bfff;
}

.column p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 8px;
}

.logo-footer {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}

.popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.popup.hidden {
  display: none;
}

.next-btn {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #00bfff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(10px);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Garis bawah gradient */
.sticky-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right, #38bdf8, #60a5fa);
  z-index: -1;
}


.logo img {
  width: 135px;
  height: 40px;
  border-radius: 8px;
}

/* Search bar */
.search-container {
  position: relative;
}

.search-container input {
  padding: 10px 35px 10px 14px;
  border-radius: 8px;
  border: 2px solid transparent;
  background-color: #334155;
  color: #f1f5f9;
  font-size: 14px;
  width: 150px;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: 0 0 0px rgba(56, 189, 248, 0.5);
}

.search-container input:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
}

.search-container input::placeholder {
  color: #cbd5e1;
  transition: all 0.3s ease;
}

/* Ikon search */
.search-container .search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 16px;
  pointer-events: none;
}


@media (max-width: 600px) {
  .biru-container {
    max-width: 95%;
    padding: 15px;
  }
}

footer {
  background-color: #0a0a0a;
  color: #f0f0f0;
  padding: 50px 20px;
  font-family: 'Segoe UI', sans-serif;
  border-top: 4px solid #00bfff; /* Garisan biru branding */
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.about {
  flex: 1 1 100%;
  margin-bottom: 30px;
  text-align: center;
}

.about h2 {
  color: #00bfff;
  font-size: 28px;
  margin-bottom: 10px;
}

.about p {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
  max-width: 800px;
  margin: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.column {
  flex: 1 1 200px;
  margin-bottom: 20px;
}

.column h3 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 2px solid #00bfff;
  padding-bottom: 5px;
  display: inline-block;
}

.column ul {
  list-style: none;
  padding: 0;
}

.column ul li {
  margin-bottom: 10px;
}

.column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.column ul li a:hover {
  color: #00bfff;
}

.column p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 8px;
}

.logo-footer {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}