/* ========================================
   Modern TD Web Business Banking Design
   Complete Redesign - Sidebar Layout
   ======================================== */

/* === MODERN SIDEBAR NAVIGATION === */
.modern-sidebar-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #2d3748 0%, #1a202c 100%);
  border-right: 1px solid #4a5568;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

.sidebar-brand {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid #4a5568;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.brand-link:hover {
  color: #68d391;
}

.brand-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #68d391 0%, #48bb78 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(104, 211, 145, 0.3);
}

.brand-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.sidebar-menu {
  flex: 1;
  padding: 2rem 0;
}

.nav-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu-item {
  display: block;
  padding: 1rem 1.5rem;
  color: #a0aec0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  position: relative;
}

.nav-menu-item:hover {
  color: #68d391;
  background: rgba(104, 211, 145, 0.1);
  border-left-color: #68d391;
}

.nav-menu-item.active {
  color: #68d391;
  background: rgba(104, 211, 145, 0.15);
  border-left-color: #68d391;
}

.sidebar-footer {
  padding: 1.5rem;
  border-top: 1px solid #4a5568;
}

.quick-signup-btn {
  display: block;
  width: 100%;
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, #68d391 0%, #48bb78 100%);
  color: white;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(104, 211, 145, 0.3);
}

.quick-signup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(104, 211, 145, 0.4);
}

/* === MOBILE NAVIGATION === */
.mobile-nav-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #68d391 0%, #48bb78 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(104, 211, 145, 0.3);
}

.mobile-nav-toggle span {
  width: 20px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* === MAIN CONTENT WITH SIDEBAR === */
.main-content-with-sidebar {
  margin-left: 280px;
  min-height: 100vh;
}

/* === MODERN HERO SECTION === */
.modern-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  overflow: hidden;
}

.hero-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(104, 211, 145, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(72, 187, 120, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  flex: 1;
  padding: 0 4rem;
  z-index: 2;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(104, 211, 145, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(104, 211, 145, 0.2);
  margin-bottom: 2rem;
}

.badge-icon {
  font-size: 1.25rem;
}

.badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #48bb78;
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.title-highlight {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.title-subtitle {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  color: #68d391;
}

.hero-description {
  font-size: 1.25rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #68d391 0%, #48bb78 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(104, 211, 145, 0.3);
}

.hero-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(104, 211, 145, 0.4);
}

.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: #4a5568;
  padding: 1rem 2rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.hero-secondary-btn:hover {
  background: #f7fafc;
  border-color: #68d391;
  color: #48bb78;
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 1.25rem;
}

.floating-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #4a5568;
  font-weight: 500;
}

.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
}

.dashboard-preview {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.dashboard-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  font-size: 0.875rem;
  font-weight: 600;
  color: #2d3748;
  animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  top: 60%;
  left: -15%;
  animation-delay: 1s;
}

