 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #1a3a52;
            --secondary-color: #c41e3a;
            --accent-color: #f39c12;
            --light-bg: #f8f9fa;
            --text-dark: #1a1a1a;
            --text-light: #6c757d;
            --border-color: #e9ecef;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Sticky Navbar */
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, #0f2a3d 100%);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0.5rem 0 !important;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
        }

        .navbar-brand {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: #fff !important;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .navbar-brand i {
            color: var(--secondary-color);
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.8) !important;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            margin-left: 1rem;
        }

        .nav-link:hover {
            color: var(--accent-color) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
            display: none;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .cta-btn {
            background: var(--secondary-color) !important;
            color: #fff !important;
            border-radius: 5px;
            padding: 0.5rem 1.5rem !important;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--secondary-color);
        }

        .cta-btn:hover {
            background: transparent !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(196, 30, 58, 0.3);
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(26, 58, 82, 0.85) 0%, rgba(196, 30, 58, 0.8) 100%);
            z-index: 1;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            z-index: 1;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: #fff;
            text-align: center;
            max-width: 900px;
            padding: 0 20px;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .hero-title {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2.5rem, 4vw, 4.5rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero-description {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2.5rem;
        }

        .btn-primary-hero {
            background: var(--secondary-color);
            color: #fff;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
        }

        .btn-primary-hero:hover {
            background: #a01830;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(196, 30, 58, 0.4);
            color: #fff;
        }

        .btn-secondary-hero {
            background: transparent;
            color: #fff;
            border: 2px solid #fff;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary-hero:hover {
            background: #fff;
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Scroll Arrow */
        .scroll-arrow {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            animation: bounce 2s infinite;
        }

        .scroll-arrow svg {
            width: 30px;
            height: 30px;
            stroke: #fff;
            stroke-width: 2;
            fill: none;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Teaser Content Section */
        .teaser-section {
            padding: 6rem 0;
            background: var(--light-bg);
        }

        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            text-align: center;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .teaser-card {
            background: #fff;
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px!important;
        }

        .teaser-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border-color: var(--secondary-color);
        }

        .teaser-card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .teaser-card-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .teaser-card-text {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .read-more {
            color: var(--secondary-color);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            gap: 1rem;
            color: var(--primary-color);
        }

        .read-more i {
            transition: all 0.3s ease;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: #fff;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            z-index: 999;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(196, 30, 58, 0.5);
        }

        .back-to-top.show {
            display: flex;
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #0f2a3d 100%);
            color: #fff;
            padding: 4rem 0;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
        }

        .stat-number {
            font-family: 'Poppins', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent-color);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: clamp(2rem, 5vw, 3rem);
            }

            .hero-description {
                font-size: 1rem;
            }

            .hero-buttons {
                gap: 1rem;
            }

            .btn-primary-hero,
            .btn-secondary-hero {
                width: 100%;
            }

            .nav-link {
                margin-left: 0;
                padding: 0.5rem 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .back-to-top {
                width: 45px;
                height: 45px;
                bottom: 20px;
                right: 20px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-subtitle {
                font-size: 1rem;
            }

            .hero-title {
                font-size: 1.8rem;
            }

            .hero-description {
                font-size: 0.95rem;
            }

            .navbar-brand {
                font-size: 1.2rem;
            }
        }

        /* Loading Animation */
        .fade-in {
            animation: fadeInUp 0.8s ease backwards;
        }

        .fade-in:nth-child(1) { animation-delay: 0s; }
        .fade-in:nth-child(2) { animation-delay: 0.1s; }
        .fade-in:nth-child(3) { animation-delay: 0.2s; }
        .fade-in:nth-child(4) { animation-delay: 0.3s; }

        /* Enhanced Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #0f2a3d 100%);
            color: #fff;
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: rgba(243, 156, 18, 0.05);
            border-radius: 50%;
            z-index: 0;
        }

        .stats-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: rgba(196, 30, 58, 0.08);
            border-radius: 50%;
            z-index: 0;
        }

        .stats-container {
            position: relative;
            z-index: 1;
        }

        .stat-item {
            position: relative;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-10px);
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 1.5rem;
            height: 100%;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .stat-item:hover .stat-card {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--accent-color);
            box-shadow: 0 15px 50px rgba(243, 156, 18, 0.3), inset 0 0 20px rgba(243, 156, 18, 0.05);
        }

        .stat-item:hover .stat-card::before {
            left: 100%;
        }

        .stat-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: #fff;
            box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
            transition: all 0.3s ease;
        }

        .stat-item:hover .stat-icon {
            transform: scale(1.1) rotateY(10deg);
            box-shadow: 0 15px 40px rgba(243, 156, 18, 0.5);
        }

        .stat-number {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-color) 0%, #fff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            line-height: 1;
            animation: countUp 0.8s ease forwards;
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }

        .stat-description {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-top: 1rem;
        }

        .stat-divider {
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            margin: 1rem auto;
            border-radius: 2px;
        }
.sponsored-ads {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
    border: 1px solid #dfe1e5;
    background: #fff;
    font-family: Arial, sans-serif;
}

.ads-header {
    font-size: 14px;
    font-weight: 700;
    color: #202124;
    margin-bottom: 20px;
}

.ads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.ad-card {
    padding: 18px;
    border: 1px solid #dadce0;
    border-radius: 6px;
    background: #fff;
}

.ad-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #5f6368;
    border: 1px solid #dadce0;
    padding: 2px 6px;
    border-radius: 3px;
    margin-bottom: 6px;
}

.ad-card h3 {
    font-size: 18px;
    margin: 6px 0;
    color: #1a0dab;
}

.ad-card p {
    font-size: 14px;
    color: #4d5156;
    margin: 6px 0 8px;
}

.ad-link {
    font-size: 14px;
    color: #006621;
    text-decoration: none;
}
.breadcrumb-section {
  background: url("../images/AdobeStock_1273628835.jpg") center center / cover no-repeat;
  position: relative;
  padding: 180px 0px;
  color: #fff;
}

.breadcrumb-overlay {
  background: rgba(0, 0, 0, 0.55);
  position: absolute;
  inset: 0;
}

.breadcrumb-section .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
  text-align: center;

}

.page-title {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
}

.breadcrumb {
  list-style: none;
  display: inline-flex;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumb li {
  color: #ddd;
}

.breadcrumb li + li::before {
  content: "/";
  padding: 0 8px;
  color: #ccc;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .active {
  color: #fff;
  font-weight: 600;
}
.investor-support-section {
  background-color: #f8f9fb;
}

.section-tagline {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0d6efd;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2933;
}

.section-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #4b5563;
}

.section-text {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
}

.custom-btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 4px;
}
.fw-investor-section {
  background-color: #f9fafb;
}

.fw-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2933;
}

.fw-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #374151;
}

.fw-text {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 18px;
}

.fw-highlight {
  font-weight: 600;
  color: var(--secondary-color);
}
/* ===============================
   DESIGN SYSTEM
================================ */
:root {
  --primary-color: #1a3a52;
  --secondary-color: #c41e3a;
  --accent-color: #f39c12;
  --light-bg: #f8f9fa;
  --text-dark: #1a1a1a;
  --text-light: #6c757d;
  --border-color: #e9ecef;
}

/* ===============================
   HERO SECTION
================================ */
.finra-hero {
  background: linear-gradient(
      135deg,
      rgba(26, 58, 82, 0.95),
      rgba(15, 42, 61, 0.95)
    );
  padding: 100px 0;
  color: #fff;
}

.finra-hero p {
  font-size: 18px;
  line-height: 1.9;
  max-width: 820px;
  margin: 0 auto;
  opacity: 0.95;
}

/* ===============================
   SECTION BASE
================================ */
.finra-section {
  padding: 90px 0;
}

.finra-section.light {
  background: var(--light-bg);
}

.finra-section.dark {
  background: var(--primary-color);
  color: #fff;
}

/* ===============================
   EYEBROW + TITLES
================================ */
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.section-title,
.finra-section h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.finra-section.dark h2,
.finra-section.dark h3 {
  color: #fff;
}

.section-intro {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* ===============================
   OVERVIEW CARD
================================ */
.finra-card {
  background: #fff;
  padding: 55px;
  border-radius: 10px;
  border-left: 6px solid var(--secondary-color);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.finra-card h2 {
  margin-bottom: 25px;
}

/* ===============================
   CASE GRID
================================ */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.case-box {
  background: #fff;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  position: relative;
  transition: all 0.3s ease;
}

.case-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-color);
  border-radius: 8px 0 0 8px;
}

.case-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.case-box h3, .timeline-item h3
{font-size: 20px; font-weight: 600}
/* ===============================
   TIMELINE
================================ */
.timeline {
  position: relative;
  margin-top: 50px;
  padding-left: 45px;
  border-left: 3px solid var(--accent-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 45px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -54px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--secondary-color);
  border-radius: 50%;
  border: 3px solid #fff;
}

.timeline-item h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

/* ===============================
   DARK SECTION SPLIT
================================ */
.finra-section.dark p {
  color: rgba(255, 255, 255, 0.85);
}

.success-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 45px;
  border-radius: 10px;
  border-left: 6px solid var(--accent-color);
}

/* ===============================
   RESPONSIVE TUNING
================================ */
@media (max-width: 768px) {
  .finra-hero {
    padding: 70px 0;
  }

  .finra-card {
    padding: 35px;
  }

  .section-title,
  .finra-section h2 {
    font-size: 28px;
  }
}


.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 2rem;
}

/* --- Layout & Components --- */

/* Hero/Intro Section */
.page-intro {
    padding: 30px 40px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    border-left: 6px solid var(--secondary-color);
    margin-bottom: 50px;
    border-radius: 0 8px 8px 0;
}

.page-intro h1 {
    margin-bottom: 1.5rem;
}

/* Content Cards */
.feature-card {
    background: #ffffff;
    border: 2px solid var(--border-color);
    padding: 35px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(26, 58, 82, 0.15);
    border-color: var(--accent-color);
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-top: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-color);
    font-size: 20px;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Lists with Custom Bullets */
.custom-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    color: var(--text-dark);
    line-height: 1.8;
}

