/* CSS Styling */
.tfsa-funds-banner {
    background: linear-gradient(135deg, #0a0e17 0%, #121a2a 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(230, 184, 0, 0.1);
  }
  
  .tfsa-funds-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #CFB53B);
  }
  
  .tfsa-funds-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .tfsa-funds-banner-content {
    position: relative;
    z-index: 2;
  }
  
  .tfsa-funds-banner-badge {
    display: inline-block;
    background: rgba(230, 184, 0, 0.2);
    color: #e6b800;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(230, 184, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .tfsa-funds-banner-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
  }
  
  .tfsa-funds-banner-title span {
    color: #e6b800;
    position: relative;
  }
  
  .tfsa-funds-banner-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(230, 184, 0, 0.3);
    z-index: -1;
  }
  
  .tfsa-funds-banner-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
  }
  
  .tfsa-funds-banner-cta {
    margin-top: 30px;
  }
  
  .tfsa-funds-banner-button {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #CFB53B);
    color: #121212;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 184, 0, 0.3);
    position: relative;
    overflow: hidden;
  }
  
  .tfsa-funds-banner-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 184, 0, 0.5);
  }
  
  .tfsa-funds-banner-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: all 0.3s;
  }
  
  .tfsa-funds-banner-button:hover::after {
    left: 100%;
  }
  
  .tfsa-funds-banner-visual {
    position: relative;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .tfsa-funds-banner-graphic {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }
  
  .tfsa-funds-banner-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(230, 184, 0, 0.2);
    animation: pulse 8s infinite ease-in-out;
  }
  
  .tfsa-funds-banner-circle.large {
    width: 100%;
    height: 100%;
    border-color: rgba(230, 184, 0, 0.1);
    animation-delay: -1s;
  }
  
  .tfsa-funds-banner-circle.medium {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-color: rgba(230, 184, 0, 0.2);
    animation-delay: -2s;
  }
  
  .tfsa-funds-banner-circle.small {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border-color: rgba(230, 184, 0, 0.3);
    animation-delay: -3s;
  }
  
  .tfsa-funds-banner-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(230, 184, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(230, 184, 0, 0.3);
  }
  
  .tfsa-funds-banner-icon svg {
    width: 40px;
    height: 40px;
    fill: #e6b800;
  }
  
  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
  }
  
  /* Background Elements */
  .tfsa-funds-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 184, 0, 0.05) 0%, transparent 70%);
    z-index: 1;
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .tfsa-funds-banner-container {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .tfsa-funds-banner-title {
      font-size: 2.2rem;
    }
    
    .tfsa-funds-banner-description {
      font-size: 1.2rem;
      max-width: 100%;
    }
    
    .tfsa-funds-banner-graphic {
      width: 250px;
      height: 250px;
    }
  }
  
  @media (max-width: 768px) {
    .tfsa-funds-banner {
      padding: 80px 20px;
    }
    
    .tfsa-funds-banner-title {
      font-size: 2rem;
    }
    
    .tfsa-funds-banner-description {
      font-size: 1.1rem;
    }
    
    .tfsa-funds-banner-button {
      padding: 14px 30px;
      font-size: 1rem;
    }
    
    .tfsa-funds-banner-graphic {
      width: 200px;
      height: 200px;
    }
    
    .tfsa-funds-banner-icon {
      width: 60px;
      height: 60px;
    }
    
    .tfsa-funds-banner-icon svg {
      width: 30px;
      height: 30px;
    }
  }


  /* CSS Styling */
