:root {
  --brand-blue: #003D7A;
  --brand-cyan: #00D9A3;
  --brand-orange: #FF8C42;
  --dark-bg: #0a1929;
  --dark-blue: #001428;
  --text-light: #E8EDF2;
  --text-gray: #8B95A1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-blue) 100%);
  color: var(--text-light);
  min-height: 100vh;
  font-size: 0.95rem;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
}

.container-compact {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: linear-gradient(135deg, #0052A3 0%, #006DB8 50%, #00A6B5 100%);
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-logo {
  max-width: 200px;
  height: auto;
  display: block;
  filter: brightness(1.1);
  transition: transform 0.3s ease;
}

.site-logo:hover {
  transform: scale(1.05);
}

.hero-section-original {
  padding: 80px 20px 100px;
  background: linear-gradient(135deg, #0052A3 0%, #006DB8 50%, #00A6B5 100%);
  position: relative;
  overflow: hidden;
}

.hero-section-original::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(0, 217, 163, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-bottom: 30px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand-cyan);
}

.hero-title-original {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.hero-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 25px;
}

.hero-text-highlight {
  font-size: 1.15rem;
  color: var(--brand-cyan);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 500;
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-explore:hover {
  border-color: var(--brand-cyan);
  background: rgba(0, 217, 163, 0.1);
  transform: translateY(-2px);
}

.btn-explore svg {
  transition: transform 0.3s ease;
}

.btn-explore:hover svg {
  transform: translateY(3px);
}

.investment-card {
  background: rgba(0, 20, 40, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 217, 163, 0.3);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
}

.investment-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.investment-value {
  font-size: 4rem;
  font-weight: 800;
  color: var(--brand-cyan);
  font-family: 'Sora', sans-serif;
  line-height: 1;
  margin-bottom: 30px;
}

.investment-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 30px 0;
}

.investment-orgs {
  text-align: center;
}

.orgs-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  margin-bottom: 10px;
}

.orgs-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 30px;
  text-align: center;
}

.tabs-section {
  margin: 80px 0;
}

.nav-custom {
  justify-content: center;
  gap: 15px;
  border: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}

.nav-custom .nav-link {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-custom .nav-link:hover {
  border-color: var(--brand-cyan);
  color: var(--brand-cyan);
}

.nav-custom .nav-link.active {
  background: var(--brand-cyan);
  color: var(--brand-blue);
  border-color: var(--brand-cyan);
}

.tab-pane-custom {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-pane-custom.active {
  display: block;
}

.investor-intro {
  background: linear-gradient(135deg, rgba(0, 61, 122, 0.3), rgba(0, 82, 163, 0.2));
  border-left: 4px solid var(--brand-cyan);
  border-radius: 12px;
  padding: 35px 40px;
  margin-bottom: 50px;
}

.investor-intro-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.3;
}

.investor-intro-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 15px;
}

.investor-intro-subtext {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

.investor-section {
  margin-bottom: 60px;
}

.investor-section-header {
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 3px solid var(--brand-cyan);
}

.investor-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 15px;
}

.investor-section-description {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin: 0;
}

.investor-metric-card {
  background: rgba(0, 20, 40, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.investor-metric-card:hover {
  border-color: var(--brand-cyan);
  box-shadow: 0 8px 30px rgba(0, 217, 163, 0.15);
  transform: translateY(-3px);
}

.investor-metric-card-tdm {
  border-color: rgba(255, 140, 66, 0.3);
}

.investor-metric-card-tdm:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 8px 30px rgba(255, 140, 66, 0.2);
}

.investor-metric-card-finance {
  border-color: rgba(0, 217, 163, 0.3);
}

.investor-card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
}

.investor-card-value {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--brand-cyan);
  font-family: 'Sora', sans-serif;
  margin-bottom: 15px;
  line-height: 1;
}

.investor-card-label {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.investor-card-description {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

.tdm-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.2), rgba(255, 140, 66, 0.1));
  border: 1px solid var(--brand-orange);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--brand-orange);
  text-transform: uppercase;
}

.finance-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0, 217, 163, 0.2), rgba(0, 217, 163, 0.1));
  border: 1px solid var(--brand-cyan);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--brand-cyan);
  text-transform: uppercase;
}