.custom-list li::before {
    content: "▸";
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.8em;
    position: absolute;
    left: 0;
    top: -11px;
}

/* Red Flags Alert Box */
.alert-box {
    background-color: #fdf2f2;
    border-left: 5px solid var(--secondary-color);
    padding: 40px;
    margin: 40px 0;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.08);
}

.alert-box h2 { 
    color: var(--secondary-color); 
    border-bottom-color: var(--accent-color);
    margin-top: 0;
}

.alert-box h3 { 
    color: var(--secondary-color);
    margin-top: 20px;
}



/* Highlight Box (Dark Section) */
.highlight-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f2438 100%);
    color: #ffffff;
    padding: 50px 40px;
    border-radius: 10px;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(26, 58, 82, 0.3);
}

.highlight-box h2 { 
    color: var(--accent-color);
    border-bottom-color: rgba(255, 255, 255, 0.2);
    margin-top: 0;
}

.highlight-box h3 { 
    color: var(--accent-color);
}

.highlight-box p { 
    color: #e0e0e0;
    line-height: 1.85;
}

.highlight-box a {
    color: var(--accent-color);
}

.highlight-box a:hover {
    color: #fff;
}

/* Card Component */
.card {
    background-color: #ffffff;
    border-color: var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.card p {
    color: var(--text-light);
}

/* Consultation Questions */
.question-item {
    background: var(--light-bg);
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 6px 6px 0;
    transition: all 0.3s ease;
}

.question-item:hover {
    background: #eff4f8;
    border-left-color: var(--accent-color);
}

.question-item strong { 
    color: var(--primary-color);
    font-weight: 600;
}

/* Insight Box */
.insight-box {
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.85;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    padding: 80px 40px;
    text-align: center;
    margin-top: 80px;
    border-top: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
}

.cta-section h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-top: 0;
    border-bottom-color: var(--accent-color);
}

