.search-container {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }

        .filter-section {
            margin: 25px 0;
            padding: 20px 0;
            border-top: 1px solid #eee;
        }

        .filter-title {
            font-weight: 600;
            color: var(--secondary);
            min-width: 64px;
        }

        .filter-options {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .filter-option {
            padding: 8px 18px;
            background-color: #f0f4f8;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 15px;
        }

        .filter-option:hover, .filter-option.active {
            background-color: var(--primary);
            color: white;
        }

        .specialty-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }

        .specialty-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .specialty-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .card-header {
            background: linear-gradient(90deg, var(--primary), var(--accent));
            color: white;
            padding: 20px;
        }

        .specialty-name {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .card-body {
            padding: 20px;
            flex-grow: 1;
        }

        .info-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f0f4f8;
        }

        .info-row:last-child {
            border-bottom: none;
        }

        .info-label {
            font-weight: 600;
            color: var(--secondary);
            min-width: 120px;
        }

        .info-value {
            text-align: right;
            color: #555;
        }

        .salary {
            color: var(--success);
            font-weight: 700;
            font-size: 18px;
        }

        .gender-ratio {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .ratio-bar {
            width: 120px;
            height: 8px;
            background-color: #e0e0e0;
            border-radius: 4px;
            overflow: hidden;
        }

        .male-bar {
            height: 100%;
            background-color: var(--primary);
            width: 65%;
        }

        .female-bar {
            height: 100%;
            background-color: #e91e63;
            width: 35%;
        }

        .stats-container {
            display: flex;
            gap: 15px;
            margin-top: 10px;
        }

        .stat-item {
            background-color: #f0f7ff;
            border-radius: 8px;
            padding: 10px 15px;
            flex: 1;
            text-align: center;
        }

        .stat-value {
            font-weight: 700;
            font-size: 18px;
            color: var(--primary);
        }

        .stat-label {
            font-size: 13px;
            color: #777;
            margin-top: 5px;
        }

        .search-btn {
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border: none;
            border-radius: 8px;
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .search-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
        }

        .section-title {
            color: var(--secondary);
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
            display: inline-block;
        }

        .result-count {
            color: #777;
            font-size: 16px;
            margin-left: 15px;
        }