.tfsa-funds-advantages {
    background: linear-gradient(135deg, #0a0e17 0%, #121a2a 100%);
    padding: 80px 20px;
    position: relative;
    border-top: 1px solid rgba(230, 184, 0, 0.1);
  }
  
  .tfsa-funds-advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #CFB53B);
  }
  
  .tfsa-funds-advantages-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .tfsa-funds-advantages-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .tfsa-funds-advantages-title {
    font-size: 2.5rem;
    color: #e6b800;
    margin-bottom: 15px;
    font-weight: 700;
  }
  
  .tfsa-funds-advantages-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
  }
  
  .tfsa-funds-advantages-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .tfsa-funds-advantages-card {
    background: rgba(19, 26, 45, 0.8);
    border-radius: 12px;
    padding: 40px 30px;
    border: 1px solid rgba(230, 184, 0, 0.15);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .tfsa-funds-advantages-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(230, 184, 0, 0.3);
  }
  
  .tfsa-funds-advantages-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #CFB53B);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .tfsa-funds-advantages-card:hover::after {
    opacity: 1;
  }
  
  .tfsa-funds-advantages-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(230, 184, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 1px solid rgba(230, 184, 0, 0.2);
    transition: all 0.3s ease;
  }
  
  .tfsa-funds-advantages-card:hover .tfsa-funds-advantages-card-icon {
    background: rgba(230, 184, 0, 0.2);
    transform: scale(1.1);
  }
  
  .tfsa-funds-advantages-card-icon svg {
    width: 30px;
    height: 30px;
    fill: #e6b800;
  }
  
  .tfsa-funds-advantages-card-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .tfsa-funds-advantages-card-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
  }
  
  .tfsa-funds-advantages-card-text sup {
    font-size: 0.7em;
    vertical-align: super;
  }
  
  /* Background Elements */
  .tfsa-funds-advantages::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 184, 0, 0.05) 0%, transparent 70%);
    z-index: 1;
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .tfsa-funds-advantages-cards {
      grid-template-columns: 1fr 1fr;
    }
    
    .tfsa-funds-advantages-card:last-child {
      grid-column: span 2;
      max-width: 400px;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 768px) {
    .tfsa-funds-advantages {
      padding: 60px 20px;
    }
    
    .tfsa-funds-advantages-title {
      font-size: 2rem;
    }
    
    .tfsa-funds-advantages-subtitle {
      font-size: 1.1rem;
    }
    
    .tfsa-funds-advantages-cards {
      grid-template-columns: 1fr;
    }
    
    .tfsa-funds-advantages-card:last-child {
      grid-column: span 1;
      max-width: 100%;
    }
    
    .tfsa-funds-advantages-card {
      padding: 30px 25px;
    }
    
    .tfsa-funds-advantages-card-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 20px;
    }
    
    .tfsa-funds-advantages-card-icon svg {
      width: 25px;
      height: 25px;
    }
    
    .tfsa-funds-advantages-card-title {
      font-size: 1.3rem;
      margin-bottom: 15px;
    }
    
    .tfsa-funds-advantages-card-text {
      font-size: 1rem;
    }
  }

  /* CSS Styling */