.floating-card.card-3 {
  bottom: 20%;
  right: -5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* === MODERN FEATURES SECTION === */
.modern-features {
  padding: 6rem 4rem;
  background: white;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(104, 211, 145, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(104, 211, 145, 0.2);
  margin-bottom: 1.5rem;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 1rem;
}

.features-subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #68d391 0%, #48bb78 100%);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #68d391;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.feature-description {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: rgba(104, 211, 145, 0.1);
  color: #48bb78;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* === MODERN PROCESS SECTION === */
.modern-process {
  padding: 6rem 4rem;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 1rem;
}

.process-subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #68d391 0%, #48bb78 100%);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.step-icon {
  font-size: 3rem;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number-badge {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #68d391 0%, #48bb78 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 4px 12px rgba(104, 211, 145, 0.3);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.step-description {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.step-feature {
  background: rgba(104, 211, 145, 0.1);
  color: #48bb78;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(104, 211, 145, 0.2);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  .modern-sidebar-nav {
    transform: translateX(-100%);
  }
  
  .modern-sidebar-nav.open {
    transform: translateX(0);
  }
  
  .main-content-with-sidebar {
    margin-left: 0;
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  .mobile-nav-overlay.show {
    display: block;
  }
  
  .hero-content {
    padding: 0 2rem;
  }
  
  .title-highlight {
    font-size: 2.5rem;
  }
  
  .modern-features {
    padding: 4rem 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .modern-process {
    padding: 4rem 2rem;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .step-number {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 0 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .floating-stats {
    justify-content: center;
  }
  
  .title-highlight {
    font-size: 2rem;
  }
  
  .title-subtitle {
    font-size: 1.25rem;
  }
  
  .modern-process {
    padding: 3rem 1rem;
  }
  
  .process-step {
    padding: 2rem 1.5rem;
  }
  
  .step-features {
    justify-content: center;
  }
}

/* === BASIC LAYOUT CLASSES === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.white-background {
  background-color: #ffffff;
  color: #1a1a1a;
}

.light-blue-background {
  background-color: #f0f4f8;
  color: #1a1a1a;
}

.responsive-padding-centered {
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .responsive-padding-centered {
    padding: 4rem 2rem;
  }
}

.flex-container-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.responsive-content-box {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .responsive-content-box {
    flex: 1 1 50%;
  }
}

.responsive-main-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

@media (min-width: 768px) {
  .responsive-main-heading {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .responsive-main-heading {
    font-size: 3rem;
  }
}

.subtext-paragraph {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 1rem;
}

.section-bottom-padding {
  padding: 3rem 0;
}

.wide-responsive-column {
  flex: 1 1 100%;
  min-width: 0;
}

.negative-top-margin {
  margin-top: -2rem;
}

.blog.single {
  max-width: 100%;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  width: 100%;
  overflow: hidden;
}

.full-width-image {
  width: 100%;
  height: auto;
  display: block;
}

.card-body {
  padding: 1.5rem;
}

.adaptive-content-padding {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .adaptive-content-padding {
    padding: 2rem;
  }
}

.post-header {
  margin-bottom: 1rem;
}

.small-bottom-margin {
  margin-bottom: 1rem;
}

.header-label-details {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #e2e8f0;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.75rem;
}

.large-text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

@media (min-width: 768px) {
  .large-text {
    font-size: 1.75rem;
  }
}

.positioned-element {
  position: relative;
}

.post {
  margin-bottom: 2rem;
}

.post a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* === NAVIGATION CLASSES === */
.header-background-wrapper {
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.light-navbar-theme {
  background: transparent;
}

.transparent {
  background: transparent !important;
}

.navbar {
  padding: 1rem 0;
}

.navbar-expand-lg {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.horizontal-align-xl-lg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.full-width {
  width: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.align-center-flex {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.margin-right-small {
  margin-right: 0.75rem;
}

.small-image-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.responsive-text-style {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .hidden {
    display: block;
  }
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1045;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}

.offcanvas-start {
  top: 0;
  left: 0;
  width: 400px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(-100%);
}

.offcanvas.show {
  visibility: visible;
  transform: translateX(0);
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.button-style {
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #1a1a1a;
}

.screen-reader-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.icon-size-small {
  width: 24px;
  height: 24px;
}

.offcanvas-body {
  flex-grow: 1;
  padding: 1rem;
  overflow-y: auto;
}

.offcanvas-position-xl-lg {
  display: block;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-item {
  margin-bottom: 0.5rem;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.nav-link:hover {
  color: #2563eb;
  background-color: #f7fafc;
}

.full-flex-auto-margin {
  margin-left: auto;
}

.navbar-other {
  display: flex;
  align-items: center;
}

.center-aligned-flex-row {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.responsive-hidden-large {
  display: block;
}

@media (min-width: 1024px) {
  .responsive-hidden-large {
    display: none;
  }
}

.hamburger {
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  
  .navbar-nav {
    flex-direction: row;
    gap: 1rem;
  }
  
  .offcanvas-position-xl-lg {
    position: static;
    display: flex;
    flex-direction: row;
  }
  
  .offcanvas {
    position: static;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
  }
}

/* === FOOTER CLASSES === */
.full-width-banner {
  width: 100%;
  background: #1a202c;
  color: #ffffff;
  padding: 3rem 0;
}

.container-max-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.vertical-spacing {
  margin-bottom: 2rem;
}

.navigation-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.link-default {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link-default:hover {
  color: #ffffff;
  text-decoration: underline;
}

.section-divider {
  padding-top: 2rem;
  border-top: 1px solid #4a5568;
}

.flexible-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.muted-text {
  color: #a0aec0;
  font-size: 0.875rem;
}

.contact-information {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e0;
  font-size: 0.875rem;
}

.contact-information a {
  color: #cbd5e0;
  text-decoration: none;
}

.contact-information a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.separator-line {
  color: #4a5568;
}

/* === POPUP CLASSES === */
.popup-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2d3748;
  color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10000;
}

.heading-large {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.body-small {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.text-underline {
  color: #68d391;
  text-decoration: underline;
}

.text-underline:hover {
  color: #48bb78;
}

.actions-group {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.primary-button {
  background: #68d391;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.primary-button:hover {
  background: #48bb78;
}

.secondary-button {
  background: transparent;
  color: #cbd5e0;
  border: 1px solid #4a5568;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background: #4a5568;
  color: #ffffff;
}