.cta-section .lead {
    color: var(--text-light);
}

/* Section Spacing */


/* Two Column Layout */
.two-col-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 50px 0;
}

.two-col-section h2 {
    margin-top: 0;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    h1 { font-size: 2.3rem; }
    h2 { font-size: 1.7rem; }
    h3 { font-size: 1.3rem; }
    .page-intro { padding: 40px 30px; }
    .highlight-box { padding: 40px 30px; }
    .cta-section { padding: 60px 30px; }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { 
        font-size: 1.5rem;
        display: block;
        width: 100%;
    }
    h3 { font-size: 1.2rem; }
    p { font-size: 1rem; }
    .lead { font-size: 1.1rem; }
    
    .page-intro { 
        padding: 30px 20px;
        border-left-width: 4px;
        border-radius: 0 4px 4px 0;
    }

    .alert-box {
        padding: 30px 20px;
        border-left-width: 4px;
    }

    .highlight-box {
        padding: 40px 20px;
    }

    .cta-section {
        padding: 50px 20px;
    }

    .two-col-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .custom-list li {
        padding-left: 24px;
    }

    .custom-list li::before {
        font-size: 1.5em;
        top: -4px;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 1rem;
    }

    h1 { 
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    h2 { 
        font-size: 1.4rem;
        padding-bottom: 10px;
    }

    h3 { 
        font-size: 1.1rem;
        margin-top: 20px;
    }

    p { 
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .lead { font-size: 1rem; }

    .page-intro { padding: 25px 15px; }
    .alert-box { padding: 25px 15px; }
    .highlight-box { padding: 30px 15px; }
    .feature-card { padding: 20px 15px; }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* --- Utility Classes --- */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-light { color: var(--text-light) !important; }
.bg-light-custom { background-color: var(--light-bg) !important; }
.border-accent { border-color: var(--accent-color) !important; }
.inner-content h3
{font-size: 20px}
.custom-list li
{list-style: none;}
.investment-complaint {
  padding: 60px 20px;
  background: #f9fafb;
  font-family: Arial, sans-serif;
}

.page-header {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.page-header h1 {
  font-size: 38px;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 18px;
  color: #555;
}

.grid-wrapper {
  display: grid;
  grid-template-columns: 3fr 1.2fr;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.content-block {
  margin-bottom: 40px;
}

.content-block h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.info-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.info-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.info-card ul,
.checklist {
  padding-left: 18px;
}

.steps li {
  margin-bottom: 15px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.side-card.warning {
  border-left: 4px solid #e63946;
}

@media (max-width: 900px) {
  .grid-wrapper {
    grid-template-columns: 1fr;
  }
}
.contact-section {
  background: #ffffff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.contact-form {
  max-width: 700px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  background: #f9fafb;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

input,
textarea {
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  outline: none;
  transition: all 0.25s ease;
  background: #ffffff;
}

input:focus,
textarea:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
}

textarea {
  resize: vertical;
}

.submit-btn {
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  background: #22c55e;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34,197,94,0.35);
}

@media (max-width: 600px) {
  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }
}