.tfsa-funds-introduction {
    background: linear-gradient(135deg, #0a0e17 0%, #121a2a 100%);
    padding: 100px 20px;
    position: relative;
    border-top: 1px solid rgba(230, 184, 0, 0.1);
  }
  
  .tfsa-funds-introduction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #CFB53B);
  }
  
  .tfsa-funds-introduction-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .tfsa-funds-introduction-content {
    position: relative;
    z-index: 2;
  }
  
  .tfsa-funds-introduction-title {
    font-size: 2.5rem;
    color: #e6b800;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    display: inline-block;
  }
  
  .tfsa-funds-introduction-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #CFB53B);
  }
  
  .tfsa-funds-introduction-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .tfsa-funds-introduction-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  
  .tfsa-funds-introduction-feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(230, 184, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(230, 184, 0, 0.2);
    transition: all 0.3s ease;
  }
  
  .tfsa-funds-introduction-feature:hover .tfsa-funds-introduction-feature-icon {
    background: rgba(230, 184, 0, 0.2);
    transform: scale(1.1);
  }
  
  .tfsa-funds-introduction-feature-icon svg {
    width: 24px;
    height: 24px;
    fill: #e6b800;
  }
  
  .tfsa-funds-introduction-feature-text {
    flex: 1;
  }
  
  .tfsa-funds-introduction-feature-title {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .tfsa-funds-introduction-feature-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
  }
  
  .tfsa-funds-introduction-disclaimer {
    padding: 15px;
    background: rgba(230, 184, 0, 0.05);
    border-left: 3px solid rgba(230, 184, 0, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .tfsa-funds-introduction-visual {
    position: relative;
  }
  
  .tfsa-funds-introduction-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(230, 184, 0, 0.2);
    transform: perspective(1000px) rotateY(10deg);
    transition: transform 0.5s ease;
  }
  
  .tfsa-funds-introduction-image-wrapper:hover {
    transform: perspective(1000px) rotateY(5deg);
  }
  
  .tfsa-funds-introduction-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
  }
  
  .tfsa-funds-introduction-image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(230, 184, 0, 0.2) 0%, transparent 70%);
    z-index: 1;
    opacity: 0.7;
  }
  
  /* Background Elements */
  .tfsa-funds-introduction::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 184, 0, 0.05) 0%, transparent 70%);
    z-index: 1;
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .tfsa-funds-introduction-container {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .tfsa-funds-introduction-image-wrapper {
      max-width: 500px;
      margin: 0 auto;
      transform: none;
    }
    
    .tfsa-funds-introduction-title {
      font-size: 2.2rem;
    }
  }
  
  @media (max-width: 768px) {
    .tfsa-funds-introduction {
      padding: 80px 20px;
    }
    
    .tfsa-funds-introduction-title {
      font-size: 2rem;
    }
    
    .tfsa-funds-introduction-feature {
      flex-direction: column;
      gap: 15px;
    }
    
    .tfsa-funds-introduction-feature-icon {
      width: 40px;
      height: 40px;
    }
    
    .tfsa-funds-introduction-feature-icon svg {
      width: 20px;
      height: 20px;
    }
    
    .tfsa-funds-introduction-feature-title {
      font-size: 1.3rem;
    }
    
    .tfsa-funds-introduction-feature-description {
      font-size: 1rem;
    }
  }


  /* CSS Styling */
.tfsa-funds-perks {
  background: linear-gradient(135deg, #0a0e17 0%, #121a2a 100%);
  padding: 100px 20px;
  position: relative;
  border-top: 1px solid rgba(230, 184, 0, 0.1);
  overflow: hidden;
}

.tfsa-funds-perks::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FFD700, #CFB53B);
}

.tfsa-funds-perks-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tfsa-funds-perks-visual {
  position: relative;
}

.tfsa-funds-perks-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(230, 184, 0, 0.2);
  transform: perspective(1000px) rotateY(-10deg);
  transition: transform 0.5s ease;
}

.tfsa-funds-perks-image-wrapper:hover {
  transform: perspective(1000px) rotateY(-5deg);
}

.tfsa-funds-perks-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.tfsa-funds-perks-image-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(230, 184, 0, 0.15) 0%, transparent 70%);
  z-index: 1;
  opacity: 0.7;
}

.tfsa-funds-perks-content {
  position: relative;
}

.tfsa-funds-perks-title {
  font-size: 2.5rem;
  color: #e6b800;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.tfsa-funds-perks-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #CFB53B);
}

.tfsa-funds-perks-intro {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 40px;
}

.tfsa-funds-perks-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tfsa-funds-perks-feature {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(19, 26, 45, 0.8);
  border-radius: 8px;
  border: 1px solid rgba(230, 184, 0, 0.15);
  transition: all 0.3s ease;
}

.tfsa-funds-perks-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(230, 184, 0, 0.2);
  border-color: rgba(230, 184, 0, 0.3);
}

.tfsa-funds-perks-feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(230, 184, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(230, 184, 0, 0.2);
  transition: all 0.3s ease;
}

.tfsa-funds-perks-feature:hover .tfsa-funds-perks-feature-icon {
  background: rgba(230, 184, 0, 0.2);
  transform: scale(1.1);
}

.tfsa-funds-perks-feature-icon svg {
  width: 24px;
  height: 24px;
  fill: #e6b800;
}

.tfsa-funds-perks-feature-title {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.tfsa-funds-perks-feature-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}

.tfsa-funds-perks-feature-description sup {
  font-size: 0.7em;
  vertical-align: super;
  color: #e6b800;
}