.actions-highlight-card {
  background: linear-gradient(135deg, rgba(0, 217, 163, 0.15), rgba(0, 109, 184, 0.1));
  border: 1px solid rgba(0, 217, 163, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.actions-highlight-card:hover {
  border-color: var(--brand-cyan);
  box-shadow: 0 4px 20px rgba(0, 217, 163, 0.2);
}

.actions-highlight-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  opacity: 0.9;
}

.actions-highlight-value {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--brand-cyan);
  font-family: 'Sora', sans-serif;
  line-height: 1;
  margin-bottom: 8px;
}

.actions-highlight-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.actions-highlight-description {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0;
}

.bussola-support-section {
  background: linear-gradient(135deg, rgba(0, 109, 184, 0.25), rgba(0, 82, 163, 0.15));
  border: 2px solid rgba(0, 217, 163, 0.3);
  border-radius: 20px;
  padding: 45px;
  margin-top: 30px;
}

.bussola-support-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.bussola-support-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.bussola-support-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-cyan);
  line-height: 1.3;
  margin: 0;
}

.bussola-support-intro {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 35px;
  padding-left: 5px;
}

.bussola-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.bussola-pillar-card {
  background: rgba(0, 20, 40, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.bussola-pillar-card:hover {
  border-color: var(--brand-cyan);
  box-shadow: 0 8px 30px rgba(0, 217, 163, 0.2);
  transform: translateY(-5px);
}

.bussola-pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: inline-block;
}

.bussola-pillar-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.3;
}

.bussola-pillar-description {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

.org-highlight-section {
  margin-bottom: 50px;
}

.org-section-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brand-cyan);
  margin-bottom: 25px;
  text-align: center;
}

.org-hero-card {
  background: linear-gradient(135deg, rgba(0, 61, 122, 0.6), rgba(0, 166, 181, 0.3));
  border: 2px solid rgba(0, 217, 163, 0.3);
  border-radius: 24px;
  padding: 50px;
}

.org-hero-value {
  font-size: 4rem;
  font-weight: 800;
  color: var(--brand-cyan);
  font-family: 'Sora', sans-serif;
  line-height: 1;
  margin-bottom: 20px;
}

.org-hero-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.3;
}

.org-hero-description {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin: 0;
}

.org-icon-large {
  font-size: 8rem;
  line-height: 1;
  opacity: 0.3;
}

.metrics-section {
  margin: 50px 0;
}

.metric-card-detailed {
  background: rgba(0, 20, 40, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px;
  height: 100%;
  transition: all 0.3s ease;
}

.metric-card-detailed:hover {
  border-color: var(--brand-cyan);
  box-shadow: 0 10px 40px rgba(0, 217, 163, 0.15);
  transform: translateY(-5px);
}

.metric-icon-detailed {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
}

.metric-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-cyan);
  font-family: 'Sora', sans-serif;
  margin-bottom: 10px;
}

.metric-label-detailed {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 15px;
}

.metric-description-detailed {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

.app-section {
  background: linear-gradient(135deg, rgba(0, 82, 163, 0.4), rgba(0, 109, 184, 0.2));
  border: 1px solid rgba(0, 217, 163, 0.2);
  border-radius: 20px;
  padding: 40px;
  margin-top: 50px;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.app-icon {
  font-size: 2.5rem;
}

.app-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0;
}

.app-description {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 0;
}

.app-metric-card {
  background: rgba(0, 20, 40, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.app-metric-card:hover {
  border-color: var(--brand-cyan);
  transform: translateY(-3px);
}

.app-metric-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-cyan);
  font-family: 'Sora', sans-serif;
  margin-bottom: 10px;
}

.app-metric-label {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

.trends-section-investor {
  background: linear-gradient(135deg, rgba(0, 217, 163, 0.1), rgba(0, 109, 184, 0.08));
  border: 2px solid rgba(0, 217, 163, 0.3);
  border-radius: 16px;
  padding: 35px;
  margin-top: 30px;
}

.trends-header {
  text-align: center;
  margin-bottom: 30px;
}

.trends-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-cyan);
  margin-bottom: 10px;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.5px;
}

.trends-subtitle {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}

.trends-content {
  margin-top: 25px;
}

.trends-data-box {
  background: linear-gradient(135deg, rgba(0, 109, 184, 0.2), rgba(0, 217, 163, 0.1));
  border: 1px solid rgba(0, 217, 163, 0.4);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
}

