@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #0b1d33;       /* Deep Navy */
  --primary-light: #162f4e; /* Medium Navy */
  --primary-dark: #06111f;  /* Very Dark Navy */
  --accent: #c5a880;        /* Prestige Gold */
  --accent-light: #e2d2bd;  /* Light Gold */
  --accent-hover: #b39366;  /* Hover Gold */
  --accent-gold: #d97706;   /* Rich Amber Gold */
  
  --text-main: #1f2937;     /* Slate Dark */
  --text-light: #f3f4f6;    /* Soft Grey/White */
  --text-muted: #6b7280;    /* Slate Muted */
  
  --bg-light: #f8fafc;      /* Clean Off-white */
  --bg-white: #ffffff;      /* White */
  --bg-dark-section: #091629; /* Dark Section background */
  
  --border-color: #e5e7eb;  /* Light grey border */
  --border-light: rgba(255, 255, 255, 0.08);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* GLOBAL UTILITIES */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 90px 0;
}

.section-dark {
  background-color: var(--bg-dark-section);
  color: var(--text-light);
}

.section-dark h2, .section-dark h3 {
  color: var(--bg-white);
}

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

.max-w-700 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background-color: var(--bg-light);
  color: var(--primary);
  border: 1px solid var(--accent);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-dark .badge {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--accent-light);
}

.section-title {
  font-size: 38px;
  margin-bottom: 20px;
  font-weight: 800;
  position: relative;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 60px;
}

.section-dark .section-subtitle {
  color: #94a3b8;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 168, 128, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-dark); /*var(--bg-white);*/
  border-color: 2px solid var(--primary-dark);
}

.btn-secondary:hover {
  background-color: var(--bg-white);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* STICKY HEADER & NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(11, 29, 51, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  color: var(--bg-white);
  padding: 15px 0;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-icon {
/*   width: 45px;
  height: 45px; */
  width: 429.6px;
  height: 109.6px;
  border: 2px solid var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
}

.logo-img {
/*   width: 45px;
  height: 45px; */
  width: 323.5px;
  height: 53px;
  object-fit: contain;
  border-radius: 4px;
}

/* .logo-text h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--bg-white);
  letter-spacing: 0.5px;
}

.logo-text p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
} */

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--bg-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  background-color: var(--accent);
  color: var(--primary-dark) !important;
  border-radius: 4px;
  border: 1px solid var(--accent);
}

.nav-cta:hover {
  background-color: transparent;
  color: var(--accent) !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--bg-white);
  transition: var(--transition);
}

/* HERO SECTION */
.hero {
  position: relative;
  background: linear-gradient(145deg, var(--primary-dark) 30%, var(--primary-light) 100%);
  color: var(--bg-white);
  padding: 140px 0 120px 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, rgba(0,0,0,0) 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(22, 47, 78, 0.2) 0%, rgba(0,0,0,0) 70%);
  bottom: -200px;
  left: -200px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 850px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  color: var(--bg-white);
  line-height: 1.15;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 20px;
  color: #cbd5e1;
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* GRID LAYOUTS */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* VALUE PROPOSITION & CARDS */
.card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 40px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(197, 168, 128, 0.3);
}

.card:hover::before {
  background-color: var(--accent);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #f1f5f9;
  border-radius: 8px;
  color: var(--primary);
  margin-bottom: 25px;
  transition: var(--transition);
}

.card:hover .card-icon {
  background-color: var(--primary);
  color: var(--accent);
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* WHY CHOOSE US CONTENT SPLIT */
.why-choose-grid {
  align-items: center;
}

.why-choose-text h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
}

.why-choose-text .lead {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  color: var(--bg-white);
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 18px;
  color: var(--accent-light);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* SERVICES PAGE ACCORDION / TABS */
.services-section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.services-block {
  margin-bottom: 60px;
}

.service-grid-card {
  padding: 30px;
}

.service-grid-card h3 {
  font-size: 18px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.service-grid-card ul {
  list-style: none;
  margin-top: 15px;
}

.service-grid-card li {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.service-grid-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
}

/* BANKING SPOTLIGHT PAGE */
.banking-hero {
  background-color: var(--bg-white);
  padding: 90px 0;
  border-bottom: 1px solid var(--border-color);
}

.banking-hero-grid {
  align-items: center;
}

.banking-hero h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.banking-hero p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
}

.banking-list {
  list-style: none;
  margin-top: 30px;
}

.banking-list-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.banking-list-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: rgba(197, 168, 128, 0.2);
  border-radius: 50%;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  margin-top: 3px;
}

.banking-list-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.banking-list-text p {
  font-size: 14px;
  color: var(--text-muted);
}

.tech-highlight-box {
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 40px;
  border-radius: 10px;
  border-left: 5px solid var(--accent);
}

.tech-highlight-box h3 {
  color: var(--bg-white);
  font-size: 24px;
  margin-bottom: 15px;
}