/* Background Elements */
.tfsa-funds-perks::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(230, 184, 0, 0.05) 0%, transparent 70%);
  z-index: 1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .tfsa-funds-perks-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .tfsa-funds-perks-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
    transform: none;
  }
  
  .tfsa-funds-perks-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .tfsa-funds-perks {
    padding: 80px 20px;
  }
  
  .tfsa-funds-perks-title {
    font-size: 2rem;
  }
  
  .tfsa-funds-perks-intro {
    font-size: 1.1rem;
  }
  
  .tfsa-funds-perks-feature {
    padding: 20px;
    flex-direction: column;
    gap: 15px;
  }
  
  .tfsa-funds-perks-feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .tfsa-funds-perks-feature-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .tfsa-funds-perks-feature-title {
    font-size: 1.3rem;
  }
  
  .tfsa-funds-perks-feature-description {
    font-size: 1rem;
  }
}



/* CSS Styling */
.tfsa-funds-options {
  background: linear-gradient(135deg, #0a0e17 0%, #121a2a 100%);
  padding: 100px 20px;
  position: relative;
  border-top: 1px solid rgba(230, 184, 0, 0.1);
}

.tfsa-funds-options::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FFD700, #CFB53B);
}

.tfsa-funds-options-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tfsa-funds-options-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tfsa-funds-options-title {
  font-size: 2.5rem;
  color: #e6b800;
  margin-bottom: 20px;
  font-weight: 700;
}

.tfsa-funds-options-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.tfsa-funds-options-subtitle sup {
  font-size: 0.7em;
  vertical-align: super;
  color: #e6b800;
}

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

.tfsa-funds-options-card {
  background: rgba(19, 26, 45, 0.8);
  border-radius: 12px;
  padding: 40px 30px;
  border: 1px solid rgba(230, 184, 0, 0.15);
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.tfsa-funds-options-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(230, 184, 0, 0.3);
}

.tfsa-funds-options-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FFD700, #CFB53B);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tfsa-funds-options-card:hover::after {
  opacity: 1;
}

.tfsa-funds-options-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(230, 184, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border: 1px solid rgba(230, 184, 0, 0.2);
  transition: all 0.3s ease;
}

.tfsa-funds-options-card:hover .tfsa-funds-options-card-icon {
  background: rgba(230, 184, 0, 0.2);
  transform: scale(1.1);
}

.tfsa-funds-options-card-icon svg {
  width: 28px;
  height: 28px;
  fill: #e6b800;
}

.tfsa-funds-options-card-title {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

.tfsa-funds-options-card-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 30px;
  flex: 1;
}

.tfsa-funds-options-card-text sup {
  font-size: 0.7em;
  vertical-align: super;
  color: #e6b800;
}

.tfsa-funds-options-card-arrow {
  width: 40px;
  height: 40px;
  background: rgba(230, 184, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(230, 184, 0, 0.2);
  transition: all 0.3s ease;
  align-self: flex-end;
}

.tfsa-funds-options-card:hover .tfsa-funds-options-card-arrow {
  background: rgba(230, 184, 0, 0.2);
  transform: translateX(5px);
}

.tfsa-funds-options-card-arrow svg {
  width: 20px;
  height: 20px;
  fill: #e6b800;
}

/* Background Elements */
.tfsa-funds-options::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(230, 184, 0, 0.05) 0%, transparent 70%);
  z-index: 1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .tfsa-funds-options-cards {
    grid-template-columns: 1fr 1fr;
  }
  
  .tfsa-funds-options-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .tfsa-funds-options {
    padding: 80px 20px;
  }
  
  .tfsa-funds-options-title {
    font-size: 2rem;
  }
  
  .tfsa-funds-options-subtitle {
    font-size: 1.1rem;
  }
  
  .tfsa-funds-options-cards {
    grid-template-columns: 1fr;
  }
  
  .tfsa-funds-options-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
  
  .tfsa-funds-options-card {
    padding: 30px 25px;
  }
  
  .tfsa-funds-options-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }
  
  .tfsa-funds-options-card-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .tfsa-funds-options-card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .tfsa-funds-options-card-text {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .tfsa-funds-options-card-arrow {
    width: 36px;
    height: 36px;
  }
  
  .tfsa-funds-options-card-arrow svg {
    width: 18px;
    height: 18px;
  }
}