.trends-box-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-cyan);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trends-box-content {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.trends-box-content strong {
  color: var(--brand-cyan);
  font-weight: 700;
}

.trends-perspective-card {
  background: rgba(11, 22, 35, 0.6);
  border: 1px solid rgba(0, 217, 163, 0.2);
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  transition: all 0.3s ease;
}

.trends-perspective-card:hover {
  border-color: var(--brand-cyan);
  box-shadow: 0 8px 25px rgba(0, 217, 163, 0.15);
  transform: translateY(-2px);
}

.trends-perspective-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.trends-perspective-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-cyan);
  margin-bottom: 15px;
  letter-spacing: 0.3px;
}

.trends-perspective-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

.trends-perspective-text:last-child {
  margin-bottom: 0;
}

.cta-section {
  margin: 80px 0 60px;
  padding: 0 20px;
}

.cta-card {
  background: linear-gradient(135deg, rgba(0, 109, 184, 0.4), rgba(0, 166, 181, 0.3));
  border: 2px solid rgba(0, 217, 163, 0.4);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 217, 163, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 20px;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.cta-description {
  font-size: 1.2rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--brand-cyan);
  color: var(--brand-blue);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 30px rgba(0, 217, 163, 0.3);
}

.cta-button:hover {
  background: #00f5b8;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 217, 163, 0.4);
  color: var(--brand-blue);
}

.cta-button svg {
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(5px);
}

.tab-navigation-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-navigation-hint {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 20px;
  font-weight: 500;
  text-align: left;
}

.tab-navigation-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.tab-navigation-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 20, 40, 0.5);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tab-navigation-button:hover {
  background: rgba(0, 217, 163, 0.15);
  border-color: var(--brand-cyan);
  color: var(--brand-cyan);
  transform: translateX(3px);
}

.tab-navigation-button svg {
  transition: transform 0.3s ease;
  width: 18px;
  height: 18px;
}

.tab-navigation-button:hover svg {
  transform: translateX(3px);
}

.footer {
  background: rgba(0, 20, 40, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 0 40px;
  margin-top: 0;
}

.footer-content {
  text-align: center;
}

.footer-tagline {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.footer-copy {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.footer-nav {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.footer-link {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--brand-cyan);
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .bussola-pillars {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .investment-card {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .hero-title-original {
    font-size: 2.5rem;
  }

  .hero-text, .hero-text-highlight {
    font-size: 1rem;
  }

  .investment-value {
    font-size: 3rem;
  }

  .orgs-value {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .metric-value {
    font-size: 2.2rem;
  }

  .nav-custom {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-custom .nav-link {
    text-align: center;
  }

  .investor-intro {
    padding: 25px;
  }

  .investor-intro-title {
    font-size: 1.5rem;
  }

  .org-hero-card {
    padding: 35px 25px;
  }

  .org-hero-value {
    font-size: 3rem;
  }

  .org-hero-title {
    font-size: 1.6rem;
  }

  .org-icon-large {
    font-size: 5rem;
    margin-top: 20px;
  }

  .trends-title {
    font-size: 1.6rem;
  }

  .trends-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .hero-section-original {
    padding: 60px 20px 80px;
  }

  .hero-title-original {
    font-size: 2rem;
  }

  .hero-text, .hero-text-highlight {
    font-size: 0.95rem;
  }

  .investment-value {
    font-size: 2.5rem;
  }

  .investment-card {
    padding: 30px 25px;
  }

  .org-hero-value {
    font-size: 2.5rem;
  }

  .org-hero-title {
    font-size: 1.4rem;
  }

  .org-icon-large {
    font-size: 4rem;
  }

  .bussola-support-section {
    padding: 25px;
  }

  .bussola-support-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .bussola-support-title {
    font-size: 1.2rem;
  }

  .trends-section-investor {
    padding: 20px;
    margin-top: 20px;
  }

  .trends-title {
    font-size: 1.4rem;
  }

  .trends-subtitle {
    font-size: 1rem;
  }

  .cta-section {
    margin: 50px 0 40px;
  }

  .cta-card {
    padding: 40px 25px;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-button {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .footer-tagline {
    font-size: 1rem;
  }
}
