  /* Base Styles */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  :root {
      --primary-bg: #0a0a0a;
      --secondary-bg: #1a1a1a;
      --gold: #d4af37;
      --bronze: #cd7f32;
      --text-light: #f5f5f5;
      --text-gray: #aaaaaa;
  }

  body {
      background-color: var(--primary-bg);
      color: var(--text-light);
      line-height: 1.6;
  }

  .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
  }

  /* Updated Header Styles */
  header {
      background-color: var(--secondary-bg);
      padding: 15px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }

  .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .logo {
      display: flex;
      align-items: center;
  }

  .logo img {
      height: 50px;
      margin-right: 10px;
  }

  .logo-text {
      display: flex;
      flex-direction: column;
  }

  .logo-main {
      font-size: 1.5rem;
      background: linear-gradient(to right, var(--gold), var(--bronze));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-weight: bold;
  }

  .logo-sub {
      font-size: 0.7rem;
      color: var(--text-gray);
      margin-top: -5px;
  }

  nav ul {
      display: flex;
      list-style: none;
  }

  nav ul li {
      margin-left: 20px;
  }

  nav ul li a {
      color: var(--text-light);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
      position: relative;
      font-size: 0.9rem;
  }

  nav ul li a:hover {
      color: var(--gold);
  }

  nav ul li a.active {
      color: var(--gold);
  }

  nav ul li a.active::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--gold);
  }

  .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: var(--text-light);
      font-size: 1.5rem;
      cursor: pointer;
  }

  /* Hero Section */
  .hero {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
      background-size: cover;
      background-position: center;
      padding: 120px 0;
      text-align: center;
  }

  .hero h2 {
      font-size: 3rem;
      margin-bottom: 20px;
      background: linear-gradient(to right, var(--gold), var(--bronze));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
  }

  .hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 30px;
      color: var(--text-gray);
  }

  .btn {
      display: inline-block;
      padding: 12px 30px;
      background: linear-gradient(to right, var(--gold), var(--bronze));
      color: var(--primary-bg);
      text-decoration: none;
      border-radius: 5px;
      font-weight: 600;
      transition: transform 0.3s, box-shadow 0.3s;
  }

  .btn-secondary {
      display: inline-block;
      padding: 12px 30px;
      background: transparent;
      color: var(--gold);
      text-decoration: none;
      border-radius: 5px;
      font-weight: 600;
      border: 2px solid var(--gold);
      transition: all 0.3s;
      margin-left: 15px;
  }

  .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
  }

  .btn-secondary:hover {
      background-color: var(--gold);
      color: var(--primary-bg);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
  }

  /* Stats Section */
  .stats {
      padding: 80px 0;
      background-color: var(--secondary-bg);
  }

  .stats-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
  }

  .stat-card {
      text-align: center;
      padding: 30px;
      border-radius: 10px;
      background-color: var(--primary-bg);
      border: 1px solid rgba(212, 175, 55, 0.1);
      transition: transform 0.3s;
  }

  .stat-card:hover {
      transform: translateY(-10px);
      border-color: var(--gold);
  }

  .stat-number {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 10px;
      background: linear-gradient(to right, var(--gold), var(--bronze));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
  }

  .stat-label {
      font-size: 1.2rem;
      color: var(--text-gray);
  }

  /* Why Trading Section */
  .why-trading {
      padding: 80px 0;
  }

  .section-title {
      text-align: center;
      margin-bottom: 50px;
  }

  .section-title h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
  }

  .section-title h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(to right, var(--gold), var(--bronze));
  }

  .section-title p {
      color: var(--text-gray);
      max-width: 700px;
      margin: 0 auto;
  }

  .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
  }

  .feature-card {
      background-color: var(--secondary-bg);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      transition: transform 0.3s;
      border: 1px solid rgba(212, 175, 55, 0.1);
  }

  .feature-card:hover {
      transform: translateY(-10px);
      border-color: var(--gold);
  }

  .feature-icon {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--gold);
  }

  .feature-card h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: var(--text-light);
  }

  .feature-card p {
      color: var(--text-gray);
  }

  /* Services Section */
  .services {
      padding: 80px 0;
      background-color: var(--secondary-bg);
  }

  .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
  }

  .service-card {
      background-color: var(--primary-bg);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      transition: transform 0.3s;
      border: 1px solid rgba(212, 175, 55, 0.1);
  }

  .service-card:hover {
      transform: translateY(-10px);
      border-color: var(--gold);
  }

  .service-icon {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--gold);
  }

  .service-card h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: var(--text-light);
  }

  .service-card p {
      color: var(--text-gray);
  }

  /* Testimonials Section */
  .testimonials {
      padding: 80px 0;
  }

  .testimonial-slider {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
  }

  .testimonial-slide {
      text-align: center;
      padding: 30px;
      display: none;
  }

  .testimonial-slide.active {
      display: block;
      animation: fadeIn 1s;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }

  .testimonial-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin: 0 auto 20px;
      border: 3px solid var(--gold);
      overflow: hidden;
  }

  .testimonial-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .testimonial-text {
      font-style: italic;
      margin-bottom: 20px;
      font-size: 1.1rem;
      color: var(--text-gray);
  }

  .testimonial-author {
      font-weight: 600;
      color: var(--gold);
  }

  .testimonial-controls {
      display: flex;
      justify-content: center;
      margin-top: 30px;
  }

  .testimonial-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: var(--text-gray);
      margin: 0 5px;
      cursor: pointer;
      transition: background-color 0.3s;
  }

  .testimonial-dot.active {
      background-color: var(--gold);
  }

  /* RA's Desk Section */
  .ras-desk {
      padding: 80px 0;
      background-color: var(--secondary-bg);
  }

  .ra-profile {
      display: flex;
      align-items: center;
      margin-bottom: 40px;
      padding: 30px;
      background-color: var(--primary-bg);
      border-radius: 10px;
      border: 1px solid rgba(212, 175, 55, 0.1);
  }

  .ra-avatar {
      width: 300px;
      height: 100px;
      border-radius: 50%;
      margin-right: 30px;
      border: 3px solid var(--gold);
      overflow: hidden;
  }

  .ra-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .ra-info h2 {
      font-size: 2rem;
      margin-bottom: 10px;
      color: var(--gold);
  }

  .ra-info p {
      color: var(--text-gray);
      margin-bottom: 5px;
  }

  .analysis-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
  }

  .analysis-card {
      background-color: var(--primary-bg);
      padding: 25px;
      border-radius: 10px;
      border: 1px solid rgba(212, 175, 55, 0.1);
      transition: transform 0.3s;
  }

  .analysis-card:hover {
      transform: translateY(-5px);
      border-color: var(--gold);
  }

  .analysis-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 15px;
  }

  .analysis-title {
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 5px;
  }

  .analysis-meta {
      color: var(--text-gray);
      font-size: 0.9rem;
  }

  .analysis-tag {
      background-color: rgba(212, 175, 55, 0.1);
      color: var(--gold);
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
  }

  .analysis-content {
      margin-bottom: 20px;
  }

  .analysis-content p {
      color: var(--text-gray);
      margin-bottom: 10px;
  }

  .analysis-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .analysis-author {
      display: flex;
      align-items: center;
  }

  .author-avatar {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      margin-right: 10px;
      overflow: hidden;
  }

  .author-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .author-name {
      font-weight: 600;
      color: var(--gold);
  }

  .read-more {
      color: var(--gold);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s;
  }

  .read-more:hover {
      color: var(--bronze);
  }

  /* FAQ Section */
  .faq {
      padding: 80px 0;
  }

  .faq-container {
      max-width: 800px;
      margin: 0 auto;
  }

  .faq-item {
      margin-bottom: 15px;
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: 5px;
      overflow: hidden;
  }

  .faq-question {
      padding: 15px 20px;
      background-color: var(--secondary-bg);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
  }

  .faq-question i {
      transition: transform 0.3s;
  }

  .faq-question.active i {
      transform: rotate(180deg);
  }

  .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s, padding 0.3s;
      background-color: rgba(26, 26, 26, 0.5);
  }

  .faq-answer.active {
      padding: 20px;
      max-height: 500px;
  }

  /* Footer */
  /* Add this CSS to your existing CSS file */

  /* Footer Contact Section Styles */
  .contact-info {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }

  .contact-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
  }

  .contact-icon {
      width: 40px;
      height: 40px;
      background: rgba(212, 175, 55, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      color: var(--gold);
      flex-shrink: 0;
  }

  .contact-details h4 {
      color: var(--gold);
      margin-bottom: 5px;
      font-size: 1rem;
  }

  .contact-details p {
      color: var(--text-gray);
      margin: 0;
      font-size: 0.9rem;
  }

  /* Contact Page Styles */
  .contact-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      margin-top: 40px;
  }

  .contact-card {
      background-color: var(--secondary-bg);
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      margin-bottom: 25px;
      border: 1px solid rgba(212, 175, 55, 0.1);
      transition: transform 0.3s;
  }

  .contact-card:hover {
      transform: translateY(-5px);
      border-color: var(--gold);
  }

  .contact-card .contact-icon {
      margin: 0 auto 15px;
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
  }

  .contact-card h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: var(--text-light);
  }

  .contact-card p {
      color: var(--text-gray);
      margin-bottom: 5px;
  }

  .contact-form {
      background-color: var(--secondary-bg);
      padding: 30px;
      border-radius: 10px;
      border: 1px solid rgba(212, 175, 55, 0.1);
  }

  .contact-form h3 {
      font-size: 1.5rem;
      margin-bottom: 20px;
      color: var(--gold);
      text-align: center;
  }

  .form-group {
      margin-bottom: 20px;
  }

  .form-group input,
  .form-group textarea {
      width: 100%;
      padding: 12px 15px;
      background-color: var(--primary-bg);
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: 5px;
      color: var(--text-light);
      font-size: 1rem;
      transition: border-color 0.3s;
  }

  .form-group input:focus,
  .form-group textarea:focus {
      outline: none;
      border-color: var(--gold);
  }

  .form-group textarea {
      resize: vertical;
      min-height: 120px;
  }

  /* Terms, Privacy, Disclaimer, Refund Page Styles */
  .terms-content,
  .privacy-content,
  .disclaimer-content,
  .refund-content {
      max-width: 900px;
      margin: 0 auto;
  }

  .terms-section,
  .privacy-section,
  .disclaimer-section,
  .refund-section {
      margin-bottom: 40px;
  }

  .terms-section h3,
  .privacy-section h3,
  .disclaimer-section h3,
  .refund-section h3 {
      font-size: 1.5rem;
      color: var(--gold);
      margin-bottom: 15px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }

  .terms-section p,
  .privacy-section p,
  .disclaimer-section p,
  .refund-section p {
      color: var(--text-gray);
      margin-bottom: 15px;
      line-height: 1.8;
  }

  .terms-section ul,
  .privacy-section ul,
  .disclaimer-section ul,
  .refund-section ul {
      margin-left: 20px;
      margin-bottom: 20px;
  }

  .terms-section ul li,
  .privacy-section ul li,
  .disclaimer-section ul li,
  .refund-section ul li {
      color: var(--text-gray);
      margin-bottom: 10px;
      line-height: 1.6;
  }

  /* Add this CSS to your existing CSS file */

  /* Footer Contact Section Styles */
  .contact-info {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }

  .contact-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
  }

  .contact-icon {
      width: 40px;
      height: 40px;
      background: rgba(212, 175, 55, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      color: var(--gold);
      flex-shrink: 0;
  }

  .contact-details h4 {
      color: var(--gold);
      margin-bottom: 5px;
      font-size: 1rem;
  }

  .contact-details p {
      color: var(--text-gray);
      margin: 0;
      font-size: 0.9rem;
  }

  /* Common Page Styles for new sections */
  .disclaimer-content,
  .disclosure-content,
  .sebi-content,
  .terms-content,
  .privacy-content,
  .refund-content,
  .careers-content {
      max-width: 900px;
      margin: 0 auto;
  }

  .disclaimer-section,
  .disclosure-section,
  .sebi-section,
  .terms-section,
  .privacy-section,
  .refund-section {
      margin-bottom: 40px;
  }

  .disclaimer-section h3,
  .disclosure-section h3,
  .sebi-section h3,
  .terms-section h3,
  .privacy-section h3,
  .refund-section h3 {
      font-size: 1.5rem;
      color: var(--gold);
      margin-bottom: 15px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }

  .disclaimer-section p,
  .disclosure-section p,
  .sebi-section p,
  .terms-section p,
  .privacy-section p,
  .refund-section p {
      color: var(--text-gray);
      margin-bottom: 15px;
      line-height: 1.8;
  }

  .disclaimer-section ul,
  .disclosure-section ul,
  .sebi-section ul,
  .terms-section ul,
  .privacy-section ul,
  .refund-section ul {
      margin-left: 20px;
      margin-bottom: 20px;
  }

  .disclaimer-section ul li,
  .disclosure-section ul li,
  .sebi-section ul li,
  .terms-section ul li,
  .privacy-section ul li,
  .refund-section ul li {
      color: var(--text-gray);
      margin-bottom: 10px;
      line-height: 1.6;
  }

  /* SEBI SCORES Specific Styles */
  .sebi-section a {
      color: var(--gold);
      text-decoration: none;
      transition: color 0.3s;
  }

  .sebi-section a:hover {
      color: var(--bronze);
      text-decoration: underline;
  }

  .contact-card {
      background-color: var(--secondary-bg);
      padding: 20px;
      border-radius: 10px;
      border: 1px solid rgba(212, 175, 55, 0.1);
      margin-top: 15px;
  }

  .contact-card h4 {
      color: var(--gold);
      margin-bottom: 10px;
  }

  .contact-card p {
      margin-bottom: 5px;
  }

  /* Careers Page Styles */
  .careers-intro {
      margin-bottom: 40px;
      text-align: center;
  }

  .careers-intro h3 {
      font-size: 1.8rem;
      color: var(--gold);
      margin-bottom: 20px;
  }

  .careers-intro p {
      color: var(--text-gray);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.8;
  }

  .job-openings h3 {
      font-size: 1.8rem;
      color: var(--gold);
      margin-bottom: 30px;
      text-align: center;
  }

  .job-card {
      background-color: var(--secondary-bg);
      padding: 30px;
      border-radius: 10px;
      margin-bottom: 30px;
      border: 1px solid rgba(212, 175, 55, 0.1);
      transition: transform 0.3s;
  }

  .job-card:hover {
      transform: translateY(-5px);
      border-color: var(--gold);
  }

  .job-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      flex-wrap: wrap;
  }

  .job-header h4 {
      font-size: 1.5rem;
      color: var(--text-light);
      margin-bottom: 5px;
  }

  .job-type {
      background-color: rgba(212, 175, 55, 0.1);
      color: var(--gold);
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
  }

  .job-details {
      margin-bottom: 20px;
  }

  .job-details p {
      color: var(--text-gray);
      margin-bottom: 8px;
  }

  .job-description {
      margin-bottom: 25px;
  }

  .job-description h5 {
      color: var(--gold);
      margin: 15px 0 10px;
      font-size: 1.1rem;
  }

  .job-description ul {
      margin-left: 20px;
  }

  .job-description ul li {
      color: var(--text-gray);
      margin-bottom: 8px;
      line-height: 1.6;
  }

  .general-application {
      text-align: center;
      margin-top: 50px;
      padding: 40px;
      background-color: var(--secondary-bg);
      border-radius: 10px;
      border: 1px solid rgba(212, 175, 55, 0.1);
  }

  .general-application h3 {
      font-size: 1.5rem;
      color: var(--gold);
      margin-bottom: 15px;
  }

  .general-application p {
      color: var(--text-gray);
      margin-bottom: 20px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
  }

  /* Responsive Styles for New Sections */
  @media (max-width: 768px) {
      .contact-info {
          display: grid;
          grid-template-columns: 1fr;
          gap: 15px;
      }

      .contact-item {
          flex-direction: column;
          text-align: center;
      }

      .contact-icon {
          margin-right: 0;
          margin-bottom: 10px;
      }

      .job-header {
          flex-direction: column;
          align-items: flex-start;
      }

      .job-type {
          margin-top: 10px;
      }

      .job-card {
          padding: 20px;
      }
  }

  @media (max-width: 576px) {
      .contact-info {
          grid-template-columns: 1fr;
      }

      .general-application {
          padding: 20px;
      }
  }

  /* Responsive Styles for New Sections */
  @media (max-width: 768px) {
      .contact-content {
          grid-template-columns: 1fr;
          gap: 30px;
      }

      .contact-info {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 20px;
      }

      .contact-item {
          flex-direction: column;
          text-align: center;
      }

      .contact-icon {
          margin-right: 0;
          margin-bottom: 10px;
      }
  }

  @media (max-width: 576px) {
      .contact-info {
          grid-template-columns: 1fr;
      }

      .contact-card {
          padding: 20px;
      }

      .contact-form {
          padding: 20px;
      }
  }

  footer {
      background-color: var(--secondary-bg);
      padding: 60px 0 30px;
  }

  .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
  }

  .footer-column h3 {
      font-size: 1.3rem;
      margin-bottom: 20px;
      color: var(--gold);
      position: relative;
      padding-bottom: 10px;
  }

  .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background-color: var(--gold);
  }

  .footer-column ul {
      list-style: none;
  }

  .footer-column ul li {
      margin-bottom: 10px;
  }

  .footer-column ul li a {
      color: var(--text-gray);
      text-decoration: none;
      transition: color 0.3s;
  }

  .footer-column ul li a:hover {
      color: var(--gold);
  }

  .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
  }

  .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: rgba(212, 175, 55, 0.1);
      border-radius: 50%;
      color: var(--gold);
      transition: background-color 0.3s, transform 0.3s;
  }

  .social-links a:hover {
      background-color: var(--gold);
      color: var(--primary-bg);
      transform: translateY(-3px);
  }

  .copyright {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--text-gray);
      font-size: 0.9rem;
  }

  /* Page Content */
  .page-content {
      min-height: 60vh;
      padding: 80px 0;
  }

  /* Hidden sections */
  .hidden {
      display: none;
  }

  /* Table Styles */
  .table-container {
      overflow-x: auto;
      margin-top: 30px;
  }

  table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 40px;
      border: 1px solid rgba(212, 175, 55, 0.2);
  }

  caption {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 15px;
      color: var(--gold);
      text-align: left;
  }

  th,
  td {
      padding: 12px 15px;
      text-align: center;
      border: 1px solid rgba(212, 175, 55, 0.2);
  }

  th {
      background-color: rgba(212, 175, 55, 0.1);
      color: var(--gold);
      font-weight: 600;
  }

  tr:nth-child(even) {
      background-color: rgba(26, 26, 26, 0.5);
  }

  tr:hover {
      background-color: rgba(212, 175, 55, 0.05);
  }

  /* About Section */
  .about-content {
      max-width: 900px;
      margin: 0 auto;
  }

  .about-text {
      margin-bottom: 40px;
  }

  .about-text p {
      margin-bottom: 20px;
      color: var(--text-gray);
      line-height: 1.8;
  }

  .about-highlights {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
  }

  .highlight-card {
      background-color: var(--secondary-bg);
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      border: 1px solid rgba(212, 175, 55, 0.1);
  }

  .highlight-card i {
      font-size: 2.5rem;
      color: var(--gold);
      margin-bottom: 15px;
  }

  .highlight-card h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: var(--text-light);
  }

  .highlight-card p {
      color: var(--text-gray);
  }

  /* Plans Section */
  .plans-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
  }

  .plan-card {
      background-color: var(--secondary-bg);
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid rgba(212, 175, 55, 0.1);
      transition: transform 0.3s;
  }

  .plan-card:hover {
      transform: translateY(-10px);
      border-color: var(--gold);
  }

  .plan-header {
      background-color: rgba(212, 175, 55, 0.1);
      padding: 25px;
      text-align: center;
  }

  .plan-name {
      font-size: 1.5rem;
      color: var(--gold);
      margin-bottom: 10px;
  }

  .plan-price {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--text-light);
  }

  .plan-period {
      color: var(--text-gray);
      font-size: 0.9rem;
  }

  .plan-features {
      padding: 25px;
  }

  .plan-features ul {
      list-style: none;
  }

  .plan-features ul li {
      padding: 10px 0;
      border-bottom: 1px solid rgba(212, 175, 55, 0.1);
      color: var(--text-gray);
  }

  .plan-features ul li:last-child {
      border-bottom: none;
  }

  .plan-features ul li i {
      color: var(--gold);
      margin-right: 10px;
  }

  .plan-button {
      display: block;
      text-align: center;
      padding: 15px;
      background-color: var(--gold);
      color: var(--primary-bg);
      text-decoration: none;
      font-weight: 600;
      transition: background-color 0.3s;
  }

  .plan-button:hover {
      background-color: var(--bronze);
  }

  /* Investor Charter */
  .charter-content {
      max-width: 900px;
      margin: 0 auto;
  }

  .charter-section {
      margin-bottom: 40px;
  }

  .charter-section h3 {
      font-size: 1.5rem;
      color: var(--gold);
      margin-bottom: 15px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }

  .charter-section p {
      color: var(--text-gray);
      margin-bottom: 15px;
      line-height: 1.8;
  }

  .charter-section ul {
      margin-left: 20px;
      margin-bottom: 20px;
  }

  .charter-section ul li {
      color: var(--text-gray);
      margin-bottom: 10px;
      line-height: 1.6;
  }

  /* Testimonials Grid Styles */
  .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 30px;
      margin-top: 50px;
  }

  .testimonial-card {
      background-color: var(--secondary-bg);
      border-radius: 10px;
      padding: 25px;
      border: 1px solid rgba(212, 175, 55, 0.1);
      transition: transform 0.3s;
  }

  .testimonial-card:hover {
      transform: translateY(-5px);
      border-color: var(--gold);
  }

  .testimonial-content {
      margin-bottom: 20px;
      color: var(--text-gray);
      font-style: italic;
      line-height: 1.6;
  }

  .testimonial-author {
      display: flex;
      align-items: center;
  }

  .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 15px;
      border: 2px solid var(--gold);
  }

  .author-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .author-info h4 {
      color: var(--text-light);
      margin-bottom: 5px;
  }

  .author-info p {
      color: var(--text-gray);
      font-size: 0.9rem;
  }

  /* Responsive Styles */
  @media (max-width: 992px) {
      .hero h2 {
          font-size: 2.5rem;
      }

      .section-title h2 {
          font-size: 2rem;
      }

      nav ul li {
          margin-left: 15px;
      }

      nav ul li a {
          font-size: 0.85rem;
      }
  }

  @media (max-width: 768px) {
      .header-container {
          flex-direction: column;
          align-items: flex-start;
      }

      nav {
          width: 100%;
          margin-top: 15px;
          display: none;
      }

      nav.active {
          display: block;
      }

      nav ul {
          flex-direction: column;
      }

      nav ul li {
          margin: 10px 0;
      }

      .mobile-menu-btn {
          display: block;
          position: absolute;
          top: 20px;
          right: 20px;
      }

      .hero {
          padding: 80px 0;
      }

      .hero h2 {
          font-size: 2rem;
      }

      .hero-buttons {
          display: flex;
          flex-direction: column;
          align-items: center;
      }

      .btn-secondary {
          margin-left: 0;
          margin-top: 15px;
      }

      section {
          padding: 60px 0;
      }

      .ra-profile {
          flex-direction: column;
          text-align: center;
      }

      .ra-avatar {
          margin-right: 0;
          margin-bottom: 20px;
      }

      .analysis-header {
          flex-direction: column;
      }

      .analysis-tag {
          margin-top: 10px;
          align-self: flex-start;
      }
  }

  @media (max-width: 576px) {
      .hero h2 {
          font-size: 1.8rem;
      }

      .btn,
      .btn-secondary {
          padding: 10px 25px;
      }

      .service-card,
      .feature-card {
          padding: 20px;
      }

      .analysis-cards {
          grid-template-columns: 1fr;
      }

      .testimonials-grid {
          grid-template-columns: 1fr;
      }
  }