.tech-highlight-box p {
  color: #cbd5e1;
  font-size: 15px;
}

/* ABOUT PAGE */
.about-section-grid {
  align-items: stretch;
}

.about-box {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 45px;
  border-radius: 10px;
  height: 100%;
}

.about-box h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.about-box p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.about-box ul {
  list-style: none;
}

.about-box li {
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--primary);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-box li span {
  color: var(--accent-gold);
}

/* LEADERSHIP BOX */
.leadership-section {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 60px;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  margin-top: 50px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
}

.leadership-avatar {
  width: 160px;
  height: 160px;
  background-color: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 800;
  border: 4px solid var(--accent);
  box-shadow: var(--shadow-md);
}

.leadership-title h3 {
  font-size: 28px;
  margin-bottom: 5px;
}

.leadership-subtitle {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.leadership-text p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 15px;
}

/* CONTACT PAGE */
.contact-grid {
  gap: 50px;
}

.contact-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-card h3 {
  font-size: 24px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-main);
  background-color: var(--bg-light);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(11, 29, 51, 0.1);
}

.form-control::placeholder {
  color: #9ca3af;
}

.btn-whatsapp {
  background-color: #25d366;
  border-color: #25d366;
  color: var(--bg-white);
  width: 100%;
  margin-top: 10px;
  font-size: 16px;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  border-color: #128c7e;
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  background-color: var(--bg-white);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.info-item-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(11, 29, 51, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.info-item-text h4 {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 700;
}

.info-item-text p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  height: 300px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* REGULATORY DISCLAIMER & FOOTER */
footer {
  background-color: var(--primary-dark);
  color: #94a3b8;
  padding: 80px 0 20px 0;
  border-top: 1px solid var(--border-light);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  color: var(--bg-white);
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-brand p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-links-title {
  color: var(--bg-white);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-disclaimer-box {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 40px;
  font-size: 12px;
  line-height: 1.6;
  text-align: justify;
}

.footer-disclaimer-box p {
  color: #64748b;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
}

.footer-bottom p {
  color: #64748b;
}

/* FLOATING ACTIONS */
.float-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.float-btn:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 100px 0 80px 0;
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .why-choose-text {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  /* NAVBAR MOBILE DRAW MENU */
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 76px; /* navbar height */
    left: -100%;
    width: 100%;
    height: calc(100vh - 76px);
    background-color: var(--primary-dark);
    flex-direction: column;
    padding: 40px;
    gap: 25px;
    align-items: flex-start;
    transition: var(--transition);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    font-size: 18px;
    width: 100%;
  }
  
  .nav-cta {
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 12px;
    margin-top: 10px;
  }
  
  .leadership-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .leadership-avatar {
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* INSIGHTS & WHITE PAPERS */
.insight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.insight-card .card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.insight-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.insight-card p {
  flex-grow: 1;
  margin-bottom: 20px;
}

.insight-category {
  display: inline-block;
  padding: 3px 8px;
  background-color: rgba(197, 168, 128, 0.15);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
}

.section-dark .insight-category {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--accent-light);
}

.insight-readmore {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 5px;
}

.insight-readmore:hover {
  color: var(--primary);
  padding-left: 5px;
}

.newsletter-box {
  background-color: var(--primary);
  color: var(--text-light);
  border-radius: 10px;
  padding: 50px 40px;
  margin-top: 60px;
  border-left: 5px solid var(--accent);
}

.newsletter-box h3 {
  color: var(--bg-white);
  font-size: 24px;
  margin-bottom: 10px;
}

.newsletter-box p {
  color: #94a3b8;
  font-size: 15px;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
}

.newsletter-form button {
  min-width: 150px;
}

/* .btn-primary {
width: 100%;
background: var(--primary);
color: #fff;
border: none;
border-radius: 10px;
padding: 14px 20px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
}

.btn-primary:hover {
opacity: 0.9;
} */

.thank-you-container {
	background-color: var(--card-bg);
	max-width: 600px;
	width: 100%;
	padding: 40px 30px;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	text-align: center;
	align-items: center;
	width: 500px;         /* Must have a defined width */
	margin-left: auto;
	margin-right: auto;
}

.icon-container {
	width: 80px;
	height: 80px;
	background-color: #f0fff4;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
}

.icon-container svg {
	width: 40px;
	height: 40px;
	fill: var(--success-color);
}

.button-group {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* .btn {
	display: inline-block;
	padding: 14px 24px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.2s ease-in-out;
}

.btn-primary {
	background-color: var(--primary-color);
	color: #ffffff;
}

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

.btn-secondary {
	background-color: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
	background-color: #ebf8ff;
}
*/

/* Responsive adjustment for larger buttons side-by-side */
@media (min-width: 480px) {
	.button-group {
		flex-direction: row;
		justify-content: center;
	}
	.btn {
		flex: 1;
		max-width: 200px;
	}
}