
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        a {
            text-decoration: none;
            color: #0066cc;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #004d99;
        }

        /* Header Styles */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            color: #0066cc;
            font-size: 1.8rem;
            margin-left: 10px;
        }

        .logo-icon {
            font-size: 24px;
            color: #0066cc;
        }

        /* Navigation */
        .navbar {
            position: relative;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            position: relative;
            margin-left: 25px;
        }

        .nav-link {
            color: #333;
            font-weight: 500;
            padding: 10px 0;
            display: block;
        }

        .nav-link:hover {
            color: #0066cc;
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #fff;
            width: 200px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 99;
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            padding: 12px 20px;
            display: block;
            color: #333;
            border-bottom: 1px solid #f0f0f0;
        }

        .dropdown-item:hover {
            background-color: #f0f6ff;
            color: #0066cc;
        }

        /* Page Content */
        .page-content {
            min-height: 70vh;
            padding: 40px 0;
        }

        .section-title {
            color: #0066cc;
            margin-bottom: 30px;
            font-size: 2rem;
            text-align: center;
        }

        /* Broker List Page */
        .brokers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .broker-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .broker-card:hover {
            transform: translateY(-5px);
        }

        .broker-card-header {
            display: flex;
            align-items: center;
            padding: 20px;
            background-color: #0066cc;
            color: white;
        }

        .broker-card-logo {
            width: 50px;
            height: 50px;
            background-color: white;
            border-radius: 5px;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #0066cc;
        }

        .broker-card-body {
            padding: 20px;
        }

        .broker-rating {
            color: #ffc107;
            margin-bottom: 10px;
        }

        .broker-features {
            list-style: none;
            margin: 15px 0;
        }

        .broker-features li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .broker-features li:before {
            content: "✓";
            color: #28a745;
            position: absolute;
            left: 0;
        }

        .broker-card-footer {
            padding: 15px 20px;
            background-color: #f8f9fa;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Broker Detail Page */
        .broker-detail-header {
            background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
            color: white;
            padding: 40px 0;
            margin-bottom: 40px;
            text-align: center;
        }

        .broker-detail-logo {
            width: 80px;
            height: 80px;
            background-color: white;
            border-radius: 10px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            color: #0066cc;
        }

        .broker-detail-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        .broker-info-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .broker-info-card h3 {
            color: #0066cc;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .spec-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
        }

        .pros-cons {
            display: flex;
            margin: 20px 0;
        }

        .pros, .cons {
            flex: 1;
            padding: 0 10px;
        }

        .pros h4, .cons h4 {
            margin-bottom: 10px;
            color: #0066cc;
        }

        .pros ul, .cons ul {
            list-style: none;
        }

        .pros li, .cons li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .pros li:before {
            content: "✓";
            color: #28a745;
            position: absolute;
            left: 0;
        }

        .cons li:before {
            content: "✗";
            color: #dc3545;
            position: absolute;
            left: 0;
        }

        /* About Page */
        .about-section {
            background-color: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 40px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .team-member {
            text-align: center;
        }

        .team-member-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background-color: #f0f6ff;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #0066cc;
        }

        /* Blog List Page */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .blog-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .blog-card-img {
            height: 200px;
            background-color: #f0f6ff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0066cc;
            font-size: 2rem;
        }

        .blog-card-body {
            padding: 20px;
        }

        .blog-card-meta {
            display: flex;
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .blog-card-meta span {
            margin-right: 15px;
        }

        .pagination {
            display: flex;
            justify-content: center;
            list-style: none;
            margin-top: 40px;
        }

        .pagination li {
            margin: 0 5px;
        }

        .pagination a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 5px;
            background-color: white;
            color: #333;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .pagination a.active {
            background-color: #0066cc;
            color: white;
        }

        .pagination a:hover:not(.active) {
            background-color: #f0f6ff;
        }

        /* Blog Detail Page */
        .blog-detail-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .blog-meta {
            display: flex;
            justify-content: center;
            color: #666;
            margin-bottom: 20px;
        }

        .blog-meta span {
            margin: 0 10px;
        }

        .blog-content {
            background-color: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 40px;
        }

        .blog-content h2 {
            color: #0066cc;
            margin: 30px 0 15px;
        }

        .blog-content p {
            margin-bottom: 15px;
        }

        .blog-content blockquote {
            border-left: 4px solid #0066cc;
            padding-left: 20px;
            margin: 20px 0;
            font-style: italic;
            color: #666;
        }

        /* Footer */
        footer {
            background-color: #003366;
            color: white;
            padding: 50px 0 20px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding-right: 20px;
        }

        .footer-section h3 {
            margin-bottom: 15px;
            color: white;
        }

        .footer-section p {
            color: #ccc;
            margin-bottom: 15px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 10px;
        }

        .footer-section a {
            color: #ccc;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #ccc;
        }

        /* Utility Classes */
        .text-center {
            text-align: center;
        }

        .btn {
            display: inline-block;
            background-color: #0066cc;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background-color: #004d99;
            color: white;
        }

        .btn-outline {
            background-color: transparent;
            border: 1px solid #0066cc;
            color: #0066cc;
        }

        .btn-outline:hover {
            background-color: #0066cc;
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }
            
            .nav-menu {
                margin-top: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-item {
                margin: 5px 10px;
            }
            
            .broker-detail-content {
                grid-template-columns: 1fr;
            }
            
            .pros-cons {
                flex-direction: column;
            }
            
            .pros, .cons {
                margin-bottom: 20px;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-section {
                padding-right: 0;
                margin-bottom: 30px;
            }
        }